svn commit: r410981 - head/www/aria2/files

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sun Mar 13 14:55:55 UTC 2016


Author: sunpoet
Date: Sun Mar 13 14:55:54 2016
New Revision: 410981
URL: https://svnweb.freebsd.org/changeset/ports/410981

Log:
  - Fix build on 9.x (OpenSSL 0.9.8)

Added:
  head/www/aria2/files/patch-src-LibsslTLSContext.cc
     - copied, changed from r384841, head/www/aria2/files/patch-src-LibsslTLSContext.cc

Copied and modified: head/www/aria2/files/patch-src-LibsslTLSContext.cc (from r384841, head/www/aria2/files/patch-src-LibsslTLSContext.cc)
==============================================================================
--- head/www/aria2/files/patch-src-LibsslTLSContext.cc	Mon Apr 27 14:57:48 2015	(r384841, copy source)
+++ head/www/aria2/files/patch-src-LibsslTLSContext.cc	Sun Mar 13 14:55:54 2016	(r410981)
@@ -1,19 +1,19 @@
 --- src/LibsslTLSContext.cc.orig	2015-02-23 14:34:01 UTC
 +++ src/LibsslTLSContext.cc
-@@ -103,14 +103,20 @@ OpenSSLTLSContext::OpenSSLTLSContext(TLS
+@@ -112,14 +112,20 @@ OpenSSLTLSContext::OpenSSLTLSContext(TLS
  
    long ver_opts = 0;
-   switch(minVer) {
+   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
+   // fall through
 +#ifdef SSL_OP_NO_TLSv1
    case TLS_PROTO_TLS11:
      ver_opts |= SSL_OP_NO_TLSv1;
 +#endif // SSL_OP_NO_TLSv1
-     // fall through
+   // fall through
 +#ifdef SSL_OP_NO_SSLv3
    case TLS_PROTO_TLS10:
      ver_opts |= SSL_OP_NO_SSLv3;


More information about the svn-ports-all mailing list