From 098c08ccabe164492d6a91372608f5feb0de0d47 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 13 Nov 2002 07:04:00 +0000 Subject: Merge from HEAD - make configure check for the location of Heimdal KRB5 on suse systems - fix libsmbclient for new global_myname() (This used to be commit 111b0405cf8c95da5c927f31e5db7fd51c590b1f) --- source3/configure.in | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'source3/configure.in') diff --git a/source3/configure.in b/source3/configure.in index 16e9af4b47..3c5f74a67e 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1987,6 +1987,20 @@ if test x"$with_ads_support" = x"yes"; then ) +if test x$FOUND_KRB5 = x"no"; then +################################################# +# see if this box has the SuSE location for the heimdal kerberos implementation +AC_MSG_CHECKING(for /usr/include/heimdal) +if test -d /usr/include/heimdal; then + CFLAGS="$CFLAGS -I/usr/heimdal/include" + CPPFLAGS="$CPPFLAGS -I/usr/heimdal/include" + AC_MSG_RESULT(yes) +else + AC_MSG_RESULT(no) +fi +fi + + if test x$FOUND_KRB5 = x"no"; then ################################################# # see if this box has the RedHat location for kerberos -- cgit