]> granicus.if.org Git - php/commitdiff
Use a simple IFS; set step to interprete the httpd -v output
authorSascha Schumann <sas@php.net>
Thu, 11 Jul 2002 08:44:42 +0000 (08:44 +0000)
committerSascha Schumann <sas@php.net>
Thu, 11 Jul 2002 08:44:42 +0000 (08:44 +0000)
sapi/apache/config.m4
sapi/apache2filter/config.m4

index 90f4cdaedfb1a9682511c102eda136b26a915da9..ec6101ede2522596243e44215d69a5ca4f92d9e6 100644 (file)
@@ -2,6 +2,16 @@ dnl
 dnl $Id$
 dnl
 
+AC_DEFUN(PHP_AP_EXTRACT_VERSION,[
+  ac_IFS=$IFS
+IFS="- /.
+"
+  set `$1 -v 2>&1`
+  IFS=$ac_IFS
+
+  APACHE_VERSION=`expr [$]4 \* 1000000 + [$]5 \* 1000 + [$]6`
+])
+
 AC_MSG_CHECKING(for Apache 1.x module support via DSO through APXS)
 AC_ARG_WITH(apxs,
 [  --with-apxs[=FILE]      Build shared Apache 1.x module. FILE is the optional
@@ -36,7 +46,7 @@ AC_ARG_WITH(apxs,
   APXS_HTTPD=`$APXS -q SBINDIR`/`$APXS -q TARGET`
 
   # Test that we're trying to configure with apache 1.x
-  APACHE_VERSION=`$APXS_HTTPD -v | head -1 | awk 'BEGIN { RS=" "; } /Apache/ { print $1; }' | cut -f2 -d'/' | cut -f1 -d'-' | awk 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
+  PHP_AP_EXTRACT_VERSION($APXS_HTTPD)
   if test "$APACHE_VERSION" -ge 2000000; then
     AC_MSG_ERROR([You have enabled Apache 1.3 support while your server is Apache 2.  Please use the appropiate switch --with-apxs2]) 
   fi
index 86e4507dbff368cc614e5d8b4a42e9b3dc914ab9..776af54fe7bafb9bbed7d411dc06bba223079a51 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 | awk 'BEGIN { RS=" "; } /Apache/ { print $1; }' | cut -f2 -d'/' | cut -f1 -d'-' | awk 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
+  PHP_AP_EXTRACT_VERSION($APXS_HTTPD)
   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