summaryrefslogtreecommitdiff
path: root/ext/mbstring
diff options
context:
space:
mode:
authorMoriyoshi Koizumi <moriyoshi@php.net>2003-10-02 11:02:54 +0000
committerMoriyoshi Koizumi <moriyoshi@php.net>2003-10-02 11:02:54 +0000
commita5422685fbad53135660de5b40826336f9db7815 (patch)
treeb1e39fb9a8f1169d168078104f4b488e00431ca1 /ext/mbstring
parentdaf7528d901bd6948471891cd90b132e544b55c0 (diff)
downloadphp-git-a5422685fbad53135660de5b40826336f9db7815.tar.gz
Remove leftovers
Diffstat (limited to 'ext/mbstring')
-rw-r--r--ext/mbstring/config.m416
-rw-r--r--ext/mbstring/mbstring.c15
2 files changed, 0 insertions, 31 deletions
diff --git a/ext/mbstring/config.m4 b/ext/mbstring/config.m4
index 3c68accd14..4e71f1befe 100644
--- a/ext/mbstring/config.m4
+++ b/ext/mbstring/config.m4
@@ -211,22 +211,6 @@ PHP_ARG_WITH(libmbfl, [for external libmbfl],
if test "$PHP_MBSTRING" != "no"; then
AC_DEFINE([HAVE_MBSTRING],1,[whether to have multibyte string support])
- if test "$PHP_MBSTRING" = "all" -o "$PHP_MBSTRING" = "ja"; then
- AC_DEFINE([HAVE_MBSTR_JA],1,[whether to have japanese support])
- fi
- if test "$PHP_MBSTRING" = "all" -o "$PHP_MBSTRING" = "cn"; then
- AC_DEFINE([HAVE_MBSTR_CN],1,[whether to have simplified chinese support])
- fi
- if test "$PHP_MBSTRING" = "all" -o "$PHP_MBSTRING" = "tw"; then
- AC_DEFINE([HAVE_MBSTR_TW],1,[whether to have traditional chinese support])
- fi
- if test "$PHP_MBSTRING" = "all" -o "$PHP_MBSTIRNG" = "kr"; then
- AC_DEFINE([HAVE_MBSTR_KR],1,[whether to have korean support])
- fi
- if test "$PHP_MBSTRING" = "all" -o "$PHP_MBSTRING" = "ru"; then
- AC_DEFINE([HAVE_MBSTR_RU],1,[whether to have russian support])
- fi
-
PHP_MBSTRING_ADD_SOURCES([mbstring.c php_unicode.c mb_gpc.c])
if test "$PHP_MBREGEX" != "no"; then
diff --git a/ext/mbstring/mbstring.c b/ext/mbstring/mbstring.c
index a7ae46c41b..a949edf5f4 100644
--- a/ext/mbstring/mbstring.c
+++ b/ext/mbstring/mbstring.c
@@ -977,21 +977,6 @@ PHP_MINFO_FUNCTION(mbstring)
php_info_print_table_start();
php_info_print_table_row(2, "Multibyte Support", "enabled");
php_info_print_table_row(2, "Multibyte string engine", "libmbfl");
-#if defined(HAVE_MBSTR_JA)
- php_info_print_table_row(2, "Japanese support", "enabled");
-#endif
-#if defined(HAVE_MBSTR_CN)
- php_info_print_table_row(2, "Simplified chinese support", "enabled");
-#endif
-#if defined(HAVE_MBSTR_TW)
- php_info_print_table_row(2, "Traditional chinese support", "enabled");
-#endif
-#if defined(HAVE_MBSTR_KR)
- php_info_print_table_row(2, "Korean support", "enabled");
-#endif
-#if defined(HAVE_MBSTR_RU)
- php_info_print_table_row(2, "Russian support", "enabled");
-#endif
if (MBSTRG(encoding_translation)) {
php_info_print_table_row(2, "HTTP input encoding translation", "enabled");
}