[dovecot-cvs] dovecot/src/auth mech-gssapi.c,1.5.2.2,1.5.2.3
tss at dovecot.org
tss at dovecot.org
Sun Dec 3 14:12:23 UTC 2006
Update of /var/lib/cvs/dovecot/src/auth
In directory talvi:/tmp/cvs-serv32016/src/auth
Modified Files:
Tag: branch_1_0
mech-gssapi.c
Log Message:
Some systems have gssapi elsewhere than gssapi/gssapi.h. So check also plain
gssapi.h. Based on patch by Chris Wakelin
Index: mech-gssapi.c
===================================================================
RCS file: /var/lib/cvs/dovecot/src/auth/mech-gssapi.c,v
retrieving revision 1.5.2.2
retrieving revision 1.5.2.3
diff -u -d -r1.5.2.2 -r1.5.2.3
--- mech-gssapi.c 22 Sep 2006 14:55:52 -0000 1.5.2.2
+++ mech-gssapi.c 3 Dec 2006 14:12:21 -0000 1.5.2.3
@@ -24,7 +24,11 @@
#ifdef HAVE_GSSAPI
-#include <gssapi/gssapi.h>
+#ifdef HAVE_GSSAPI_GSSAPI_H
+# include <gssapi/gssapi.h>
+#elif defined (HAVE_GSSAPI_H)
+# include <gssapi.h>
+#endif
/* Non-zero flags defined in RFC 2222 */
enum sasl_gssapi_qop {
More information about the dovecot-cvs
mailing list