mirror of
https://github.com/MariaDB/server.git
synced 2026-05-08 08:04:29 +02:00
character_sets.m4:
--with-uca configure.in argument. The rest of the changes are pending from 4.1 tree config/ac-macros/character_sets.m4: --with-uca configure.in argument. The rest of the changes are pending from 4.1 tree
This commit is contained in:
parent
6e0691f54f
commit
b95c2d3578
1 changed files with 17 additions and 0 deletions
|
|
@ -405,3 +405,20 @@ AC_DEFINE_UNQUOTED([MYSQL_DEFAULT_CHARSET_NAME], ["$default_charset"],
|
||||||
[Define the default charset name])
|
[Define the default charset name])
|
||||||
AC_DEFINE_UNQUOTED([MYSQL_DEFAULT_COLLATION_NAME], ["$default_collation"],
|
AC_DEFINE_UNQUOTED([MYSQL_DEFAULT_COLLATION_NAME], ["$default_collation"],
|
||||||
[Define the default charset name])
|
[Define the default charset name])
|
||||||
|
|
||||||
|
# Shall we build the UCA-based Unicode collations
|
||||||
|
AC_ARG_WITH(uca,
|
||||||
|
[ --without-uca Skip building of the national Unicode collations.],
|
||||||
|
[with_uca=$withval],
|
||||||
|
[with_uca=yes]
|
||||||
|
)
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([whether to compile national Unicode collations])
|
||||||
|
|
||||||
|
if test "$with_uca" = "yes"
|
||||||
|
then
|
||||||
|
AC_MSG_RESULT(yes)
|
||||||
|
AC_DEFINE([HAVE_UCA_COLLATIONS], [1], [national Unicode collations])
|
||||||
|
else
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
fi
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue