svn commit: r347541 - in head/devel/cmake: . files
Raphael Kubo da Costa
rakuco at FreeBSD.org
Sat Mar 8 23:16:43 UTC 2014
Author: rakuco
Date: Sat Mar 8 23:16:42 2014
New Revision: 347541
URL: http://svnweb.freebsd.org/changeset/ports/347541
QAT: https://qat.redports.org/buildarchive/r347541/
Log:
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
Modified:
head/devel/cmake/Makefile
head/devel/cmake/files/InitialCache.cmake
Modified: head/devel/cmake/Makefile
==============================================================================
--- head/devel/cmake/Makefile Sat Mar 8 22:51:16 2014 (r347540)
+++ head/devel/cmake/Makefile Sat Mar 8 23:16:42 2014 (r347541)
@@ -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/
Modified: head/devel/cmake/files/InitialCache.cmake
==============================================================================
--- head/devel/cmake/files/InitialCache.cmake Sat Mar 8 22:51:16 2014 (r347540)
+++ head/devel/cmake/files/InitialCache.cmake Sat Mar 8 23:16:42 2014 (r347541)
@@ -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.")
More information about the svn-ports-all
mailing list