mirror of
https://github.com/samba-team/samba.git
synced 2025-01-14 19:24:43 +03:00
d2f15d4b6c
(This used to be commit 0f2943ac175c4e2fee6f68c9909d74b2018f40a2)
23 lines
1005 B
Plaintext
23 lines
1005 B
Plaintext
AC_CHECK_HEADERS(sys/file.h signal.h errno.h crypt.h curses.h sys/bittypes.h)
|
|
AC_CHECK_HEADERS(sys/stropts.h sys/timeb.h sys/times.h sys/uio.h sys/un.h)
|
|
AC_CHECK_HEADERS(sys/utsname.h termcap.h term.h timezone.h time.h ttyname.h)
|
|
|
|
AC_CHECK_FUNCS(setitimer uname umask unsetenv socket sendmsg putenv atexit strsep)
|
|
AC_CHECK_FUNCS(strlwr strncasecmp strptime strsep_copy strtok_r strupr swab)
|
|
|
|
# these are disabled unless heimdal is found below
|
|
SMB_MODULE_DEFAULT(KERBEROS_LIB, NOT)
|
|
SMB_BINARY_ENABLE(asn1_compile, NO)
|
|
SMB_BINARY_ENABLE(compile_et, NO)
|
|
|
|
# to enable kerberos, unpack a heimdal source tree in the heimdal directory
|
|
# of the samba source tree
|
|
if test -d heimdal; then
|
|
AC_DEFINE(HAVE_KRB5,1,[Whether kerberos is available])
|
|
CFLAGS="${CFLAGS} -Iheimdal_build -Iheimdal/lib/krb5 -Iheimdal/lib/gssapi -Iheimdal/lib/asn1 -Iheimdal/lib/com_err -Iheimdal/lib/hdb"
|
|
HAVE_KRB5=YES
|
|
SMB_MODULE_DEFAULT(KERBEROS_LIB, STATIC)
|
|
SMB_BINARY_ENABLE(asn1_compile, YES)
|
|
SMB_BINARY_ENABLE(compile_et, YES)
|
|
fi
|