mirror of
https://github.com/postgres/postgres.git
synced 2025-05-31 03:21:24 +03:00
Allow --with-mb=SQL_ASCII
This commit is contained in:
parent
9c95f8c9b2
commit
0022f21dcb
4
src/configure
vendored
4
src/configure
vendored
@ -858,11 +858,11 @@ if test "${with_mb+set}" = set; then
|
|||||||
withval="$with_mb"
|
withval="$with_mb"
|
||||||
|
|
||||||
case "$withval" in
|
case "$withval" in
|
||||||
EUC_JP|EUC_CN|EUC_KR|EUC_TW|UNICODE|MULE_INTERNAL|LATIN1|LATIN2|LATIN3|LATIN4|LATIN5|KOI8|WIN|ALT)
|
SQL_ASCII|EUC_JP|EUC_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 "$ac_t"""enabled with $withval"" 1>&6
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
{ echo "configure: 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" 1>&2; exit 1; }
|
{ echo "configure: error: *** You must supply an argument to the --with-mb option one of SQL_ASCII,EUC_JP,EUC_CN,EUC_KR,EUC_TW,UNICODE,MULE_INTERNAL,LATIN1-5,KOI8,WIN,ALT" 1>&2; exit 1; }
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
MULTIBYTE="$withval"
|
MULTIBYTE="$withval"
|
||||||
|
@ -238,11 +238,11 @@ AC_ARG_WITH(mb,
|
|||||||
[ --with-mb=<encoding> enable multi-byte support ],
|
[ --with-mb=<encoding> enable multi-byte support ],
|
||||||
[
|
[
|
||||||
case "$withval" in
|
case "$withval" in
|
||||||
EUC_JP|EUC_CN|EUC_KR|EUC_TW|UNICODE|MULE_INTERNAL|LATIN1|LATIN2|LATIN3|LATIN4|LATIN5|KOI8|WIN|ALT)
|
SQL_ASCII|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_RESULT("enabled with $withval")
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
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])
|
AC_MSG_ERROR([*** You must supply an argument to the --with-mb option one of SQL_ASCII,EUC_JP,EUC_CN,EUC_KR,EUC_TW,UNICODE,MULE_INTERNAL,LATIN1-5,KOI8,WIN,ALT])
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
MULTIBYTE="$withval"
|
MULTIBYTE="$withval"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user