1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Updated configure.pl to new plugin syntax

--with-plugin-name=xxxx
--with-plugins= now uses =AUTO instead of =1
This commit is contained in:
Monty
2015-11-20 09:57:58 +02:00
parent f47124c9ef
commit 981b474753

View File

@@ -125,7 +125,7 @@ foreach my $option (@ARGV)
foreach my $p (@plugins)
{
$p =~ s/-/_/g;
$cmakeargs = $cmakeargs." -DWITH_".uc($p)."=1";
$cmakeargs = $cmakeargs." -DWITH_".uc($p)."=AUTO";
}
next;
}
@@ -137,7 +137,12 @@ foreach my $option (@ARGV)
}
if($option =~ /without-plugin=/ || $option =~ /without-plugin-/)
{
$cmakeargs = $cmakeargs." -DWITHOUT_".uc(substr($option,15))."=1";
$cmakeargs = $cmakeargs." -DPLUGIN_".uc(substr($option,15))."=NO";
next;
}
if($option =~ /with-plugin-(.*)=(.*)/)
{
$cmakeargs = $cmakeargs." -DPLUGIN_".uc($1)."=".uc($2);
next;
}
if($option =~ /with-zlib-dir=bundled/)