moriyoshi               Thu Oct  2 07:02:55 2003 EDT

  Modified files:              
    /php-src/ext/mbstring       config.m4 mbstring.c 
  Log:
  Remove leftovers
  
  
Index: php-src/ext/mbstring/config.m4
diff -u php-src/ext/mbstring/config.m4:1.39 php-src/ext/mbstring/config.m4:1.40
--- php-src/ext/mbstring/config.m4:1.39 Mon Sep 22 22:43:49 2003
+++ php-src/ext/mbstring/config.m4      Thu Oct  2 07:02:54 2003
@@ -1,5 +1,5 @@
 dnl
-dnl $Id: config.m4,v 1.39 2003/09/23 02:43:49 hirokawa Exp $
+dnl $Id: config.m4,v 1.40 2003/10/02 11:02:54 moriyoshi Exp $
 dnl
 
 AC_DEFUN([PHP_MBSTRING_ADD_SOURCES], [
@@ -211,22 +211,6 @@
 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
Index: php-src/ext/mbstring/mbstring.c
diff -u php-src/ext/mbstring/mbstring.c:1.199 php-src/ext/mbstring/mbstring.c:1.200
--- php-src/ext/mbstring/mbstring.c:1.199       Fri Sep 26 10:42:14 2003
+++ php-src/ext/mbstring/mbstring.c     Thu Oct  2 07:02:54 2003
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: mbstring.c,v 1.199 2003/09/26 14:42:14 moriyoshi Exp $ */
+/* $Id: mbstring.c,v 1.200 2003/10/02 11:02:54 moriyoshi Exp $ */
 
 /*
  * PHP4 Multibyte String module "mbstring"
@@ -977,21 +977,6 @@
        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");      
        }

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to