diff options
author | unknown <knielsen@knielsen-hq.org> | 2009-10-15 23:52:31 +0200 |
---|---|---|
committer | unknown <knielsen@knielsen-hq.org> | 2009-10-15 23:52:31 +0200 |
commit | 95270c9c434cd35a86403dd696f85bac98e7bf26 (patch) | |
tree | fee58d211564ea0987a5b4de6c57d46d31091960 /BUILD | |
parent | 6aad537a6aa1381b73e87e53a5a17eda4ef1d452 (diff) | |
parent | 75a949fb414f8b3ed851a466d84788085c9dbe42 (diff) | |
download | mariadb-git-95270c9c434cd35a86403dd696f85bac98e7bf26.tar.gz |
Merge with latest MariaDB 5.1 trunk.
Diffstat (limited to 'BUILD')
-rwxr-xr-x | BUILD/SETUP.sh | 1 | ||||
-rwxr-xr-x | BUILD/compile-pentium-debug-max-no-qc | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/BUILD/SETUP.sh b/BUILD/SETUP.sh index 84abf2a461b..418ee799a2c 100755 --- a/BUILD/SETUP.sh +++ b/BUILD/SETUP.sh @@ -172,6 +172,7 @@ local_infile_configs="--enable-local-infile" max_no_embedded_configs="$SSL_LIBRARY --with-plugins=max" +max_no_qc_configs="$SSL_LIBRARY --with-plugins=max --without-query-cache" max_no_ndb_configs="$SSL_LIBRARY --with-plugins=max-no-ndb --with-embedded-server --with-libevent" max_configs="$SSL_LIBRARY --with-plugins=max --with-embedded-server --with-libevent" # Disable NDB in maria max builds diff --git a/BUILD/compile-pentium-debug-max-no-qc b/BUILD/compile-pentium-debug-max-no-qc new file mode 100755 index 00000000000..6407b4b09ad --- /dev/null +++ b/BUILD/compile-pentium-debug-max-no-qc @@ -0,0 +1,10 @@ +#! /bin/sh +# Builds server without query cache support + +path=`dirname $0` +. "$path/SETUP.sh" + +extra_flags="$pentium_cflags $debug_cflags" +extra_configs="$pentium_configs $debug_configs $max_no_qc_configs" + +. "$path/FINISH.sh" |