]> granicus.if.org Git - postgresql/commitdiff
Fix configure.in. Remove SJIS, BIG5, WIN1250 from the selection list of
authorTatsuo Ishii <ishii@postgresql.org>
Fri, 31 Mar 2000 13:04:31 +0000 (13:04 +0000)
committerTatsuo Ishii <ishii@postgresql.org>
Fri, 31 Mar 2000 13:04:31 +0000 (13:04 +0000)
multibyte encodings. These cannot be used as a backend/database encoding
(OK to use as a client encoding).

src/configure.in

index cb674e691cc41386aa43c971acc67493321492eb..f5baf2230000b03c963230e03d10618172a5699b 100644 (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