diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-09-13 07:20:25 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:58:42 -0500 |
commit | 43acd52ed9654cfbe83af21a2f209a7015caa67a (patch) | |
tree | dc59d158e9c27bc468eb439e4fc9ed3f1164152f | |
parent | 179cfe559608c020a59008bf4aa9ab124086faab (diff) | |
download | samba-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)
-rw-r--r-- | source4/libads/config.m4 | 6 |
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) |