sniper          Mon Aug 25 22:51:21 2003 EDT

  Modified files:              (Branch: PHP_4_3)
    /php-src/main       config.w32.h internal_functions_win32.c 
  Log:
  MFH: - 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.61.2.3 php-src/main/config.w32.h:1.61.2.4
--- php-src/main/config.w32.h:1.61.2.3  Fri Jun 27 12:42:49 2003
+++ php-src/main/config.w32.h   Mon Aug 25 22:51:21 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.61.2.3 2003/06/27 16:42:49 sebastian Exp $
+       $Id: config.w32.h,v 1.61.2.4 2003/08/26 02:51:21 sniper Exp $
 */
 
 /* Default PHP / PEAR directories */
@@ -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
Index: php-src/main/internal_functions_win32.c
diff -u php-src/main/internal_functions_win32.c:1.65.2.2 
php-src/main/internal_functions_win32.c:1.65.2.3
--- php-src/main/internal_functions_win32.c:1.65.2.2    Tue Dec 31 11:25:14 2002
+++ php-src/main/internal_functions_win32.c     Mon Aug 25 22:51:21 2003
@@ -16,7 +16,7 @@
        |          Zeev Suraski <[EMAIL PROTECTED]>                                |
        +----------------------------------------------------------------------+
 
-       $Id: internal_functions_win32.c,v 1.65.2.2 2002/12/31 16:25:14 sebastian Exp $
+       $Id: internal_functions_win32.c,v 1.65.2.3 2003/08/26 02:51:21 sniper Exp $
 */
 
 /* {{{ includes
@@ -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 @@
 #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

Reply via email to