summaryrefslogtreecommitdiff
path: root/cmake/configure.pl
diff options
context:
space:
mode:
authorSergey Petrunya <psergey@askmonty.org>2013-08-07 17:21:37 +0400
committerSergey Petrunya <psergey@askmonty.org>2013-08-07 17:21:37 +0400
commita3d79f2e58562c7b50d50827a0149234c225ea43 (patch)
treec266edef9eaf41a612e77972163d3d8eb0d280ba /cmake/configure.pl
parent8e36dde7e1f149d8973fe14d8288e678d1ba9b61 (diff)
parenta765e035a0c40ee04df42fba5c02484e83d31483 (diff)
downloadmariadb-git-a3d79f2e58562c7b50d50827a0149234c225ea43.tar.gz
Merge 10.0-serg -> 10.0
Diffstat (limited to 'cmake/configure.pl')
-rw-r--r--cmake/configure.pl20
1 files changed, 20 insertions, 0 deletions
diff --git a/cmake/configure.pl b/cmake/configure.pl
index d5c0b9b061a..a71795a3bc8 100644
--- a/cmake/configure.pl
+++ b/cmake/configure.pl
@@ -150,6 +150,16 @@ foreach my $option (@ARGV)
$cmakeargs = $cmakeargs." -DWITH_ZLIB=system";
next;
}
+ if($option =~ /with-libevent=/)
+ {
+ $cmakeargs = $cmakeargs." -DWITH_LIBEVENT=system";
+ next;
+ }
+ if($option =~ /with-libevent/)
+ {
+ $cmakeargs = $cmakeargs." -DWITH_LIBEVENT=bundled";
+ next;
+ }
if($option =~ /with-ssl=/)
{
$cmakeargs = $cmakeargs." -DWITH_SSL=yes";
@@ -237,6 +247,16 @@ foreach my $option (@ARGV)
print("configure.pl : ignoring $option\n");
next;
}
+ if ($option =~ /with-client-ldflags/)
+ {
+ print("configure.pl : ignoring $option\n");
+ next;
+ }
+ if ($option =~ /with-mysqld-ldflags=/)
+ {
+ print("configure.pl : ignoring $option\n");
+ next;
+ }
$option = uc($option);
$option =~ s/-/_/g;