Date: Wed, 13 Jan 2016 17:32:26 +0000 (UTC) From: Bernard Spil <brnrd@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r406061 - branches/2016Q1/security/openssl Message-ID: <201601131732.u0DHWQTe043630@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: brnrd Date: Wed Jan 13 17:32:26 2016 New Revision: 406061 URL: https://svnweb.freebsd.org/changeset/ports/406061 Log: MFH: r406060 security/openssl: Fix No-SSLv3 option - This change adds `no-ssl3-method` to config args - Bump portrevision Testing with security/openssl buillt with SSL3 option disabled [1] revealed that the openssl binary and the libraries still support SSLv3 connections and methods. With the added no-ssl3-method argument passed to the config script, the binary no longer supports the -ssl3 option and ports requiring SSLv3 methods fail on undefined references to methods. PR: 203693 [1] Reviewed by: koobs (mentor), feld (mentor, ports-secteam), dinoex (maintainer) Approved by: koobs (mentor), feld (mentor, ports-secteam) Approved by: ports-secteam Differential Revision: D4924 Modified: branches/2016Q1/security/openssl/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/security/openssl/Makefile ============================================================================== --- branches/2016Q1/security/openssl/Makefile Wed Jan 13 17:29:12 2016 (r406060) +++ branches/2016Q1/security/openssl/Makefile Wed Jan 13 17:32:26 2016 (r406061) @@ -4,7 +4,7 @@ PORTNAME= openssl PORTVERSION= 1.0.2 DISTVERSIONSUFFIX= e -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= security devel MASTER_SITES= http://www.openssl.org/source/ \ ftp://ftp.openssl.org/source/ \ @@ -129,7 +129,7 @@ EXTRACONFIGURE+= no-ssl2 .if ${PORT_OPTIONS:MSSL3} EXTRACONFIGURE+= enable-ssl3 .else -EXTRACONFIGURE+= no-ssl3 +EXTRACONFIGURE+= no-ssl3 no-ssl3-method .endif .if ${PORT_OPTIONS:MMD2}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601131732.u0DHWQTe043630>