mirror of
https://git.freebsd.org/ports.git
synced 2025-07-05 03:19:18 -04:00
- 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>
11 lines
446 B
C++
11 lines
446 B
C++
--- php/src/IcePHP/Logger.cpp.orig 2013-06-02 11:52:25.727195546 +0000
|
|
+++ php/src/IcePHP/Logger.cpp 2013-06-02 11:52:39.876195038 +0000
|
|
@@ -269,7 +269,7 @@
|
|
//
|
|
zend_class_entry ce;
|
|
#ifdef ICEPHP_USE_NAMESPACES
|
|
- INIT_NS_CLASS_ENTRY(ce, STRCAST("Ice"), STRCAST("Logger"), _interfaceMethods);
|
|
+ INIT_NS_CLASS_ENTRY(ce, "Ice", "Logger", _interfaceMethods);
|
|
#else
|
|
INIT_CLASS_ENTRY(ce, "Ice_Logger", _interfaceMethods);
|
|
#endif
|