summaryrefslogtreecommitdiffstats
path: root/database/mysql/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'database/mysql/BUILD')
-rwxr-xr-xdatabase/mysql/BUILD9
1 files changed, 3 insertions, 6 deletions
diff --git a/database/mysql/BUILD b/database/mysql/BUILD
index 04084d41b0..2b6091287d 100755
--- a/database/mysql/BUILD
+++ b/database/mysql/BUILD
@@ -1,8 +1,9 @@
+OPTS="--with-charset=$MSQL_CHARSET $OPTS" &&
+
if list_find "$MSQL_ENGINES" "none" ; then
OPTS="--without-archive-storage-engine \
--without-berkeley-db \
--without-blackhole-storage-engine \
- --without-csv-storage-engine \
--without-example-storage-engine \
--without-federated-storage-engine \
--without-innodb \
@@ -22,11 +23,6 @@ else
else
OPTS="--without-blackhole-storage-engine $OPTS"
fi &&
- if list_find "$MSQL_ENGINES" "CSV" ; then
- OPTS="--with-csv-storage-engine $OPTS"
- else
- OPTS="--without-csv-storage-engine $OPTS"
- fi &&
if list_find "$MSQL_ENGINES" "EXAMPLE" ; then
OPTS="--with-example-storage-engine $OPTS"
else
@@ -50,6 +46,7 @@ else
fi &&
OPTS="$MSQL_SERVER $MSQL_EMBED $OPTS" &&
+CFLAGS="${CFLAGS//-ffast-math}" &&
create_account mysql &&