diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 1999-03-24 04:22:13 +0000 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 1999-03-24 04:22:13 +0000 |
commit | 5e5ed8fdd0f8d37d8515cd54ce16fd8bcff2e696 (patch) | |
tree | 907a5e65c5e5c11d5e7f78ae7214dff31a8d6ad1 /src | |
parent | 344dfc0b0f83fdeb1dbbb83e308d888abc9b2ad0 (diff) | |
download | postgresql-5e5ed8fdd0f8d37d8515cd54ce16fd8bcff2e696.tar.gz postgresql-5e5ed8fdd0f8d37d8515cd54ce16fd8bcff2e696.zip |
Add KOI8/WIN/ALT to the multi-byte encoding selections
Diffstat (limited to 'src')
-rw-r--r-- | src/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/configure.in b/src/configure.in index c7f049749ee..091346153e4 100644 --- a/src/configure.in +++ b/src/configure.in @@ -238,11 +238,11 @@ AC_ARG_WITH(mb, [ --with-mb=<encoding> enable multi-byte support ], [ 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) AC_MSG_RESULT("enabled with $withval") ;; *) - AC_MSG_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]) + AC_MSG_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]) ;; esac MULTIBYTE="$withval" |