From 05229d701c3e75ebe50fb2b6384a6a1ff356b4f2 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Thu, 4 May 2000 17:35:15 +0000 Subject: Oops. The Kerberos check was succeeding when it shouldn't have (and thus * configure.in: Oops. The Kerberos check was succeeding when it shouldn't have (and thus breaking the pop3 build for "normal" people). Fix. svn path=/trunk/; revision=2799 --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index 06f73f48ed..6fdb04d54c 100644 --- a/configure.in +++ b/configure.in @@ -362,14 +362,14 @@ dnl ******** AC_ARG_WITH(krb5, [ --with-krb5=PREFIX Location of Kerberos 5 libs/includes]) AC_ARG_WITH(krb4, [ --with-krb4=PREFIX Location of Kerberos 4 libs/includes]) AC_MSG_CHECKING(for Kerberos 5) -AC_MSG_RESULT($with_krb5) +AC_MSG_RESULT(${with_krb5:=no}) if test x$with_krb5 != xno; then KRB5_CFLAGS="-I$with_krb5/include/krb5" KRB5_LDFLAGS="-L$with_krb5/lib -lkrb5 -lk5crypto -lcom_err" AC_DEFINE(HAVE_KRB5) fi AC_MSG_CHECKING(for Kerberos 4) -AC_MSG_RESULT($with_krb4) +AC_MSG_RESULT(${with_krb4:=no}) if test x$with_krb4 != xno; then KRB4_CFLAGS="-I$with_krb4/include -I$with_krb4/include/kerberosIV $KRB5_CFLAGS" save_LDFLAGS="$LDFLAGS" -- cgit v1.2.3