diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2019-06-21 19:40:39 +0200 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2019-07-20 15:38:09 -0400 |
commit | 4a1fff35c55799988f43d1ab3a2d147dd159720f (patch) | |
tree | 943a0415f2fcd8f0b108d43f7cefbf54d644242f /app-emulation/virtualbox | |
parent | dev-lang/perl: remove unused patch (diff) | |
download | gentoo-4a1fff35c55799988f43d1ab3a2d147dd159720f.tar.gz gentoo-4a1fff35c55799988f43d1ab3a2d147dd159720f.tar.bz2 gentoo-4a1fff35c55799988f43d1ab3a2d147dd159720f.zip |
app-emulation/virtualbox: remove unused patch
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12302
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'app-emulation/virtualbox')
-rw-r--r-- | app-emulation/virtualbox/files/virtualbox-6.0.0-libressl.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/app-emulation/virtualbox/files/virtualbox-6.0.0-libressl.patch b/app-emulation/virtualbox/files/virtualbox-6.0.0-libressl.patch deleted file mode 100644 index a79ae1ddf683..000000000000 --- a/app-emulation/virtualbox/files/virtualbox-6.0.0-libressl.patch +++ /dev/null @@ -1,24 +0,0 @@ -https://bugs.gentoo.org/673800 - -diff --git a/src/VBox/Runtime/common/crypto/ssl-openssl.cpp b/src/VBox/Runtime/common/crypto/ssl-openssl.cpp -index e6d58b75..b2422983 100644 ---- a/src/VBox/Runtime/common/crypto/ssl-openssl.cpp -+++ b/src/VBox/Runtime/common/crypto/ssl-openssl.cpp -@@ -271,7 +271,7 @@ RTDECL(int) RTCrSslCreateSessionForNativeSocket(RTCRSSL hSsl, RTHCINTPTR hNative - pSession->pBio = BIO_new_socket(hNativeSocket, BIO_NOCLOSE); - if (pSession->pBio) - { --# if OPENSSL_VERSION_NUMBER >= 0x10100000 -+# if (OPENSSL_VERSION_NUMBER >= 0x10100000 && !defined(LIBRESSL_VERSION_NUMBER)) || LIBRESSL_VERSION_NUMBER >= 0x2070000f - BIO_up_ref(pSession->pBio); /* our reference. */ - # endif - SSL_set_bio(pSession->pSsl, pSession->pBio, pSession->pBio); -@@ -319,7 +319,7 @@ static int rtCrSslSessionDestroy(RTCRSSLSESSIONINT *pThis) - ASMAtomicWriteU32(&pThis->u32Magic, ~RTCRSSLSESSIONINT_MAGIC); - SSL_free(pThis->pSsl); - pThis->pSsl = NULL; --# if OPENSSL_VERSION_NUMBER >= 0x10100000 -+# if (OPENSSL_VERSION_NUMBER >= 0x10100000 && !defined(LIBRESSL_VERSION_NUMBER)) || LIBRESSL_VERSION_NUMBER >= 0x2070000f - BIO_free(pThis->pBio); - # endif - pThis->pBio = NULL; |