summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Orton <jorton@php.net>2004-11-03 13:04:10 +0000
committerJoe Orton <jorton@php.net>2004-11-03 13:04:10 +0000
commit2469701b8723327fa826dc2028cbf0655fabd8b0 (patch)
tree5a62cab1424202ca4b6d1ec5c522bcc302a61117
parent9fb0e11de507f54611fc513249c1f40a0410b4be (diff)
downloadphp-git-2469701b8723327fa826dc2028cbf0655fabd8b0.tar.gz
Fix extraction of httpd version if httpd is linked against -lefence.
-rw-r--r--acinclude.m42
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="- /.
"