OSDN Git Service

Fix typo in multi-byte encodings (EHC_CN --> EUC_CN)
authorTatsuo Ishii <ishii@postgresql.org>
Mon, 19 Apr 1999 08:46:34 +0000 (08:46 +0000)
committerTatsuo Ishii <ishii@postgresql.org>
Mon, 19 Apr 1999 08:46:34 +0000 (08:46 +0000)
src/configure.in

index 7ba0983..7985527 100644 (file)
@@ -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"