diff options
author | Sebastian Bergmann <sebastian@php.net> | 2002-11-13 06:47:43 +0000 |
---|---|---|
committer | Sebastian Bergmann <sebastian@php.net> | 2002-11-13 06:47:43 +0000 |
commit | 8f54e30f3c1e5feb6e030feca5a5262fd5dbb5cf (patch) | |
tree | 318c52dfe797d453c6f42c65742e816f227681f3 /main | |
parent | e87b45de44b3d1d82b9de87271d876f55c4de8c3 (diff) | |
download | php-git-8f54e30f3c1e5feb6e030feca5a5262fd5dbb5cf.tar.gz |
Disable mbstring (and sync behaviour with *NIX per Andrei's commit).
Diffstat (limited to 'main')
-rw-r--r-- | main/config.w32.h.in | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/main/config.w32.h.in b/main/config.w32.h.in index a7a6948532..b7ba0e3d03 100644 --- a/main/config.w32.h.in +++ b/main/config.w32.h.in @@ -41,14 +41,14 @@ /* Enable / Disable FTP extension (default: enabled) */ #define HAVE_FTP 1 -/* Enable / Disable MBSTRING extension (default: enabled) */ -#define HAVE_MBSTRING 1 -#define HAVE_MBREGEX 1 -#define HAVE_MBSTR_CN 1 -#define HAVE_MBSTR_JA 1 -#define HAVE_MBSTR_KR 1 -#define HAVE_MBSTR_RU 1 -#define HAVE_MBSTR_TW 1 +/* Enable / Disable MBSTRING extension (default: disabled) */ +#define HAVE_MBSTRING 0 +#define HAVE_MBREGEX 0 +#define HAVE_MBSTR_CN 0 +#define HAVE_MBSTR_JA 0 +#define HAVE_MBSTR_KR 0 +#define HAVE_MBSTR_RU 0 +#define HAVE_MBSTR_TW 0 /* Enable / Disable MySQL extension (default: enabled) */ #define HAVE_MYSQL 1 |