]> granicus.if.org Git - php/commitdiff
- Fixed bug #25166 (WDDX serializer handler missing in win32). (Jani)
authorfoobar <sniper@php.net>
Tue, 26 Aug 2003 02:50:39 +0000 (02:50 +0000)
committerfoobar <sniper@php.net>
Tue, 26 Aug 2003 02:50:39 +0000 (02:50 +0000)
main/config.w32.h
main/internal_functions_win32.c

index fc4c88bf5be173c8ab1a168257ec7d2c26f29b5a..4d5bdc6a95a76ba8d44934b7f72e2754c982c395 100644 (file)
@@ -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 c1eaa6b6f4a6d7f524425d996f5c3da5302bbd57..0c5393acd12d790deeab40b246b1b111a289641c 100644 (file)
@@ -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 @@ zend_module_entry *php_builtin_extensions[] = {
 #if HAVE_PCRE || HAVE_BUNDLED_PCRE
        ,phpext_pcre_ptr
 #endif
-#if HAVE_SESSION
+#if HAVE_PHP_SESSION
        ,phpext_session_ptr
 #endif
 #if HAVE_TOKENIZER