summaryrefslogtreecommitdiff
blob: cec5517e741cfe13f12b9f3468e8cbeb19909eb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
http://bugs.gentoo.org/show_bug.cgi?id=165638
http://bugzilla.padl.com/show_bug.cgi?id=308

Make nss_ldap compile with gssapi/gssapi.h even if there is no
gssapi/gssapi_krb5.h present. This seems to be needed to compile against
heimdal. Extended header checks and modified preprocessor logic a bit.

2007-02-07 Martin von Gagern <Martin.vGagern@gmx.net>

diff -ruN nss_ldap-257.2.orig/config.h.in nss_ldap-257.2/config.h.in
--- nss_ldap-257.2.orig/config.h.in	2007-10-24 14:22:55.000000000 +0200
+++ nss_ldap-257.2/config.h.in	2007-10-24 14:25:15.000000000 +0200
@@ -87,6 +87,9 @@
 /* Define to 1 if you have the <gssapi/gssapi_krb5.h> header file. */
 #undef HAVE_GSSAPI_GSSAPI_KRB5_H
 
+/* Define to 1 if you have the <gssapi/gssapi.h> header file. */
+#undef HAVE_GSSAPI_GSSAPI_H
+
 /* Define to 1 if you have the <gssapi.h> header file. */
 #undef HAVE_GSSAPI_H
 
diff -ruN nss_ldap-257.2.orig/configure nss_ldap-257.2/configure
--- nss_ldap-257.2.orig/configure	2007-10-24 14:22:55.000000000 +0200
+++ nss_ldap-257.2/configure	2007-10-24 14:25:49.000000000 +0200
@@ -8409,7 +8409,7 @@
 
 
 
-for ac_header in gssapi/gssapi_krb5.h gssapi.h
+for ac_header in gssapi/gssapi_krb5.h gssapi/gssapi.h gssapi.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
diff -ruN nss_ldap-257.2.orig/configure.in nss_ldap-257.2/configure.in
--- nss_ldap-257.2.orig/configure.in	2007-10-24 14:22:55.000000000 +0200
+++ nss_ldap-257.2/configure.in	2007-10-24 14:26:26.000000000 +0200
@@ -182,7 +182,7 @@
 AC_CHECK_HEADERS(strings.h)
 AC_CHECK_HEADERS(gssldap.h)
 AC_CHECK_HEADERS(gsssasl.h)
-AC_CHECK_HEADERS(gssapi/gssapi_krb5.h gssapi.h)
+AC_CHECK_HEADERS(gssapi/gssapi_krb5.h gssapi/gssapi.h gssapi.h)
 AC_CHECK_HEADERS(krb5.h)
 
 AC_CHECK_LIB(resolv, main)
diff -ruN nss_ldap-257.2.orig/ldap-nss.c nss_ldap-257.2/ldap-nss.c
--- nss_ldap-257.2.orig/ldap-nss.c	2007-10-24 14:22:55.000000000 +0200
+++ nss_ldap-257.2/ldap-nss.c	2007-10-24 14:27:32.000000000 +0200
@@ -82,10 +82,14 @@
 #endif
 #ifdef HAVE_GSSAPI_H
 #include <gssapi.h>
-#elif defined(HAVE_GSSAPI_GSSAPI_KRB5_H)
+#else
+#ifdef HAVE_GSSAPI_GSSAPI_H
 #include <gssapi/gssapi.h>
+#endif
+#ifdef HAVE_GSSAPI_GSSAPI_KRB5_H
 #include <gssapi/gssapi_krb5.h>
 #endif
+#endif
 #ifdef CONFIGURE_KRB5_CCNAME
 #include <krb5.h>
 #endif