diff options
author | Joe Orton <jorton@php.net> | 2004-11-03 13:04:10 +0000 |
---|---|---|
committer | Joe Orton <jorton@php.net> | 2004-11-03 13:04:10 +0000 |
commit | 2469701b8723327fa826dc2028cbf0655fabd8b0 (patch) | |
tree | 5a62cab1424202ca4b6d1ec5c522bcc302a61117 | |
parent | 9fb0e11de507f54611fc513249c1f40a0410b4be (diff) | |
download | php-git-2469701b8723327fa826dc2028cbf0655fabd8b0.tar.gz |
Fix extraction of httpd version if httpd is linked against -lefence.
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 923d7f0d38..8f1b7f5c47 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -1886,7 +1886,7 @@ dnl This macro is used to get a comparable dnl version for apache1/2. dnl AC_DEFUN([PHP_AP_EXTRACT_VERSION],[ - ac_output=`$1 -v 2>&1` + ac_output=`$1 -v 2>&1 | grep version` ac_IFS=$IFS IFS="- /. " |