From 1ff8d41acece861cf6d4d017849e4ea927ab57b1 Mon Sep 17 00:00:00 2001 From: Dan Harkless Date: Sat, 17 Mar 2001 11:28:27 +0000 Subject: [PATCH] Ken Hornstein's configure.in Cyrus SASL checks were doing `x"$with_cyrus_sasl" != "no"' instead of `... != x"no"'. --- ChangeLog | 5 +++++ configure | 4 ++-- configure.in | 4 ++-- stamp-h.in | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index d8feed3..fc507d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Mar 17 03:18:15 2001 Dan Harkless + + * 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 * Found some historical information about MH in RFC 808. diff --git a/configure b/configure index 30ede4b..ee83a6c 100755 --- 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" diff --git a/configure.in b/configure.in index 167518d..70dac65 100644 --- a/configure.in +++ b/configure.in @@ -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= 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" diff --git a/stamp-h.in b/stamp-h.in index 2312e24..5e88ed0 100644 --- a/stamp-h.in +++ b/stamp-h.in @@ -1 +1 @@ -Mon Feb 5 20:06:48 PST 2001 +Sat Mar 17 03:16:27 PST 2001 -- 1.7.10.4