From: Kurt Zeilenga Date: Fri, 10 Oct 2003 02:21:14 +0000 (+0000) Subject: clean up sasl test X-Git-Tag: OPENLDAP_REL_ENG_2_1_23~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2701d6b62594629af92e9527a36b8fc8ec0b3262;p=thirdparty%2Fopenldap.git clean up sasl test --- diff --git a/build/openldap.m4 b/build/openldap.m4 index 26b2458e21..577f8e2a91 100644 --- a/build/openldap.m4 +++ b/build/openldap.m4 @@ -1209,10 +1209,10 @@ AC_DEFUN([OL_SASL_COMPAT], #if SASL_VERSION_MAJOR == 1 && SASL_VERSION_MINOR >= 5 char *__sasl_compat = "1.5.x okay"; #elif SASL_VERSION_MAJOR == 2 && SASL_VERSION_MINOR > 1 - __sasl_compat "2.2+ or better okay (we guess)"; + char *__sasl_compat = "2.2+ or better okay (we guess)"; #elif SASL_VERSION_MAJOR == 2 && SASL_VERSION_MINOR == 1 \ && SASL_VERSION_STEP >=3 - __sasl_compat = "2.1.3+ or better okay"; + char *__sasl_compat = "2.1.3+ or better okay"; #endif ], [ol_cv_sasl_compat=yes], [ol_cv_sasl_compat=no])]) ])