From: baalberith Date: Tue, 14 Oct 2008 19:00:50 +0000 (+0000) Subject: fixed bug [1323202] Configure script doesnt correctly handle "--with-krb5" X-Git-Tag: v5.4~7 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=mod_auth_kerb.cvs%2F.git;a=commitdiff_plain;h=75282ec0d14d44e5969f97fbcc1f685b7dc89baa fixed bug [1323202] Configure script doesnt correctly handle "--with-krb5" --- diff --git a/configure.in b/configure.in index 95b70b1..341dcb4 100644 --- a/configure.in +++ b/configure.in @@ -39,6 +39,14 @@ AC_ARG_WITH(krb5, AC_HELP_STRING([--with-krb5=dir],[use krb5 in dir]), [ with_krb5="$withval" ]) +if test "x$with_krb5" = "xyes" ; then + with_krb5="" +fi + +if test "x$with_krb4" = "xyes" ; then + with_krb4="" +fi + if test "x$with_krb5" != "xno" ; then ac_save_CPPFLAGS="$CPPFLAGS" ac_save_LDFLAGS="$LDFLAGS"