mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
b9f486cd02
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.
9 lines
203 B
Bash
Executable file
9 lines
203 B
Bash
Executable file
#! /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"
|