`x"$with_cyrus_sasl" != "no"' instead of `... != x"no"'.
+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.
:
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
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"
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
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"
-Mon Feb 5 20:06:48 PST 2001
+Sat Mar 17 03:16:27 PST 2001