summaryrefslogtreecommitdiff
path: root/cmake/configure.pl
diff options
context:
space:
mode:
authorVladislav Vaintroub <wlad@sun.com>2010-02-24 19:51:45 +0100
committerVladislav Vaintroub <wlad@sun.com>2010-02-24 19:51:45 +0100
commit60c7cc878f284b9855cbb110e0aa425f38e5d0e8 (patch)
tree9c33fa429f8823f206f03b06e2e59e3319f50773 /cmake/configure.pl
parent5994f28470c0a2d9fbef329062f482fd0a40243b (diff)
downloadmariadb-git-60c7cc878f284b9855cbb110e0aa425f38e5d0e8.tar.gz
Fix --with-ssl mappping (--with-ssl=dir should be "yes" or
actually "system"), --with-ssl should be "bundled". Fixes error on sol-gcc-x86, where build machine had openssl but not the test box.
Diffstat (limited to 'cmake/configure.pl')
-rw-r--r--cmake/configure.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/configure.pl b/cmake/configure.pl
index 50225a0ef5e..7f21810a8f2 100644
--- a/cmake/configure.pl
+++ b/cmake/configure.pl
@@ -130,12 +130,12 @@ foreach my $option (@ARGV)
}
if($option =~ /with-ssl=/)
{
- $cmakeargs = $cmakeargs." -DWITH_SSL=bundled";
+ $cmakeargs = $cmakeargs." -DWITH_SSL=yes";
next;
}
if($option =~ /with-ssl/)
{
- $cmakeargs = $cmakeargs." -DWITH_SSL=yes";
+ $cmakeargs = $cmakeargs." -DWITH_SSL=bundled";
next;
}
if($option =~ /prefix=/)