aboutsummaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorHannu Nyman <hannu.nyman@iki.fi>2019-01-19 19:15:09 +0200
committerGitHub <noreply@github.com>2019-01-19 19:15:09 +0200
commit7ef1152276ce3b3b7d33dc30fa4673784fdc7477 (patch)
tree5bcd65f47c4a545907ed39186f8600fba4b31058 /net
parent2a4d79be0d07c76c98965bcde0cf435764dbbc72 (diff)
parentd304dab571515641c5f1e7ee04615a67c937dde7 (diff)
Merge pull request #7891 from neheb/ari
aria2: Fix faulty patch
Diffstat (limited to 'net')
-rw-r--r--net/aria2/Makefile2
-rw-r--r--net/aria2/patches/010-Platform-Fix-compilation-without-deprecated-OpenSSL-.patch4
2 files changed, 3 insertions, 3 deletions
diff --git a/net/aria2/Makefile b/net/aria2/Makefile
index e9fd774db..d137fa99a 100644
--- a/net/aria2/Makefile
+++ b/net/aria2/Makefile
@@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=aria2
PKG_VERSION:=1.34.0
-PKG_RELEASE:=3
+PKG_RELEASE:=4
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_SOURCE_URL:=https://github.com/aria2/aria2/releases/download/release-$(PKG_VERSION)/
diff --git a/net/aria2/patches/010-Platform-Fix-compilation-without-deprecated-OpenSSL-.patch b/net/aria2/patches/010-Platform-Fix-compilation-without-deprecated-OpenSSL-.patch
index fc31b7d8b..24823c58d 100644
--- a/net/aria2/patches/010-Platform-Fix-compilation-without-deprecated-OpenSSL-.patch
+++ b/net/aria2/patches/010-Platform-Fix-compilation-without-deprecated-OpenSSL-.patch
@@ -15,13 +15,13 @@ index ea73b6c6..0af62d18 100644
#endif // ENABLE_NLS
#ifdef HAVE_OPENSSL
-+#if !OPENSSL_101_API
++#if OPENSSL_101_API
// for SSL initialization
SSL_load_error_strings();
SSL_library_init();
// Need this to "decrypt" p12 files.
OpenSSL_add_all_algorithms();
-+#endif // !OPENSSL_101_API
++#endif // OPENSSL_101_API
#endif // HAVE_OPENSSL
#ifdef HAVE_LIBGCRYPT
if (!gcry_check_version("1.2.4")) {