svn commit: r384841 - head/www/aria2/files
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Mon Apr 27 14:57:49 UTC 2015
Author: sunpoet
Date: Mon Apr 27 14:57:48 2015
New Revision: 384841
URL: https://svnweb.freebsd.org/changeset/ports/384841
Log:
- Fix build on 9.x (OpenSSL 0.9.8)
MFH: 2015Q2
Added:
head/www/aria2/files/patch-src-LibsslTLSContext.cc (contents, props changed)
Added: head/www/aria2/files/patch-src-LibsslTLSContext.cc
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/www/aria2/files/patch-src-LibsslTLSContext.cc Mon Apr 27 14:57:48 2015 (r384841)
@@ -0,0 +1,23 @@
+--- src/LibsslTLSContext.cc.orig 2015-02-23 14:34:01 UTC
++++ src/LibsslTLSContext.cc
+@@ -103,14 +103,20 @@ OpenSSLTLSContext::OpenSSLTLSContext(TLS
+
+ long ver_opts = 0;
+ switch(minVer) {
++#ifdef SSL_OP_NO_TLSv1_1
+ case TLS_PROTO_TLS12:
+ ver_opts |= SSL_OP_NO_TLSv1_1;
++#endif // SSL_OP_NO_TLSv1_1
+ // fall through
++#ifdef SSL_OP_NO_TLSv1
+ case TLS_PROTO_TLS11:
+ ver_opts |= SSL_OP_NO_TLSv1;
++#endif // SSL_OP_NO_TLSv1
+ // fall through
++#ifdef SSL_OP_NO_SSLv3
+ case TLS_PROTO_TLS10:
+ ver_opts |= SSL_OP_NO_SSLv3;
++#endif // SSL_OP_NO_SSLv3
+ default:
+ break;
+ };
More information about the svn-ports-all
mailing list