moriyoshi Mon Dec 2 16:10:38 2002 EDT Modified files: /php4/ext/mbstring mbregex.c mbstring.dsp mbstring.h php_mbregex.c php_unicode.c php_unicode.h Log: Reverted the changes because the problem was elsewhere. Index: php4/ext/mbstring/mbregex.c diff -u php4/ext/mbstring/mbregex.c:1.17 php4/ext/mbstring/mbregex.c:1.18 --- php4/ext/mbstring/mbregex.c:1.17 Mon Dec 2 14:18:23 2002 +++ php4/ext/mbstring/mbregex.c Mon Dec 2 16:10:37 2002 @@ -22,7 +22,6 @@ /* UTF-8 extension added Jan 16 1999 by Yoshida Masato <[EMAIL PROTECTED]> */ #include "php.h" -#include "mbstring.h" #if HAVE_MBREGEX Index: php4/ext/mbstring/mbstring.dsp diff -u php4/ext/mbstring/mbstring.dsp:1.15 php4/ext/mbstring/mbstring.dsp:1.16 --- php4/ext/mbstring/mbstring.dsp:1.15 Mon Dec 2 13:19:17 2002 +++ php4/ext/mbstring/mbstring.dsp Mon Dec 2 16:10:37 2002 @@ -43,7 +43,7 @@ # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /MD /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MBSTRING_EXPORTS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\.." /I "..\..\main" /I "..\..\Zend" /I "..\..\TSRM" /D ZEND_DEBUG=0 /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "COMPILE_DL_MBSTRING" /D ZTS=1 /D "ZEND_WIN32" /D "PHP_WIN32" /D MBSTRING_EXPORTS=1 /FR /YX /FD /c +# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\.." /I "..\..\main" /I "..\..\Zend" /I +"..\..\TSRM" /D ZEND_DEBUG=0 /D "_MBCS" /D "_USRDLL" /D "WIN32" /D "NDEBUG" /D +"_WINDOWS" /D "COMPILE_DL_MBSTRING" /D ZTS=1 /D "ZEND_WIN32" /D "PHP_WIN32" /D +MBSTRING_EXPORTS=1 /D HAVE_MBSTRING=1 /D HAVE_MBREGEX=1 /D HAVE_MBSTR_CN=1 /D +HAVE_MBSTR_JA=1 /D HAVE_MBSTR_KR=1 /D HAVE_MBSTR_RU=1 /D HAVE_MBSTR_TW=1 /FR /YX /FD +/c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x407 /d "NDEBUG" @@ -69,7 +69,7 @@ # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "MBSTRING_EXPORTS" /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "..\.." /I "..\..\main" /I "..\..\Zend" /I "..\..\TSRM" /D ZEND_DEBUG=1 /D "MBSTRING_EXPORTS" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "COMPILE_DL_MBSTRING" /D ZTS=1 /D "ZEND_WIN32" /D "PHP_WIN32" /D MBSTRING_EXPORTS=1 /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "..\.." /I "..\..\main" /I "..\..\Zend" +/I "..\..\TSRM" /D ZEND_DEBUG=1 /D "MBSTRING_EXPORTS" /D "WIN32" /D "NDEBUG" /D +"_WINDOWS" /D "COMPILE_DL_MBSTRING" /D ZTS=1 /D "ZEND_WIN32" /D "PHP_WIN32" /D +MBSTRING_EXPORTS=1 /D HAVE_MBSTRING=1 /D HAVE_MBREGEX=1 /D HAVE_MBSTR_CN=1 /D +HAVE_MBSTR_JA=1 /D HAVE_MBSTR_KR=1 /D HAVE_MBSTR_RU=1 /D HAVE_MBSTR_TW=1 /YX /FD /GZ +/c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD BASE RSC /l 0x407 /d "_DEBUG" Index: php4/ext/mbstring/mbstring.h diff -u php4/ext/mbstring/mbstring.h:1.47 php4/ext/mbstring/mbstring.h:1.48 --- php4/ext/mbstring/mbstring.h:1.47 Mon Dec 2 14:18:23 2002 +++ php4/ext/mbstring/mbstring.h Mon Dec 2 16:10:37 2002 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: mbstring.h,v 1.47 2002/12/02 19:18:23 fmk Exp $ */ +/* $Id: mbstring.h,v 1.48 2002/12/02 21:10:37 moriyoshi Exp $ */ /* * PHP4 Multibyte String module "mbstring" (currently only for Japanese) @@ -49,20 +49,6 @@ #ifdef COMPILE_DL_MBSTRING #undef HAVE_MBSTRING #define HAVE_MBSTRING 1 -#ifdef PHP_WIN32 -# undef HAVE_MBREGEX -# define HAVE_MBREGEX 1 -# undef HAVE_MBSTR_CN -# define HAVE_MBSTR_CN 1 -# undef HAVE_MBSTR_JA -# define HAVE_MBSTR_JA 1 -# undef HAVE_MBSTR_KR -# define HAVE_MBSTR_KR 1 -# undef HAVE_MBSTR_RU -# define HAVE_MBSTR_RU 1 -# undef HAVE_MBSTR_TW -# define HAVE_MBSTR_TW 1 -#endif #endif #ifdef PHP_WIN32 Index: php4/ext/mbstring/php_mbregex.c diff -u php4/ext/mbstring/php_mbregex.c:1.24 php4/ext/mbstring/php_mbregex.c:1.25 --- php4/ext/mbstring/php_mbregex.c:1.24 Mon Dec 2 13:19:17 2002 +++ php4/ext/mbstring/php_mbregex.c Mon Dec 2 16:10:37 2002 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: php_mbregex.c,v 1.24 2002/12/02 18:19:17 fmk Exp $ */ +/* $Id: php_mbregex.c,v 1.25 2002/12/02 21:10:37 moriyoshi Exp $ */ #ifdef HAVE_CONFIG_H @@ -25,9 +25,9 @@ #include "php.h" #include "php_ini.h" -#include "mbstring.h" -#include "mbregex.h" #include "php_mbregex.h" +#include "mbregex.h" +#include "mbstring.h" #if HAVE_MBREGEX Index: php4/ext/mbstring/php_unicode.c diff -u php4/ext/mbstring/php_unicode.c:1.6 php4/ext/mbstring/php_unicode.c:1.7 --- php4/ext/mbstring/php_unicode.c:1.6 Mon Dec 2 13:19:17 2002 +++ php4/ext/mbstring/php_unicode.c Mon Dec 2 16:10:37 2002 @@ -36,7 +36,6 @@ #include "php.h" #include "php_ini.h" -#include "mbstring.h" #if HAVE_MBSTRING Index: php4/ext/mbstring/php_unicode.h diff -u php4/ext/mbstring/php_unicode.h:1.3 php4/ext/mbstring/php_unicode.h:1.4 --- php4/ext/mbstring/php_unicode.h:1.3 Mon Dec 2 13:19:17 2002 +++ php4/ext/mbstring/php_unicode.h Mon Dec 2 16:10:37 2002 @@ -103,7 +103,7 @@ MBSTRING_API int php_unicode_is_prop(unsigned long code, unsigned long mask1, unsigned long mask2); -MBSTRING_API char *php_unicode_convert_case(int case_mode, char *srcstr, size_t srclen, size_t *ret_len, +MBSTRING_API char *php_unicode_convert_case(int case_mode, char *srcstr, size_t +srclen, size_t *retlen, char *src_encoding TSRMLS_DC); #define PHP_UNICODE_CASE_UPPER 0
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php