mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
Better fix it here too..
This commit is contained in:
parent
7e5b2f2165
commit
999d9aa10f
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue