svn commit: r406060 - head/security/openssl

Bernard Spil brnrd at FreeBSD.org
Wed Jan 13 17:29:13 UTC 2016


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}


More information about the svn-ports-head mailing list