From: foobar Date: Tue, 26 Aug 2003 02:51:21 +0000 (+0000) Subject: MFH: - Fixed bug #25166 (WDDX serializer handler missing in win32). (Jani) X-Git-Tag: php-4.3.4RC1~185 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bb83f93954dedb17f74b73106de91ce6f05ed4ff;p=php MFH: - Fixed bug #25166 (WDDX serializer handler missing in win32). (Jani) --- diff --git a/main/config.w32.h b/main/config.w32.h index 79c248362c..949d63cd44 100644 --- a/main/config.w32.h +++ b/main/config.w32.h @@ -64,7 +64,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 diff --git a/main/internal_functions_win32.c b/main/internal_functions_win32.c index d730bee3f5..35e50d26a7 100644 --- a/main/internal_functions_win32.c +++ b/main/internal_functions_win32.c @@ -67,7 +67,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_LIBEXPAT @@ -131,7 +131,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