Thread: Kerberos warnings on win32

Kerberos warnings on win32

From
Magnus Hagander
Date:
When building with Kerberos support (or GSSAPI, but not SSPI) on Win32, a
whole bunch of warnings come out due to redefinitions of macros in the
kerberos headers. The reason for this is that Kerberos leaks the
HAVE_<something> macros from autoconf into the header files that are
included by PostgreSQL.

The attached file removes this by undefing the macros before we include the
kerberos files. But this is perhaps just too ugly to deal with and we
should live with the warnings instead?

For MSVC, we can suppress the warnings with a #pragma around the include,
but I don't know if that's possible in mingw/gcc. It'll look something likt
the second patch attached (only did that for one of the places that'd need
it, to show what it looks like)

Thoughts? Worth doing anything about?

//Magnus

Attachment

Re: Kerberos warnings on win32

From
Tom Lane
Date:
Magnus Hagander <magnus@hagander.net> writes:
> The attached file removes this by undefing the macros before we include the
> kerberos files. But this is perhaps just too ugly to deal with and we
> should live with the warnings instead?

Ick.  I don't like any of these patches.
        regards, tom lane


Re: Kerberos warnings on win32

From
Magnus Hagander
Date:
Tom Lane wrote:
> Magnus Hagander <magnus@hagander.net> writes:
>> The attached file removes this by undefing the macros before we include the
>> kerberos files. But this is perhaps just too ugly to deal with and we
>> should live with the warnings instead?
> 
> Ick.  I don't like any of these patches.

You know, I kind of expected that response :-P

We'll just live with the warnings then, since they're not critical.
Meanwhile, I'll file a bug with the Kerberos folks.

//Magnus


Re: Kerberos warnings on win32

From
Magnus Hagander
Date:
On Tue, Jul 24, 2007 at 10:55:50PM +0200, Magnus Hagander wrote:
> Tom Lane wrote:
> > Magnus Hagander <magnus@hagander.net> writes:
> >> The attached file removes this by undefing the macros before we include the
> >> kerberos files. But this is perhaps just too ugly to deal with and we
> >> should live with the warnings instead?
> > 
> > Ick.  I don't like any of these patches.
> 
> You know, I kind of expected that response :-P
> 
> We'll just live with the warnings then, since they're not critical.
> Meanwhile, I'll file a bug with the Kerberos folks.

For the purpose of the archives, kfw bug 5601.

//Magnus