Ken Hornstein's configure.in Cyrus SASL checks were doing
authorDan Harkless <dan@harkless.org>
Sat, 17 Mar 2001 11:28:27 +0000 (11:28 +0000)
committerDan Harkless <dan@harkless.org>
Sat, 17 Mar 2001 11:28:27 +0000 (11:28 +0000)
`x"$with_cyrus_sasl" != "no"' instead of `... != x"no"'.

ChangeLog
configure
configure.in
stamp-h.in

index d8feed3..fc507d4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Mar 17 03:18:15 2001 Dan Harkless <dan-nmh@dilvish.speed.net>
+
+       * Ken Hornstein's configure.in Cyrus SASL checks were doing 
+       `x"$with_cyrus_sasl" != "no"' instead of `... != x"no"'.
+
 Tue Mar 06 21:04:27 2001 Dan Harkless <dan-nmh@dilvish.speed.net>
 
        * Found some historical information about MH in RFC 808.
index 30ede4b..ee83a6c 100755 (executable)
--- a/configure
+++ b/configure
@@ -739,7 +739,7 @@ if test "${with_cyrus_sasl+set}" = set; then
   :
 fi
 
-if test x"$with_cyrus_sasl" != x -a x"$with_cyrus_sasl" != "no"; then
+if test x"$with_cyrus_sasl" != x -a x"$with_cyrus_sasl" != x"no"; then
   cat >> confdefs.h <<\EOF
 #define CYRUS_SASL 1
 EOF
@@ -4179,7 +4179,7 @@ fi
 
 fi
 
-if test x"$with_cyrus_sasl" != x -a x"$with_cyrus_sasl" != "no"; then
+if test x"$with_cyrus_sasl" != x -a x"$with_cyrus_sasl" != x"no"; then
   if test x"$with_cyrus_sasl" != x"yes"; then
     SASL_INCLUDES="-I$with_cyrus_sasl/include"
     SASL_LIBS="-L$with_cyrus_sasl/lib"
index 167518d..70dac65 100644 (file)
@@ -93,7 +93,7 @@ dnl Do you want client-side support for using SASL for authentication?
 dnl Note that this code will be enabled for both POP and SMTP
 AC_ARG_WITH(cyrus-sasl,
 [  --with-cyrus-sasl=<dir> Specify location of Cyrus SASL library for auth])
-if test x"$with_cyrus_sasl" != x -a x"$with_cyrus_sasl" != "no"; then
+if test x"$with_cyrus_sasl" != x -a x"$with_cyrus_sasl" != x"no"; then
   AC_DEFINE(CYRUS_SASL)dnl
   sasl_support=yes
 else
@@ -629,7 +629,7 @@ AC_SUBST(KRB4_LIBS)dnl
 dnl --------------------
 dnl CHECK FOR CYRUS SASL
 dnl --------------------
-if test x"$with_cyrus_sasl" != x -a x"$with_cyrus_sasl" != "no"; then
+if test x"$with_cyrus_sasl" != x -a x"$with_cyrus_sasl" != x"no"; then
   if test x"$with_cyrus_sasl" != x"yes"; then
     SASL_INCLUDES="-I$with_cyrus_sasl/include"
     SASL_LIBS="-L$with_cyrus_sasl/lib"
index 2312e24..5e88ed0 100644 (file)
@@ -1 +1 @@
-Mon Feb  5 20:06:48 PST 2001
+Sat Mar 17 03:16:27 PST 2001