diff options
author | ale <ale@FreeBSD.org> | 2010-04-11 19:12:36 +0800 |
---|---|---|
committer | ale <ale@FreeBSD.org> | 2010-04-11 19:12:36 +0800 |
commit | d447d8884b8c62a4140cdcc2184908325f6d402e (patch) | |
tree | 510ad28913ffc3391c1f92a6e797b73aeed8e65e /www | |
parent | e40b8ca764c688a14abad360dc57cbb83916256b (diff) | |
download | freebsd-ports-gnome-d447d8884b8c62a4140cdcc2184908325f6d402e.tar.gz freebsd-ports-gnome-d447d8884b8c62a4140cdcc2184908325f6d402e.tar.zst freebsd-ports-gnome-d447d8884b8c62a4140cdcc2184908325f6d402e.zip |
Fix build with PHP 5.3.
Diffstat (limited to 'www')
-rw-r--r-- | www/php-screw/files/patch-php_screw.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/www/php-screw/files/patch-php_screw.c b/www/php-screw/files/patch-php_screw.c new file mode 100644 index 000000000000..382ca29b65d7 --- /dev/null +++ b/www/php-screw/files/patch-php_screw.c @@ -0,0 +1,18 @@ +--- php_screw.c.orig 2010-04-11 10:55:39.000000000 +0200 ++++ php_screw.c 2010-04-11 10:56:01.000000000 +0200 +@@ -121,7 +121,6 @@ + + PHP_MINIT_FUNCTION(php_screw) + { +- CG(extended_info) = 1; + + org_compile_file = zend_compile_file; + zend_compile_file = pm9screw_compile_file; +@@ -130,7 +129,6 @@ + + PHP_MSHUTDOWN_FUNCTION(php_screw) + { +- CG(extended_info) = 1; + zend_compile_file = org_compile_file; + return SUCCESS; + } |