1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

Delay gssapi header checking until after kerberos has been located. Wasn't working on RedHat systems because of /usr/kerberos install location.

This commit is contained in:
Jim McDonough 0001-01-01 00:00:00 +00:00
parent 0a727afc66
commit 55d55e311e
2 changed files with 656 additions and 653 deletions

1304
source/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -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"])