diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2013-08-07 17:21:37 +0400 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2013-08-07 17:21:37 +0400 |
commit | a3d79f2e58562c7b50d50827a0149234c225ea43 (patch) | |
tree | c266edef9eaf41a612e77972163d3d8eb0d280ba /cmake/configure.pl | |
parent | 8e36dde7e1f149d8973fe14d8288e678d1ba9b61 (diff) | |
parent | a765e035a0c40ee04df42fba5c02484e83d31483 (diff) | |
download | mariadb-git-a3d79f2e58562c7b50d50827a0149234c225ea43.tar.gz |
Merge 10.0-serg -> 10.0
Diffstat (limited to 'cmake/configure.pl')
-rw-r--r-- | cmake/configure.pl | 20 |
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; |