diff options
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | gssapi.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -59,6 +59,10 @@ fetchmail 6.3.14 (not yet released): improving overall robustness of the IMAP client), bug report and testing by Matt Doran, with further hints from Timo Sirainen. +# CHANGES +* Only include gssapi.h if we're not including gssapi/gssapi.h, to fix a FreeBSD + compiler warning about gssapi.h being obsolete. + # DOCUMENTATION * The README.SSL document was revised for grammar, spelling, and clarity. Courtesy of Robert Mullin. @@ -24,7 +24,7 @@ # ifdef HAVE_GSS_H # include <gss.h> # else -# ifdef HAVE_GSSAPI_H +# if defined(HAVE_GSSAPI_H) && !defined(HAVE_GSSAPI_GSSAPI_H) # include <gssapi.h> # endif # ifdef HAVE_GSSAPI_GSSAPI_H |