summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTatsuo Ishii <ishii@postgresql.org>2000-03-31 13:04:31 +0000
committerTatsuo Ishii <ishii@postgresql.org>2000-03-31 13:04:31 +0000
commit82e6e8c74e30fbf3be9a7f8694193e2f734fe956 (patch)
treec6ad2ad508321496b77bef62cf75ea281706f288 /src
parent472c5196f444d1c0ea68a641e7cb11c255ca2047 (diff)
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).
Diffstat (limited to 'src')
-rw-r--r--src/configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/configure.in b/src/configure.in
index cb674e691cc..f5baf223000 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