diff options
author | Monty <monty@mariadb.org> | 2020-01-30 15:56:40 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2020-03-24 21:00:03 +0200 |
commit | 3775e7cc001de06aa6f5de9c90b8a1fc1724c66c (patch) | |
tree | e463b8bf9ecf97d18579ffa9777d6070b1e7dbf1 /BUILD | |
parent | 120b73a0692511004bce1e4b4225ad86c051231a (diff) | |
download | mariadb-git-3775e7cc001de06aa6f5de9c90b8a1fc1724c66c.tar.gz |
Fixed that file_key_management works with BUILD scripts
Diffstat (limited to 'BUILD')
-rwxr-xr-x | BUILD/SETUP.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/BUILD/SETUP.sh b/BUILD/SETUP.sh index 7397fbbd673..82262098d7a 100755 --- a/BUILD/SETUP.sh +++ b/BUILD/SETUP.sh @@ -209,10 +209,11 @@ then base_configs="$base_configs --with-libedit" fi -max_no_embedded_configs="$SSL_LIBRARY --with-plugins=max" -max_no_qc_configs="$SSL_LIBRARY --with-plugins=max --without-query-cache" -max_configs="$SSL_LIBRARY --with-plugins=max --with-embedded-server --with-libevent --without-plugin=plugin_file_key_management --with-plugin-rocksdb=dynamic --with-plugin-test_sql_discovery=DYNAMIC" -all_configs="$SSL_LIBRARY --with-plugins=max --with-embedded-server --with-innodb_plugin --with-libevent" +max_plugins="--with-plugins=max" +max_no_embedded_configs="$SSL_LIBRARY $max_plugins" +max_no_qc_configs="$SSL_LIBRARY $max_plugins --without-query-cache" +max_configs="$SSL_LIBRARY $max_plugins --with-embedded-server --with-libevent --with-plugin-rocksdb=dynamic --with-plugin-test_sql_discovery=DYNAMIC --with-plugin-file_key_management=DYNAMIC" +all_configs="$SSL_LIBRARY $max_plugins --with-embedded-server --with-innodb_plugin --with-libevent" # # CPU and platform specific compilation flags. |