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).
This commit is contained in:
Tatsuo Ishii 2000-03-31 13:04:31 +00:00
parent 472c5196f4
commit 82e6e8c74e
1 changed files with 2 additions and 2 deletions

View File

@ -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