diff options
author | Christopher Jones <sixd@php.net> | 2011-03-23 18:56:47 +0000 |
---|---|---|
committer | Christopher Jones <sixd@php.net> | 2011-03-23 18:56:47 +0000 |
commit | 8ca08487b741002f6ae0b09dad6479c1eec4bae4 (patch) | |
tree | 7a4b1812bade3262336cd6504a163e7af9890b81 /acinclude.m4 | |
parent | 3c364cbe52eeaf42a9d787bc911f538df2796932 (diff) | |
download | php-git-8ca08487b741002f6ae0b09dad6479c1eec4bae4.tar.gz |
Fixed bug #54084 (Fix apxs Apache version test to work with Oracle HTTP Server) (Chris Jones)
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 25e35fd179..811249bcfb 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -2591,7 +2591,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 | grep version` + ac_output=`$1 -v 2>&1 | grep version | $SED -e 's/Oracle-HTTP-//'` ac_IFS=$IFS IFS="- /. " |