diff options
author | ale <ale@FreeBSD.org> | 2006-01-16 12:08:20 +0000 |
---|---|---|
committer | ale <ale@FreeBSD.org> | 2006-01-16 12:08:20 +0000 |
commit | 223a176b09b25c0282d8d2c3e77499132df71e1e (patch) | |
tree | 3a2d5ffe3b3c869f81c7a511d48a9c07dc7b7b4c /textproc/php5-wddx | |
parent | 081df03df9b317de0dabdb3786d7cef942292959 (diff) | |
download | FreeBSD-ports-223a176b09b25c0282d8d2c3e77499132df71e1e.zip FreeBSD-ports-223a176b09b25c0282d8d2c3e77499132df71e1e.tar.gz |
Update to 5.1.2 release:
- add reflection
- enable xmlreader and xmlwriter by default in php5-extensions
Diffstat (limited to 'textproc/php5-wddx')
-rw-r--r-- | textproc/php5-wddx/files/patch-wddx.c | 35 |
1 files changed, 31 insertions, 4 deletions
diff --git a/textproc/php5-wddx/files/patch-wddx.c b/textproc/php5-wddx/files/patch-wddx.c index 0a26af4..a8a6a79 100644 --- a/textproc/php5-wddx/files/patch-wddx.c +++ b/textproc/php5-wddx/files/patch-wddx.c @@ -1,13 +1,40 @@ ---- wddx.c.orig Mon Jul 26 08:56:21 2004 -+++ wddx.c Mon Jul 26 08:56:40 2004 +--- wddx.c.orig Sun Jan 1 13:50:16 2006 ++++ wddx.c Mon Jan 16 12:56:21 2006 @@ -18,6 +18,10 @@ - /* $Id: wddx.c,v 1.96.2.5.2.1 2004/07/13 13:15:30 iliaa Exp $ */ + /* $Id: wddx.c,v 1.119.2.8 2006/01/01 12:50:16 sniper Exp $ */ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include "php.h" - #include "php_wddx.h" + #if HAVE_WDDX +@@ -223,7 +227,7 @@ + + #include "ext/session/php_session.h" + +-#if HAVE_PHP_SESSION && !defined(COMPILE_DL_SESSION) ++#if HAVE_PHP_SESSION + /* {{{ PS_SERIALIZER_ENCODE_FUNC + */ + PS_SERIALIZER_ENCODE_FUNC(wddx) +@@ -302,7 +306,7 @@ + { + le_wddx = zend_register_list_destructors_ex(release_wddx_packet_rsrc, NULL, "wddx", module_number); + +-#if HAVE_PHP_SESSION && !defined(COMPILE_DL_SESSION) ++#if HAVE_PHP_SESSION + php_session_register_serializer("wddx", + PS_SERIALIZER_ENCODE_NAME(wddx), + PS_SERIALIZER_DECODE_NAME(wddx)); +@@ -317,7 +321,7 @@ + PHP_MINFO_FUNCTION(wddx) + { + php_info_print_table_start(); +-#if HAVE_PHP_SESSION && !defined(COMPILE_DL_SESSION) ++#if HAVE_PHP_SESSION + php_info_print_table_header(2, "WDDX Support", "enabled" ); + php_info_print_table_row(2, "WDDX Session Serializer", "enabled" ); + #else |