diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 1999-03-24 06:20:38 +0000 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 1999-03-24 06:20:38 +0000 |
commit | 61ce9cd366a5a874ea2cc2f777f8d69d35fa271d (patch) | |
tree | c174a8a37a18dc95252fd0a7e1b4cb5dfecc52c0 | |
parent | 5e5ed8fdd0f8d37d8515cd54ce16fd8bcff2e696 (diff) | |
download | postgresql-61ce9cd366a5a874ea2cc2f777f8d69d35fa271d.tar.gz postgresql-61ce9cd366a5a874ea2cc2f777f8d69d35fa271d.zip |
Add KOI8/WIN/ALT to the multi-byte encoding selections
-rwxr-xr-x | src/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/configure b/src/configure index fe6195a1d4b..74bc7633514 100755 --- a/src/configure +++ b/src/configure @@ -853,11 +853,11 @@ if test "${with_mb+set}" = set; then withval="$with_mb" case "$withval" in - EUC_JP|EHC_CN|EUC_KR|EUC_TW|UNICODE|MULE_INTERNAL|LATIN1|LATIN2|LATIN3|LATIN4|LATIN5) + EUC_JP|EHC_CN|EUC_KR|EUC_TW|UNICODE|MULE_INTERNAL|LATIN1|LATIN2|LATIN3|LATIN4|LATIN5|KOI8|WIN|ALT) echo "$ac_t"""enabled with $withval"" 1>&6 ;; *) - { echo "configure: error: *** You must supply an argument to the --with-mb option one of EUC_JP,EHC_CN,EUC_KR,EUC_TW,UNICODE,MULE_INTERNAL,LATIN1-5" 1>&2; exit 1; } + { echo "configure: error: *** You must supply an argument to the --with-mb option one of EUC_JP,EHC_CN,EUC_KR,EUC_TW,UNICODE,MULE_INTERNAL,LATIN1-5,KOI8,WIN,ALT" 1>&2; exit 1; } ;; esac MULTIBYTE="$withval" |