From 43acd52ed9654cfbe83af21a2f209a7015caa67a Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 13 Sep 2004 07:20:25 +0000 Subject: 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) --- source4/libads/config.m4 | 6 +++--- 1 file 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) -- cgit