From: kouril Date: Tue, 15 Aug 2006 10:21:46 +0000 (+0000) Subject: Try also locating apxs2 binary if apxs isn't found X-Git-Tag: v5.0~9 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=mod_auth_kerb.git;a=commitdiff_plain;h=67b99008a918755b21811401c54f21ca18b799c0 Try also locating apxs2 binary if apxs isn't found --- diff --git a/configure.in b/configure.in index 2882c9c..ea8c2e7 100644 --- a/configure.in +++ b/configure.in @@ -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)