]> granicus.if.org Git - postgresql/commitdiff
Fix MULTIBYTE typo.
authorBruce Momjian <bruce@momjian.us>
Sun, 2 Aug 1998 00:21:39 +0000 (00:21 +0000)
committerBruce Momjian <bruce@momjian.us>
Sun, 2 Aug 1998 00:21:39 +0000 (00:21 +0000)
src/configure.in

index 08bfe89d6816f750d835058cae05756411b1fa7e..c582028a7da211e7e6f10260725ee2b9464727b4 100644 (file)
@@ -190,20 +190,19 @@ AC_ARG_ENABLE(
    AC_MSG_RESULT(disabled)
 )
 
-AC_MSG_CHECKING(setting MULTIBYE)
+AC_MSG_CHECKING(setting MULTIBYTE)
 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)
-            MULTIBYTE="$withval";
            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])
          ;;
        esac
-       MULTIBYTEB="$withval"
+       MULTIBYTE="$withval"
     ],
     AC_MSG_RESULT("disabled")
 )