components/php-5_3/php-sapi/patches/071_php_zend_execute_inline.patch
author Craig Mohrman <craig.mohrman@oracle.com>
Tue, 03 Feb 2015 15:20:15 -0800
changeset 3727 425608dcd0e3
parent 846 fe258446a1ae
permissions -rw-r--r--
19838509 upgrade php to version 5.3.29 18857741 problem in UTILITY/PHP 18890894 problem in UTILITY/PHP 18890895 problem in UTILITY/PHP 19003253 problem in UTILITY/PHP 19167518 problem in UTILITY/PHP 19519142 problem in UTILITY/PHP 19556437 problem in UTILITY/PHP 19707971 problem in UTILITY/PHP 19796954 problem in UTILITY/PHP

--- php-5.3.10/configure.in_orig	Thu Feb  2 09:29:58 2012
+++ php-5.3.10/configure.in	Thu Feb  2 18:30:51 2012
@@ -1445,7 +1445,11 @@
 if test -n "$GCC" && test "$ZEND_INLINE_OPTIMIZATION" != "yes"; then
   flag=-O0
 else
-  flag=
+  if test "$SUNCC" = "yes"; then
+    flag=-W2,-Ainline:inc=100
+  else
+    flag=
+  fi
 fi
 
 PHP_ADD_SOURCES_X(Zend, zend_execute.c,,PHP_GLOBAL_OBJS,,$flag)