diff options
| author | foobar <sniper@php.net> | 2003-08-26 02:50:39 +0000 |
|---|---|---|
| committer | foobar <sniper@php.net> | 2003-08-26 02:50:39 +0000 |
| commit | e4677c014ab15b8f73778ebc64126b1f8c2b2ce7 (patch) | |
| tree | 2ca895fa785a107be04a5768ae288f079d7e5a26 | |
| parent | 625600af303a67178f6836a9572f1eafea301f27 (diff) | |
| download | php-git-e4677c014ab15b8f73778ebc64126b1f8c2b2ce7.tar.gz | |
- Fixed bug #25166 (WDDX serializer handler missing in win32). (Jani)
| -rw-r--r-- | main/config.w32.h | 2 | ||||
| -rw-r--r-- | main/internal_functions_win32.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/main/config.w32.h b/main/config.w32.h index fc4c88bf5b..4d5bdc6a95 100644 --- a/main/config.w32.h +++ b/main/config.w32.h @@ -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 diff --git a/main/internal_functions_win32.c b/main/internal_functions_win32.c index c1eaa6b6f4..0c5393acd1 100644 --- a/main/internal_functions_win32.c +++ b/main/internal_functions_win32.c @@ -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 |
