Commit 6515bb71 authored by bar@mysql.com's avatar bar@mysql.com

configure.in:

  --with-charset=binary didn't really work after my previous change.
parent b42fc1e7
......@@ -2407,6 +2407,8 @@ do
AC_DEFINE(USE_MB)
AC_DEFINE(USE_MB_IDENT)
;;
binary)
;;
cp1250)
AC_DEFINE(HAVE_CHARSET_cp1250)
;;
......@@ -2533,6 +2535,10 @@ case $default_charset in
default_charset_default_collation="big5_chinese_ci"
default_charset_collations="big5_chinese_ci big5_bin"
;;
binary)
default_charset_default_collation="binary"
default_charset_collations="binary"
;;
cp1250)
default_charset_default_collation="cp1250_general_ci"
default_charset_collations="cp1250_general_ci cp1250_czech_ci cp1250_bin"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment