diff options
author | foobar <sniper@php.net> | 2003-05-28 14:11:21 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2003-05-28 14:11:21 +0000 |
commit | dcb0daeae33bcaf3c0b68733174e50bfc772351c (patch) | |
tree | 92684c20230cc965135ed5a3141f170b1cccbdd2 /sapi | |
parent | fb232d96c955ce65ec0e09897a282f540a3be37d (diff) | |
download | php-git-dcb0daeae33bcaf3c0b68733174e50bfc772351c.tar.gz |
- Fix the error message if apxs|2 is fubar.
Diffstat (limited to 'sapi')
-rw-r--r-- | sapi/apache/config.m4 | 2 | ||||
-rw-r--r-- | sapi/apache2filter/config.m4 | 2 | ||||
-rw-r--r-- | sapi/apache2handler/config.m4 | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sapi/apache/config.m4 b/sapi/apache/config.m4 index 2d95309f61..42a3f4b4ec 100644 --- a/sapi/apache/config.m4 +++ b/sapi/apache/config.m4 @@ -26,7 +26,7 @@ AC_ARG_WITH(apxs, AC_MSG_RESULT([2. Apache was not compiled with DSO support (--enable-module=so);]) AC_MSG_RESULT([3. 'apxs' is not in your path. Try to use --with-apxs=/path/to/apxs]) AC_MSG_RESULT([The output of $APXS follows]) - $APXS + $APXS -q CFLAGS AC_MSG_ERROR([Aborting]) fi diff --git a/sapi/apache2filter/config.m4 b/sapi/apache2filter/config.m4 index 030a9633cf..234fb0290a 100644 --- a/sapi/apache2filter/config.m4 +++ b/sapi/apache2filter/config.m4 @@ -27,7 +27,7 @@ AC_ARG_WITH(apxs2filter, AC_MSG_RESULT([3. Apache was not built using --enable-so (the apxs usage page is displayed)]) AC_MSG_RESULT() AC_MSG_RESULT([The output of $APXS follows:]) - $APXS + $APXS -q CFLAGS AC_MSG_ERROR([Aborting]) fi diff --git a/sapi/apache2handler/config.m4 b/sapi/apache2handler/config.m4 index 269bb59484..54e09b3dfb 100644 --- a/sapi/apache2handler/config.m4 +++ b/sapi/apache2handler/config.m4 @@ -27,7 +27,7 @@ AC_ARG_WITH(apxs2, AC_MSG_RESULT([3. Apache was not built using --enable-so (the apxs usage page is displayed)]) AC_MSG_RESULT() AC_MSG_RESULT([The output of $APXS follows:]) - $APXS + $APXS -q CFLAGS AC_MSG_ERROR([Aborting]) fi |