summaryrefslogtreecommitdiff
path: root/sapi
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>2002-06-29 00:12:46 +0000
committerRasmus Lerdorf <rasmus@php.net>2002-06-29 00:12:46 +0000
commit03b76b278e59693b8158303d07d44ca45b2b49cc (patch)
tree6f047e3c65064f957e244d57fb8707812adccc86 /sapi
parent02022179c914df99f1e5a9d32c749b978c92b7cf (diff)
downloadphp-git-03b76b278e59693b8158303d07d44ca45b2b49cc.tar.gz
Oops, extra pipe snuck in
Diffstat (limited to 'sapi')
-rw-r--r--sapi/apache/config.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache/config.m4 b/sapi/apache/config.m4
index 999d5d091d..200ace1f06 100644
--- a/sapi/apache/config.m4
+++ b/sapi/apache/config.m4
@@ -37,7 +37,7 @@ AC_ARG_WITH(apxs,
# Test that we're trying to configure with apache 1.x
dnl 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;}'`
+ 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" -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