aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTatsuo Ishii <ishii@postgresql.org>1999-04-19 08:46:34 +0000
committerTatsuo Ishii <ishii@postgresql.org>1999-04-19 08:46:34 +0000
commitf3a7addb032b7f0ad0784b6a10b7200afaf2cd81 (patch)
tree62ce572116065174772acd753943d7bf7e79a54a
parenta58843b49afdc15c3e319072916a4d9390cf70b1 (diff)
downloadpostgresql-f3a7addb032b7f0ad0784b6a10b7200afaf2cd81.tar.gz
postgresql-f3a7addb032b7f0ad0784b6a10b7200afaf2cd81.zip
Fix typo in multi-byte encodings (EHC_CN --> EUC_CN)
-rw-r--r--src/configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/configure.in b/src/configure.in
index 7ba0983542e..7985527b609 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|KOI8|WIN|ALT)
+ EUC_JP|EUC_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,KOI8,WIN,ALT])
+ AC_MSG_ERROR([*** You must supply an argument to the --with-mb option one of EUC_JP,EUC_CN,EUC_KR,EUC_TW,UNICODE,MULE_INTERNAL,LATIN1-5,KOI8,WIN,ALT])
;;
esac
MULTIBYTE="$withval"