scottmac Tue, 09 Aug 2011 18:12:06 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=314686
Log:
Fix building of pure C++ extensions as static
Changed paths:
U php/php-src/branches/PHP_5_3/build/genif.sh
U php/php-src/branches/PHP_5_4/build/genif.sh
U php/php-src/trunk/build/genif.sh
Modified: php/php-src/branches/PHP_5_3/build/genif.sh
===================================================================
--- php/php-src/branches/PHP_5_3/build/genif.sh 2011-08-09 16:05:19 UTC (rev
314685)
+++ php/php-src/branches/PHP_5_3/build/genif.sh 2011-08-09 18:12:06 UTC (rev
314686)
@@ -24,7 +24,7 @@
module_ptrs="$extra_module_ptrs`echo $@ | $awk -f ./build/order_by_dep.awk`"
for ext in ${1+"$@"} ; do
- header_list="$header_list ext/$ext/*.h"
+ header_list="$header_list ext/$ext/*.h*"
done
includes=`$awk -f ./build/print_include.awk $header_list`
Modified: php/php-src/branches/PHP_5_4/build/genif.sh
===================================================================
--- php/php-src/branches/PHP_5_4/build/genif.sh 2011-08-09 16:05:19 UTC (rev
314685)
+++ php/php-src/branches/PHP_5_4/build/genif.sh 2011-08-09 18:12:06 UTC (rev
314686)
@@ -24,7 +24,7 @@
module_ptrs="$extra_module_ptrs`echo $@ | $awk -f ./build/order_by_dep.awk`"
for ext in ${1+"$@"} ; do
- header_list="$header_list ext/$ext/*.h"
+ header_list="$header_list ext/$ext/*.h*"
done
includes=`$awk -f ./build/print_include.awk $header_list`
Modified: php/php-src/trunk/build/genif.sh
===================================================================
--- php/php-src/trunk/build/genif.sh 2011-08-09 16:05:19 UTC (rev 314685)
+++ php/php-src/trunk/build/genif.sh 2011-08-09 18:12:06 UTC (rev 314686)
@@ -24,7 +24,7 @@
module_ptrs="$extra_module_ptrs`echo $@ | $awk -f ./build/order_by_dep.awk`"
for ext in ${1+"$@"} ; do
- header_list="$header_list ext/$ext/*.h"
+ header_list="$header_list ext/$ext/*.h*"
done
includes=`$awk -f ./build/print_include.awk $header_list`
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php