svn commit: r364585 - head/security/openssl
Dirk Meyer
dinoex at FreeBSD.org
Mon Aug 11 04:27:54 UTC 2014
Author: dinoex
Date: Mon Aug 11 04:27:53 2014
New Revision: 364585
URL: http://svnweb.freebsd.org/changeset/ports/364585
QAT: https://qat.redports.org/buildarchive/r364585/
Log:
- new options SSL2 SSL3
Suggested by: Velcro Leaf
Modified:
head/security/openssl/Makefile
Modified: head/security/openssl/Makefile
==============================================================================
--- head/security/openssl/Makefile Mon Aug 11 02:43:29 2014 (r364584)
+++ head/security/openssl/Makefile Mon Aug 11 04:27:53 2014 (r364585)
@@ -21,8 +21,8 @@ COMMENT= SSL and crypto library
CONFLICTS?= libressl-*
-OPTIONS_DEFINE= SHARED THREADS I386 SSE2 ASM PADLOCK ZLIB SCTP MD2 RC5 RFC3779 GMP DOCS
-OPTIONS_DEFAULT=SHARED THREADS SSE2 ASM ZLIB SCTP MD2
+OPTIONS_DEFINE= SHARED THREADS I386 SSE2 ASM PADLOCK ZLIB SCTP SSL2 SSL3 MD2 RC5 RFC3779 GMP DOCS
+OPTIONS_DEFAULT=SHARED THREADS SSE2 ASM ZLIB SCTP SSL2 SSL3 MD2
.for a in amd64 ia64
OPTIONS_DEFINE_${a}= EC
OPTIONS_DEFAULT_${a}= EC
@@ -41,6 +41,8 @@ PADLOCK_DESC?= VIA Padlock support
SHARED_DESC?= build of shared libs
ZLIB_DESC?= zlib compression support
SCTP_DESC?= SCTP protocol support
+SSL2_DESC?= SSLv2 protocol support
+SSL3_DESC?= SSLv3 protocol support
MD2_DESC?= MD2 hash (obsolete)
RC5_DESC?= RC5 cipher (patented)
RFC3779_DESC?= RFC3779 support
@@ -137,6 +139,18 @@ EXTRACONFIGURE+= sctp
EXTRACONFIGURE+= no-sctp
.endif
+.if ${PORT_OPTIONS:MSSL2}
+EXTRACONFIGURE+= enable-ssl2
+.else
+EXTRACONFIGURE+= no-ssl2
+.endif
+
+.if ${PORT_OPTIONS:MSSL3}
+EXTRACONFIGURE+= enable-ssl3
+.else
+EXTRACONFIGURE+= no-ssl3
+.endif
+
.if ${PORT_OPTIONS:MMD2}
EXTRACONFIGURE+= enable-md2
.else
More information about the svn-ports-head
mailing list