summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2002-06-29 00:33:02 +0000
committerfoobar <sniper@php.net>2002-06-29 00:33:02 +0000
commit999d9aa10f9fb43e95c93baba14feb068ade3313 (patch)
tree465b237f2d3e93c8e8f293893d91c6276a89145b
parent7e5b2f2165155f99602deb634786fdf04688bf2a (diff)
downloadphp-git-999d9aa10f9fb43e95c93baba14feb068ade3313.tar.gz
Better fix it here too..
-rw-r--r--sapi/apache2filter/config.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache2filter/config.m4 b/sapi/apache2filter/config.m4
index 2cfff4bc2e..32c9d39956 100644
--- a/sapi/apache2filter/config.m4
+++ b/sapi/apache2filter/config.m4
@@ -43,7 +43,7 @@ AC_ARG_WITH(apxs2,
done
# Test that we're trying to configure with apache 2.x
- APACHE_VERSION=`$APXS_HTTPD -v | head -1 | cut -f3 -d' ' | cut -f2 -d'/' | cut -f1 -d'-' | awk 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
+ APACHE_VERSION=`$APXS_HTTPD -v | head -1 | awk 'BEGIN { RS=" "; } /Apache/ { print $0; }' | cut -f2 -d'/' | cut -f1 -d'-' | awk 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
if test "$APACHE_VERSION" -le 2000000; then
AC_MSG_ERROR([You have enabled Apache 2 support while your server is Apache 1.3. Please use the appropiate switch --with-apxs (without the 2)])
elif test "$APACHE_VERSION" -lt 2000040; then