summaryrefslogtreecommitdiff
path: root/source3/configure.in
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-11-27 22:37:25 +0000
committerAndrew Tridgell <tridge@samba.org>2001-11-27 22:37:25 +0000
commita7ac992b12325c9771ef9baa5543c1e7ac2121d4 (patch)
tree4d1fef64dcb609dd71aacbe99842eb8f013e2402 /source3/configure.in
parente2adbd456864e23724e83cd83f60269bcbb2fdaf (diff)
downloadsamba-a7ac992b12325c9771ef9baa5543c1e7ac2121d4.tar.gz
samba-a7ac992b12325c9771ef9baa5543c1e7ac2121d4.tar.bz2
samba-a7ac992b12325c9771ef9baa5543c1e7ac2121d4.zip
added test for krb5.h
this was causing the kerberos stuff to fail compilation on several platforms (This used to be commit 17e2f3897374c76dd66b21fdcd93c3a04671f4ce)
Diffstat (limited to 'source3/configure.in')
-rw-r--r--source3/configure.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/configure.in b/source3/configure.in
index a2706769e6..bf02ba9d8b 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -1637,6 +1637,11 @@ AC_ARG_WITH(krb5,
AC_MSG_RESULT(no)
)
+# now check for krb5.h. Some systems have the libraries without the headers!
+# note that this check is done here to allow for different kerberos
+# include paths
+AC_CHECK_HEADERS(krb5.h)
+
##################################################################
# we might need the k5crypto and com_err libraries on some systems
AC_CHECK_LIB(com_err, _et_list, [LIBS="$LIBS -lcom_err"])