|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2011-03-23 19:56 UTC] sixd@php.net
[2011-03-23 20:26 UTC] sixd@php.net
-Status: Open
+Status: Closed
-Assigned To:
+Assigned To: sixd
[2011-03-23 20:26 UTC] sixd@php.net
[2011-11-08 04:59 UTC] stas@php.net
[2012-04-18 09:47 UTC] laruence@php.net
[2012-07-24 23:39 UTC] rasmus@php.net
[2013-11-17 09:35 UTC] laruence@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 12:00:01 2025 UTC |
Description: ------------ A small change to acinclude.m4 will let the Apache version number check work correctly when installing PHP on Oracle HTTP Server (OHS). The end user work around is to edit 'configure' and change APACHE_VERSION=`expr $4 \* 1000000 + $5 \* 1000 + $6` to APACHE_VERSION=`expr $6 \* 1000000 + $7 \* 1000 + $8` The suggested real base patch is: Index: acinclude.m4 =================================================================== --- acinclude.m4 (revision 308331) +++ acinclude.m4 (working copy) @@ -2590,7 +2590,7 @@ 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="- /. "