sniper Mon Aug 25 22:50:39 2003 EDT
Modified files:
/php-src/main config.w32.h internal_functions_win32.c
Log:
- Fixed bug #25166 (WDDX serializer handler missing in win32). (Jani)
Index: php-src/main/config.w32.h
diff -u php-src/main/config.w32.h:1.76 php-src/main/config.w32.h:1.77
--- php-src/main/config.w32.h:1.76 Thu Aug 14 12:49:56 2003
+++ php-src/main/config.w32.h Mon Aug 25 22:50:39 2003
@@ -2,7 +2,7 @@
Build Configuration for Win32.
This has only been tested with MS VisualC++ 6 (and later).
- $Id: config.w32.h,v 1.76 2003/08/14 16:49:56 wez Exp $
+ $Id: config.w32.h,v 1.77 2003/08/26 02:50:39 sniper Exp $
*/
/* Default PHP / PEAR directories */
@@ -59,7 +59,7 @@
#define HAVE_PCRE 1
/* Enable / Disable SESSION extension (default: enabled) */
-#define HAVE_SESSION 1
+#define HAVE_PHP_SESSION 1
/* Enable / Disable TOKENIZER extension (default: enabled) */
#define HAVE_TOKENIZER 1
Index: php-src/main/internal_functions_win32.c
diff -u php-src/main/internal_functions_win32.c:1.80
php-src/main/internal_functions_win32.c:1.81
--- php-src/main/internal_functions_win32.c:1.80 Thu Aug 14 13:06:43 2003
+++ php-src/main/internal_functions_win32.c Mon Aug 25 22:50:39 2003
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: internal_functions_win32.c,v 1.80 2003/08/14 17:06:43 wez Exp $ */
+/* $Id: internal_functions_win32.c,v 1.81 2003/08/26 02:50:39 sniper Exp $ */
/* {{{ includes
*/
@@ -68,7 +68,7 @@
#if HAVE_UODBC
#include "ext/odbc/php_odbc.h"
#endif
-#if HAVE_SESSION
+#if HAVE_PHP_SESSION
#include "ext/session/php_session.h"
#endif
#if HAVE_MBSTRING
@@ -126,7 +126,7 @@
#if HAVE_PCRE || HAVE_BUNDLED_PCRE
,phpext_pcre_ptr
#endif
-#if HAVE_SESSION
+#if HAVE_PHP_SESSION
,phpext_session_ptr
#endif
#if HAVE_TOKENIZER
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php