svn commit: samba r2310 - in branches/SAMBA_4_0/source/libads: .

tridge at samba.org tridge at samba.org
Mon Sep 13 07:20:26 GMT 2004


Author: tridge
Date: 2004-09-13 07:20:25 +0000 (Mon, 13 Sep 2004)
New Revision: 2310

WebSVN: http://websvn.samba.org/websvn/changeset.php?rep=samba&path=/branches/SAMBA_4_0/source/libads&rev=2310&nolog=1

Log:
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


Modified:
   branches/SAMBA_4_0/source/libads/config.m4


Changeset:
Modified: branches/SAMBA_4_0/source/libads/config.m4
===================================================================
--- branches/SAMBA_4_0/source/libads/config.m4	2004-09-13 05:05:46 UTC (rev 2309)
+++ branches/SAMBA_4_0/source/libads/config.m4	2004-09-13 07:20:25 UTC (rev 2310)
@@ -137,7 +137,7 @@
     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 @@
     )
   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 @@
     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)



More information about the samba-cvs mailing list