diff options
Diffstat (limited to 'cmake/configure.pl')
-rw-r--r-- | cmake/configure.pl | 4 |
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=/) |