Commit 60c7cc87 authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

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.
parent 5994f284
...@@ -130,12 +130,12 @@ foreach my $option (@ARGV) ...@@ -130,12 +130,12 @@ foreach my $option (@ARGV)
} }
if($option =~ /with-ssl=/) if($option =~ /with-ssl=/)
{ {
$cmakeargs = $cmakeargs." -DWITH_SSL=bundled"; $cmakeargs = $cmakeargs." -DWITH_SSL=yes";
next; next;
} }
if($option =~ /with-ssl/) if($option =~ /with-ssl/)
{ {
$cmakeargs = $cmakeargs." -DWITH_SSL=yes"; $cmakeargs = $cmakeargs." -DWITH_SSL=bundled";
next; next;
} }
if($option =~ /prefix=/) if($option =~ /prefix=/)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment