svn commit: r347543 - in branches/2014Q1/devel/cmake: . files

Raphael Kubo da Costa rakuco at FreeBSD.org
Sat Mar 8 23:35:14 UTC 2014


Author: rakuco
Date: Sat Mar  8 23:35:13 2014
New Revision: 347543
URL: http://svnweb.freebsd.org/changeset/ports/347543
QAT: https://qat.redports.org/buildarchive/r347543/

Log:
  MFH: r347541
  
  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
  Approved by:	portmgr (miwi)

Modified:
  branches/2014Q1/devel/cmake/Makefile
  branches/2014Q1/devel/cmake/files/InitialCache.cmake
Directory Properties:
  branches/2014Q1/   (props changed)

Modified: branches/2014Q1/devel/cmake/Makefile
==============================================================================
--- branches/2014Q1/devel/cmake/Makefile	Sat Mar  8 23:24:34 2014	(r347542)
+++ branches/2014Q1/devel/cmake/Makefile	Sat Mar  8 23:35:13 2014	(r347543)
@@ -3,6 +3,7 @@
 
 PORTNAME=	cmake
 PORTVERSION=	2.8.12.1
+PORTREVISION?=	1
 CATEGORIES=	devel
 MASTER_SITES=	http://downloads.cmake.org/files/v2.8/
 

Modified: branches/2014Q1/devel/cmake/files/InitialCache.cmake
==============================================================================
--- branches/2014Q1/devel/cmake/files/InitialCache.cmake	Sat Mar  8 23:24:34 2014	(r347542)
+++ branches/2014Q1/devel/cmake/files/InitialCache.cmake	Sat Mar  8 23:35:13 2014	(r347543)
@@ -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-branches mailing list