summaryrefslogtreecommitdiff
path: root/source4/libads
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-09-13 07:20:25 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:58:42 -0500
commit43acd52ed9654cfbe83af21a2f209a7015caa67a (patch)
treedc59d158e9c27bc468eb439e4fc9ed3f1164152f /source4/libads
parent179cfe559608c020a59008bf4aa9ab124086faab (diff)
downloadsamba-43acd52ed9654cfbe83af21a2f209a7015caa67a.tar.gz
samba-43acd52ed9654cfbe83af21a2f209a7015caa67a.tar.bz2
samba-43acd52ed9654cfbe83af21a2f209a7015caa67a.zip
r2310: fixed some broken if statements in handling --with-krb5
they did not handle the fact that FOUND_KRB5 was not set at all at this point (This used to be commit d8c97ed02c1215f2cced836fd369db5a3f97f403)
Diffstat (limited to 'source4/libads')
-rw-r--r--source4/libads/config.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/libads/config.m4 b/source4/libads/config.m4
index c48b185728..7ee0a50626 100644
--- a/source4/libads/config.m4
+++ b/source4/libads/config.m4
@@ -137,7 +137,7 @@ if test x"$with_ads_support" != x"no"; then
AC_MSG_RESULT(no. Fallback to previous krb5 detection strategy)
fi
- if test x$FOUND_KRB5 = x"no"; then
+ if test x$FOUND_KRB5 != x"yes"; then
#################################################
# check for location of Kerberos 5 install
AC_MSG_CHECKING(for kerberos 5 install path)
@@ -163,7 +163,7 @@ if test x"$with_ads_support" != x"no"; then
)
fi
- if test x$FOUND_KRB5 = x"no"; then
+ if test x$FOUND_KRB5 != x"yes"; then
#################################################
# see if this box has the SuSE location for the heimdal krb implementation
AC_MSG_CHECKING(for /usr/include/heimdal)
@@ -183,7 +183,7 @@ if test x"$with_ads_support" != x"no"; then
fi
fi
- if test x$FOUND_KRB5 = x"no"; then
+ if test x$FOUND_KRB5 != x"yes"; then
#################################################
# see if this box has the RedHat location for kerberos
AC_MSG_CHECKING(for /usr/kerberos)