From 82e6e8c74e30fbf3be9a7f8694193e2f734fe956 Mon Sep 17 00:00:00 2001 From: Tatsuo Ishii Date: Fri, 31 Mar 2000 13:04:31 +0000 Subject: [PATCH] Fix configure.in. Remove SJIS, BIG5, WIN1250 from the selection list of multibyte encodings. These cannot be used as a backend/database encoding (OK to use as a client encoding). --- src/configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/configure.in b/src/configure.in index cb674e691c..f5baf22300 100644 --- a/src/configure.in +++ b/src/configure.in @@ -241,7 +241,7 @@ AC_ARG_ENABLE(multibyte, MULTIBYTE=SQL_ASCII if test "$enableval" != "yes"; then case "$enableval" in - SQL_ASCII|EUC_JP|EUC_CN|EUC_KR|EUC_TW|UNICODE|MULE_INTERNAL|LATIN1|LATIN2|LATIN3|LATIN4|LATIN5|KOI8|WIN|ALT|SJIS|BIG5|WIN1250) + SQL_ASCII|EUC_JP|EUC_CN|EUC_KR|EUC_TW|UNICODE|MULE_INTERNAL|LATIN1|LATIN2|LATIN3|LATIN4|LATIN5|KOI8|WIN|ALT) # ok ;; *) @@ -250,7 +250,7 @@ AC_ARG_ENABLE(multibyte, SQL_ASCII, EUC_JP, EUC_CN, EUC_KR, EUC_TW, UNICODE, MULE_INTERNAL, LATIN1, LATIN2, LATIN3, LATIN4, LATIN5, - KOI8, WIN, ALT, SJIS, BIG5, WIN1250 + KOI8, WIN, ALT Or do not specify an argument to the option to use the default.]) esac MULTIBYTE=$enableval