diff options
author | unknown <joerg@mysql.com> | 2005-04-08 13:56:48 +0200 |
---|---|---|
committer | unknown <joerg@mysql.com> | 2005-04-08 13:56:48 +0200 |
commit | b9f486cd022dc67e5118dfdca38052c7b13c10fa (patch) | |
tree | df8ad7b8e3c1738beeeff583617e6785687bfc00 /BUILD | |
parent | 0344bf166534fd56095220f06960172937746327 (diff) | |
download | mariadb-git-b9f486cd022dc67e5118dfdca38052c7b13c10fa.tar.gz |
Add missing parts for the "Cybozu" custom build, to avoid future manual patches.
configure.in:
Normally, 'configure' does only support "case-insensitive" collations for UTF-8 character sets.
However, a certain customer requires builds with a "case-sensitive" collation: 'utf8_general_cs'.
In order to do custom builds without manual patches, this value gets special handling in 'configure'.
Also, when it is given, the CPP symbol enabling the additional code is set.
mysys/charset-def.c:
Rename the CPP symbol needed for "UTF8-case-sensitive" collation from customer name to function.
strings/ctype-utf8.c:
Rename the CPP symbol needed for "UTF8-case-sensitive" collation from customer name to function.
Diffstat (limited to 'BUILD')
-rwxr-xr-x | BUILD/compile-pentium-cybozu | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/BUILD/compile-pentium-cybozu b/BUILD/compile-pentium-cybozu new file mode 100755 index 00000000000..841635985a1 --- /dev/null +++ b/BUILD/compile-pentium-cybozu @@ -0,0 +1,9 @@ +#! /bin/sh + +path=`dirname $0` +. "$path/SETUP.sh" + +extra_flags="$pentium_cflags $fast_cflags -g" +extra_configs="$pentium_configs --with-charset=utf8 --with-collation=utf8_general_cs" + +. "$path/FINISH.sh" |