#12919: php5: add sockets variant -------------------------------------+-------------------------------------- Reporter: roger.hoover@… | Owner: ryandesign@… Type: enhancement | Status: closed Priority: Normal | Milestone: Component: ports | Version: 1.5.2 Resolution: fixed | Keywords: Port: php5, php5-devel | -------------------------------------+-------------------------------------- Comment(by ibadinov@…): Yep, my mistake. Thank you for support. [[BR]] But still there is one reason left to maintain local port: fix for E_STRICT (which is embedded in 5.4 only), but life without it is horrible. Or maybe someone already fixed it here? If not, is there rationale for opening new ticket?[[BR]] It's only one line of code that needs to be changed: {{{ --- a/Zend/zend_errors.h.orig 2012-05-03 16:54:59.000000000 +0300 +++ b/Zend/zend_errors.h 2012-06-25 18:12:13.000000000 +0300 @@ -38,7 +38,7 @@ #define E_DEPRECATED (1<<13L) #define E_USER_DEPRECATED (1<<14L) -#define E_ALL (E_ERROR | E_WARNING | E_PARSE | E_NOTICE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING | E_USER_ERROR | E_USER_WARNING | E_USER_NOTICE | E_RECOVERABLE_ERROR | E_DEPRECATED | E_USER_DEPRECATED) +#define E_ALL (E_ERROR | E_WARNING | E_PARSE | E_NOTICE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING | E_USER_ERROR | E_USER_WARNING | E_USER_NOTICE | E_RECOVERABLE_ERROR | E_DEPRECATED | E_USER_DEPRECATED | E_STRICT) #define E_CORE (E_CORE_ERROR | E_CORE_WARNING) #endif /* ZEND_ERRORS_H */ }}} -- Ticket URL: <https://trac.macports.org/ticket/12919#comment:8> MacPorts <http://www.macports.org/> Ports system for Mac OS