summaryrefslogtreecommitdiff
path: root/devel/php5-ice/files/patch-php-src-IcePHP-Proxy.cpp
diff options
context:
space:
mode:
authorRuslan Makhmatkhanov <rm@FreeBSD.org>2013-06-17 11:49:32 +0000
committerRuslan Makhmatkhanov <rm@FreeBSD.org>2013-06-17 11:49:32 +0000
commit761142e0b457320078fb74141c84617b594d19ea (patch)
tree5354be0492f185c9201cb749801d3d2829732fab /devel/php5-ice/files/patch-php-src-IcePHP-Proxy.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-Proxy.cpp')
-rw-r--r--devel/php5-ice/files/patch-php-src-IcePHP-Proxy.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/php5-ice/files/patch-php-src-IcePHP-Proxy.cpp b/devel/php5-ice/files/patch-php-src-IcePHP-Proxy.cpp
new file mode 100644
index 000000000000..4e15ee48a7bc
--- /dev/null
+++ b/devel/php5-ice/files/patch-php-src-IcePHP-Proxy.cpp
@@ -0,0 +1,11 @@
+--- php/src/IcePHP/Proxy.cpp.orig 2013-06-02 11:54:02.594196824 +0000
++++ php/src/IcePHP/Proxy.cpp 2013-06-02 11:53:46.793198453 +0000
+@@ -1702,7 +1702,7 @@
+ //
+ zend_class_entry ce;
+ #ifdef ICEPHP_USE_NAMESPACES
+- INIT_NS_CLASS_ENTRY(ce, STRCAST("Ice"), STRCAST("ObjectPrx"), _proxyMethods);
++ INIT_NS_CLASS_ENTRY(ce, "Ice", "ObjectPrx", _proxyMethods);
+ #else
+ INIT_CLASS_ENTRY(ce, "Ice_ObjectPrx", _proxyMethods);
+ #endif