summaryrefslogtreecommitdiff
path: root/cmake/configure.pl
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2015-10-09 13:02:55 +0300
committerMonty <monty@mariadb.org>2015-10-09 13:02:55 +0300
commit602c803bd9c80e88d4e2a611422ad2da0033a111 (patch)
tree8a1ce176e7a461821fa5cc52e838206a2e4b1cf4 /cmake/configure.pl
parentc696fc74cf72f240a999406fa229db5111198f62 (diff)
downloadmariadb-git-602c803bd9c80e88d4e2a611422ad2da0033a111.tar.gz
Don't enable file_key_management_plugin by default (as this gives warnings in the log)
Better warning from file_key_management plugin if filename is not given
Diffstat (limited to 'cmake/configure.pl')
-rw-r--r--cmake/configure.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/configure.pl b/cmake/configure.pl
index b528cda70dc..d9ca3f34e59 100644
--- a/cmake/configure.pl
+++ b/cmake/configure.pl
@@ -135,7 +135,7 @@ foreach my $option (@ARGV)
$cmakeargs = $cmakeargs." -DWITH_EXTRA_CHARSETS=".$charsets;
next;
}
- if($option =~ /without-plugin=/)
+ if($option =~ /without-plugin=/ || $option =~ /without-plugin-/)
{
$cmakeargs = $cmakeargs." -DWITHOUT_".uc(substr($option,15))."=1";
next;