Enable use of OpenSSL in the bundled copy of libcurl.

The default is off, which makes calls such as FILE(DOWNLOAD ...) from HTTPS
locations fail.

PR:		ports/187374
MFH:		2014Q1
This commit is contained in:
Raphael Kubo da Costa 2014-03-08 23:16:42 +00:00
parent e720ee1a68
commit e5e2a1be3c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=347541
2 changed files with 5 additions and 1 deletions

View File

@ -3,7 +3,7 @@
PORTNAME= cmake
PORTVERSION= 2.8.12.1
PORTREVISION?= 2
PORTREVISION?= 3
CATEGORIES= devel
MASTER_SITES= http://downloads.cmake.org/files/v2.8/

View File

@ -4,3 +4,7 @@
# devel/qt4-corelib is not).
# See https://mail.kde.org/pipermail/kde-freebsd/2013-July/015703.html
set(BUILD_TESTING OFF CACHE BOOL "Build the testing tree.")
# Explicitly enable use of OpenSSL in the bundled copy of libcurl, as it
# defaults to off. See ports/187374.
set(CMAKE_USE_OPENSSL ON CACHE BOOL "Use OpenSSL code with curl.")