From 3bc9ef34b1213b2b1fad86521cd5ec9b413ce2e3 Mon Sep 17 00:00:00 2001 From: Jim McDonough Date: Mon, 10 Dec 2001 18:07:17 +0000 Subject: Delay gssapi header checking until after kerberos has been located. Wasn't working on RedHat systems because of /usr/kerberos install location. (This used to be commit 55d55e311e67ea75e13c4a81fe3033b43bed38ca) --- source3/configure.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source3/configure.in') diff --git a/source3/configure.in b/source3/configure.in index d61b355c8e..84d20e941a 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -250,7 +250,6 @@ AC_CHECK_HEADERS(sys/mman.h sys/filio.h sys/priv.h sys/shm.h string.h strings.h AC_CHECK_HEADERS(sys/mount.h sys/vfs.h sys/fs/s5param.h sys/filsys.h termios.h termio.h) AC_CHECK_HEADERS(sys/termio.h sys/statfs.h sys/dustat.h sys/statvfs.h stdarg.h sys/sockio.h) AC_CHECK_HEADERS(security/pam_modules.h security/_pam_macros.h ldap.h) -AC_CHECK_HEADERS(gssapi/gssapi_generic.h gssapi/gssapi.h) # # HPUX has a bug in that including shadow.h causes a re-definition of MAXINT. @@ -1653,6 +1652,10 @@ AC_ARG_WITH(krb5, # include paths AC_CHECK_HEADERS(krb5.h) +# now check for gssapi headers. This is also done here to allow for +# different kerberos include paths +AC_CHECK_HEADERS(gssapi/gssapi_generic.h gssapi/gssapi.h) + ################################################################## # we might need the k5crypto and com_err libraries on some systems AC_CHECK_LIB(com_err, _et_list, [LIBS="$LIBS -lcom_err"]) -- cgit