summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Strogin <stefan.strogin@gmail.com>2019-02-20 23:37:45 +0200
committerAaron Bauman <bman@gentoo.org>2019-02-22 18:36:28 -0500
commit88ff70ab3b857a8e6aa63061028d8475b63816bc (patch)
treee3cd3deddd86c4a67e8fe87691a89a37a8acbe46 /dev-cpp/commoncpp2/files/1.8.1-libressl.patch
parentdev-libs/xapian: remove older versions (diff)
downloadgentoo-88ff70ab3b857a8e6aa63061028d8475b63816bc.tar.gz
gentoo-88ff70ab3b857a8e6aa63061028d8475b63816bc.tar.bz2
gentoo-88ff70ab3b857a8e6aa63061028d8475b63816bc.zip
dev-cpp/commoncpp2: add patch for openssl-1.1 and libressl support
SSLv3_client_method() is deprecated in openssl-1.1 and libressl. They suggest to use SSLv23_client_method. Closes: https://bugs.gentoo.org/674416 Package-Manager: Portage-2.3.61, Repoman-2.3.12 Signed-off-by: Stefan Strogin <stefan.strogin@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/11120 Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'dev-cpp/commoncpp2/files/1.8.1-libressl.patch')
-rw-r--r--dev-cpp/commoncpp2/files/1.8.1-libressl.patch15
1 files changed, 15 insertions, 0 deletions
diff --git a/dev-cpp/commoncpp2/files/1.8.1-libressl.patch b/dev-cpp/commoncpp2/files/1.8.1-libressl.patch
new file mode 100644
index 000000000000..9779a53d8fa0
--- /dev/null
+++ b/dev-cpp/commoncpp2/files/1.8.1-libressl.patch
@@ -0,0 +1,15 @@
+Upstream-Status: Submitted [bug-commoncpp@gnu.org]
+
+diff --git a/src/ssl.cpp b/src/ssl.cpp
+index 5bf526d..3cd7040 100644
+--- a/src/ssl.cpp
++++ b/src/ssl.cpp
+@@ -386,7 +386,7 @@ bool SSLStream::getSession(void)
+ if(so == INVALID_SOCKET)
+ return false;
+
+- ctx = SSL_CTX_new(SSLv3_client_method());
++ ctx = SSL_CTX_new(SSLv23_client_method());
+ if(!ctx) {
+ SSL_CTX_free(ctx);
+ return false;