summaryrefslogtreecommitdiff
path: root/config/ac-macros/character_sets.m4
diff options
context:
space:
mode:
authorunknown <bar@mysql.com>2007-03-27 15:06:41 +0500
committerunknown <bar@mysql.com>2007-03-27 15:06:41 +0500
commit2aa89ffb8bd64e68e515971f07bd55adbdcecdc2 (patch)
tree7567c66b128d70e2b50b01da0d6287c47890cbb1 /config/ac-macros/character_sets.m4
parent5c9e19f79652acf05ae659d1e62674828b80df75 (diff)
downloadmariadb-git-2aa89ffb8bd64e68e515971f07bd55adbdcecdc2.tar.gz
Bug#22378 Make error, strings/ctype-utf8.c, uni_plane undeclared
- Fixing utf8_general_cs according to recent changes. - Compiling utf8_general_cs in pentium-debug-max configuration to avoid these problems in the future. BUILD/compile-pentium-debug-max: Enable compiling of experimental collations in compile-pentium-debug-max config/ac-macros/character_sets.m4: Adding hidden flag --with-experimental-collations, not seen in "configure --help". strings/ctype-utf8.c: Compilation failure changes: catching up with previous character set changes: - uni_plane is now not a global variables - adding new parameter into my_strnncollsp_utf8_cs - adding my_strnxfrm_len into MY_COLLATION_HANDLER for utf8_general_cs
Diffstat (limited to 'config/ac-macros/character_sets.m4')
-rw-r--r--config/ac-macros/character_sets.m413
1 files changed, 13 insertions, 0 deletions
diff --git a/config/ac-macros/character_sets.m4 b/config/ac-macros/character_sets.m4
index 1ab6e7dd780..8c3e8ca73b7 100644
--- a/config/ac-macros/character_sets.m4
+++ b/config/ac-macros/character_sets.m4
@@ -429,3 +429,16 @@ then
else
AC_MSG_RESULT(no)
fi
+
+
+# Shall we build experimental collations
+AC_ARG_WITH(experimental-collations,
+ [],
+ [with_exp_coll=$withval],
+ [with_exp_coll=no]
+)
+
+if test "$with_exp_coll" = "yes"
+then
+ AC_DEFINE([HAVE_UTF8_GENERAL_CS], [1], [certain Japanese customer])
+fi