From 67b99008a918755b21811401c54f21ca18b799c0 Mon Sep 17 00:00:00 2001 From: kouril Date: Tue, 15 Aug 2006 10:21:46 +0000 Subject: [PATCH] Try also locating apxs2 binary if apxs isn't found --- configure.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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) -- 2.1.4