mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-29 22:28:08 -07:00
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>
This commit is contained in:
committed by
Aaron Bauman
parent
c9ef851344
commit
88ff70ab3b
15
dev-cpp/commoncpp2/files/1.8.1-libressl.patch
Normal file
15
dev-cpp/commoncpp2/files/1.8.1-libressl.patch
Normal file
@@ -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;
|
||||
Reference in New Issue
Block a user