diff options
author | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2013-06-17 11:49:32 +0000 |
---|---|---|
committer | Ruslan Makhmatkhanov <rm@FreeBSD.org> | 2013-06-17 11:49:32 +0000 |
commit | 761142e0b457320078fb74141c84617b594d19ea (patch) | |
tree | 5354be0492f185c9201cb749801d3d2829732fab /devel/php5-ice/files/patch-php-src-IcePHP-Init.cpp | |
parent | - update to 3.5.0 (diff) |
- update to 3.5.0
- pass maintainership to submitter
- new style Makefile header
- optionsNG
- install shared PHP file in the correct place
- don't install slice files anymore, since devel/ice (a dependency)
already installs those in the correct location
- add license (GPLv2)
- fix BUILD_DEPENDS
- add option that allows to use of PHP5 namespaces
- support PHP 5.4
- fixes for Clang and C++11
- remove outdated pkg-message
- fix patch filenames
PR: 179241
Submitted by: Michael Gmelin <freebsd@grem.de>
Notes
Notes:
svn path=/head/; revision=321099
Diffstat (limited to 'devel/php5-ice/files/patch-php-src-IcePHP-Init.cpp')
-rw-r--r-- | devel/php5-ice/files/patch-php-src-IcePHP-Init.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/devel/php5-ice/files/patch-php-src-IcePHP-Init.cpp b/devel/php5-ice/files/patch-php-src-IcePHP-Init.cpp new file mode 100644 index 000000000000..080bae0d60e6 --- /dev/null +++ b/devel/php5-ice/files/patch-php-src-IcePHP-Init.cpp @@ -0,0 +1,15 @@ +--- php/src/IcePHP/Init.cpp.orig 2013-03-11 15:19:47.000000000 +0000 ++++ php/src/IcePHP/Init.cpp 2013-06-02 11:44:16.052196522 +0000 +@@ -22,10 +22,10 @@ + + ZEND_DECLARE_MODULE_GLOBALS(ice) + +-ZEND_BEGIN_ARG_INFO(Ice_initialize_arginfo, 1) ++ZEND_BEGIN_ARG_INFO_EX(Ice_initialize_arginfo, 1, ZEND_RETURN_VALUE, static_cast<zend_uint>(-1)) + ZEND_END_ARG_INFO() + +-ZEND_BEGIN_ARG_INFO(Ice_createProperties_arginfo, 1) ++ZEND_BEGIN_ARG_INFO_EX(Ice_createProperties_arginfo, 1, ZEND_RETURN_VALUE, static_cast<zend_uint>(-1)) + ZEND_END_ARG_INFO() + + #define ICEPHP_COMMUNICATOR_FUNCTIONS \ |