1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-06-27 15:40:32 -04:00
ports/devel/php5-ice/files/patch-php-src-IcePHP-Proxy.cpp
Ruslan Makhmatkhanov 761142e0b4 - 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>
2013-06-17 11:49:32 +00:00

11 lines
443 B
C++

--- 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