X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=configure.in;h=ea8c2e7163aa43332af8b396428a4fd53b854ee5;hb=22b5f0bb57ae10c2630ec39a5dcf91f3285d96bc;hp=ec17a99c71776e1f861509159f7c0e08a092aa82;hpb=b27fce04e29ac8cf2fb9cff709989873daba3e25;p=mod_auth_kerb.git diff --git a/configure.in b/configure.in index ec17a99..ea8c2e7 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ # Process this file with autoconf to produce a configure script. AC_REVISION($Revision$) AC_PREREQ(2.57) -AC_INIT(mod_auth_kerb, 0.5-rc6, modauthkerb-developers@lists.sourceforge.net) +AC_INIT(mod_auth_kerb, 5.0-rc7, modauthkerb-developers@lists.sourceforge.net) AC_CONFIG_SRCDIR([src/mod_auth_kerb.c]) AC_CONFIG_HEADER([config.h]) @@ -150,7 +150,7 @@ if test "x$with_krb5" != "xno" ; then AC_MSG_RESULT(no) fi - if test -z "gssapi_supports_spnego"; then + if test -z "$gssapi_supports_spnego"; then if test -n "$have_heimdal"; then SPNEGO_SRCS="\ spnegokrb5/asn1_MechType.c \ spnegokrb5/asn1_MechTypeList.c \ @@ -281,7 +281,10 @@ AC_ARG_WITH(apache, AC_PATH_PROG([APXS], [apxs], [], [$with_apache/bin:$with_apache/sbin:$PATH]) if test -z "$APXS"; then - AC_MSG_ERROR([failed to find apache apxs executable]) + AC_PATH_PROG([APXS], [apxs2], [], [$with_apache/bin:$with_apache/sbin:$PATH]) + if test -z "$APXS"; then + AC_MSG_ERROR([failed to find apache apxs executable]) + fi fi AC_SUBST(APXS)