Commit 40c2c327 authored by Yang Tse's avatar Yang Tse
Browse files

- Marco Maggi reported that compilation failed when configured --with-gssapi

  and GNU GSS installed due to a missing mutual exclusion of header files in
  the Kerberos 5 code path. He also verified that my patch worked for him.
parent b3e8cf53
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -6,6 +6,11 @@

                                  Changelog

Yang Tse (11 Nov 2009)
- Marco Maggi reported that compilation failed when configured --with-gssapi
  and GNU GSS installed due to a missing mutual exclusion of header files in
  the Kerberos 5 code path. He also verified that my patch worked for him.

Daniel Stenberg (11 Nov 2009)
- Constantine Sapuntzakis posted bug #2891595
  (http://curl.haxx.se/bug/view.cgi?id=2891595) which identified how an entry
+1 −0
Original line number Diff line number Diff line
@@ -17,6 +17,7 @@ This release includes the following bugfixes:
 o portability enhancement for OS's without orthogonal directory tree structure
 o progress meter/callback during FTP connection
 o DNS cache timeout while transfer in progress
 o compilation when configured --with-gssapi having GNU GSS installed

This release includes the following known bugs:

+10 −7
Original line number Diff line number Diff line
@@ -46,7 +46,10 @@
#include <netdb.h>
#endif
#include <string.h>
#ifdef HAVE_GSSMIT

#ifdef HAVE_GSSGNU
#  include <gss.h>
#elif defined HAVE_GSSMIT
   /* MIT style */
#  include <gssapi/gssapi.h>
#  include <gssapi/gssapi_generic.h>