r7360: added a few more heimdal configure tests
[jelmer/samba4-debian.git] / source / heimdal_build / config.m4
1 AC_CHECK_HEADERS(sys/file.h signal.h errno.h crypt.h curses.h sys/bittypes.h)
2 AC_CHECK_HEADERS(sys/stropts.h sys/timeb.h sys/times.h sys/uio.h sys/un.h)
3 AC_CHECK_HEADERS(sys/utsname.h termcap.h term.h timezone.h time.h ttyname.h)
4
5 AC_CHECK_FUNCS(setitimer uname umask unsetenv socket sendmsg putenv atexit strsep)
6 AC_CHECK_FUNCS(strlwr strncasecmp strptime strsep_copy strtok_r strupr swab)
7
8 # these are disabled unless heimdal is found below
9 SMB_MODULE_DEFAULT(KERBEROS_LIB, NOT)
10 SMB_BINARY_ENABLE(asn1_compile, NO)
11 SMB_BINARY_ENABLE(compile_et, NO)
12
13 # to enable kerberos, unpack a heimdal source tree in the heimdal directory
14 # of the samba source tree
15 if test -d heimdal; then
16         AC_DEFINE(HAVE_KRB5,1,[Whether kerberos is available])
17         CFLAGS="${CFLAGS} -Iheimdal_build -Iheimdal/lib/krb5 -Iheimdal/lib/gssapi -Iheimdal/lib/asn1 -Iheimdal/lib/com_err -Iheimdal/lib/hdb"
18         HAVE_KRB5=YES
19         SMB_MODULE_DEFAULT(KERBEROS_LIB, STATIC)
20         SMB_BINARY_ENABLE(asn1_compile, YES)
21         SMB_BINARY_ENABLE(compile_et, YES)
22 fi