1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-26 04:23:49 +03:00

check for gssapi_generic.h

This commit is contained in:
Andrew Tridgell
-
parent 18da530293
commit 838fbac7a0
4 changed files with 817 additions and 768 deletions

1574
source/configure vendored

File diff suppressed because it is too large Load Diff

View File

@@ -249,7 +249,8 @@ AC_CHECK_HEADERS(sys/param.h ctype.h sys/wait.h sys/resource.h sys/ioctl.h sys/i
AC_CHECK_HEADERS(sys/mman.h sys/filio.h sys/priv.h sys/shm.h string.h strings.h stdlib.h sys/socket.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 gssapi/gssapi.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.

View File

@@ -820,6 +820,9 @@
/* Define if you have the <gssapi/gssapi.h> header file. */
#undef HAVE_GSSAPI_GSSAPI_H
/* Define if you have the <gssapi/gssapi_generic.h> header file. */
#undef HAVE_GSSAPI_GSSAPI_GENERIC_H
/* Define if you have the <history.h> header file. */
#undef HAVE_HISTORY_H

View File

@@ -391,6 +391,11 @@
#if HAVE_GSSAPI_GSSAPI_H
#include <gssapi/gssapi.h>
#else
#undef HAVE_KRB5
#endif
#if HAVE_GSSAPI_GSSAPI_GENERIC_H
#include <gssapi/gssapi_generic.h>
#else
#undef HAVE_KRB5