]> granicus.if.org Git - php/commitdiff
Better fix it here too..
authorfoobar <sniper@php.net>
Sat, 29 Jun 2002 00:33:02 +0000 (00:33 +0000)
committerfoobar <sniper@php.net>
Sat, 29 Jun 2002 00:33:02 +0000 (00:33 +0000)
sapi/apache2filter/config.m4

index 2cfff4bc2e512b150e6f2446233034c5d812f6f7..32c9d39956d789d16e24179fb26314cdb9a659e8 100644 (file)
@@ -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