View | Details | Raw Unified | Return to bug 207502
Collapse All | Expand All

(-)www/aria2/Makefile (-2 / +2 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	aria2
4
PORTNAME=	aria2
5
PORTVERSION=	1.19.3
5
PORTVERSION=	1.20.0
6
CATEGORIES=	www
6
CATEGORIES=	www
7
MASTER_SITES=	https://github.com/tatsuhiro-t/${PORTNAME}/releases/download/release-${PORTVERSION}/
7
MASTER_SITES=	https://github.com/tatsuhiro-t/${PORTNAME}/releases/download/release-${PORTVERSION}/
8
8
Lines 50-56 Link Here
50
NLS_USES=		gettext localbase
50
NLS_USES=		gettext localbase
51
SQLITE_CONFIGURE_OFF=	--without-sqlite3
51
SQLITE_CONFIGURE_OFF=	--without-sqlite3
52
SQLITE_CONFIGURE_ON=	--with-sqlite3
52
SQLITE_CONFIGURE_ON=	--with-sqlite3
53
SQLITE_USE=		SQLITE=yes
53
SQLITE_USE=		USES+=sqlite
54
54
55
ARIA2_DISK_CACHE?=	16M
55
ARIA2_DISK_CACHE?=	16M
56
56
(-)www/aria2/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (aria2-1.19.3.tar.xz) = 6abcc6c28437a519cc1016736cb446ed38db360cb9828c4a7105526ea82299e3
1
SHA256 (aria2-1.20.0.tar.xz) = bf96344b6fee3aada0881ca008b077ea2c5dd820e8f8d693329481ecc7ff8fd0
2
SIZE (aria2-1.19.3.tar.xz) = 1406904
2
SIZE (aria2-1.20.0.tar.xz) = 1410880
(-)www/aria2/files/patch-src-DownloadEngine.cc (-1 / +1 lines)
Lines 1-4 Link Here
1
--- src/DownloadEngine.cc.orig	2014-07-22 14:33:38 UTC
1
--- src/DownloadEngine.cc.orig	2016-02-15 15:36:34 UTC
2
+++ src/DownloadEngine.cc
2
+++ src/DownloadEngine.cc
3
@@ -37,6 +37,7 @@
3
@@ -37,6 +37,7 @@
4
 #include <signal.h>
4
 #include <signal.h>
(-)www/aria2/files/patch-src-LibsslTLSContext.cc (-5 / +5 lines)
Lines 1-19 Link Here
1
--- src/LibsslTLSContext.cc.orig	2015-02-23 14:34:01 UTC
1
--- src/LibsslTLSContext.cc.orig	2016-02-15 15:36:34 UTC
2
+++ src/LibsslTLSContext.cc
2
+++ src/LibsslTLSContext.cc
3
@@ -103,14 +103,20 @@ OpenSSLTLSContext::OpenSSLTLSContext(TLS
3
@@ -112,14 +112,20 @@ OpenSSLTLSContext::OpenSSLTLSContext(TLS
4
 
4
 
5
   long ver_opts = 0;
5
   long ver_opts = 0;
6
   switch(minVer) {
6
   switch (minVer) {
7
+#ifdef SSL_OP_NO_TLSv1_1
7
+#ifdef SSL_OP_NO_TLSv1_1
8
   case TLS_PROTO_TLS12:
8
   case TLS_PROTO_TLS12:
9
     ver_opts |= SSL_OP_NO_TLSv1_1;
9
     ver_opts |= SSL_OP_NO_TLSv1_1;
10
+#endif // SSL_OP_NO_TLSv1_1
10
+#endif // SSL_OP_NO_TLSv1_1
11
     // fall through
11
   // fall through
12
+#ifdef SSL_OP_NO_TLSv1
12
+#ifdef SSL_OP_NO_TLSv1
13
   case TLS_PROTO_TLS11:
13
   case TLS_PROTO_TLS11:
14
     ver_opts |= SSL_OP_NO_TLSv1;
14
     ver_opts |= SSL_OP_NO_TLSv1;
15
+#endif // SSL_OP_NO_TLSv1
15
+#endif // SSL_OP_NO_TLSv1
16
     // fall through
16
   // fall through
17
+#ifdef SSL_OP_NO_SSLv3
17
+#ifdef SSL_OP_NO_SSLv3
18
   case TLS_PROTO_TLS10:
18
   case TLS_PROTO_TLS10:
19
     ver_opts |= SSL_OP_NO_SSLv3;
19
     ver_opts |= SSL_OP_NO_SSLv3;

Return to bug 207502