From owner-svn-ports-all@freebsd.org Wed Jan 13 17:29:13 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C9159A805B6; Wed, 13 Jan 2016 17:29:13 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9807817C7; Wed, 13 Jan 2016 17:29:13 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0DHTCW3040858; Wed, 13 Jan 2016 17:29:12 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0DHTCQF040857; Wed, 13 Jan 2016 17:29:12 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201601131729.u0DHTCQF040857@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Wed, 13 Jan 2016 17:29:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r406060 - head/security/openssl X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jan 2016 17:29:13 -0000 Author: brnrd Date: Wed Jan 13 17:29:12 2016 New Revision: 406060 URL: https://svnweb.freebsd.org/changeset/ports/406060 Log: 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 MFH: 2016Q1 Differential Revision: D4924 Modified: head/security/openssl/Makefile Modified: head/security/openssl/Makefile ============================================================================== --- head/security/openssl/Makefile Wed Jan 13 17:11:09 2016 (r406059) +++ head/security/openssl/Makefile Wed Jan 13 17:29:12 2016 (r406060) @@ -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}