Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 8 Mar 2014 23:16:43 +0000 (UTC)
From:      Raphael Kubo da Costa <rakuco@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r347541 - in head/devel/cmake: . files
Message-ID:  <201403082316.s28NGhOk003829@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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.")



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201403082316.s28NGhOk003829>