FreeBSD Bugzilla – Attachment 173657 Details for
Bug 211832
net/qt5-network: fix build with LibreSSL
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
fix build of qt5-network with libressl
net_qt5-network.patch (text/plain), 1.95 KB, created by
Matthew Rezny
on 2016-08-14 10:27:08 UTC
(
hide
)
Description:
fix build of qt5-network with libressl
Filename:
MIME Type:
Creator:
Matthew Rezny
Created:
2016-08-14 10:27:08 UTC
Size:
1.95 KB
patch
obsolete
>Index: net/qt5-network/files/patch-src_network_ssl_qsslcontext__openssl.cpp >=================================================================== >--- net/qt5-network/files/patch-src_network_ssl_qsslcontext__openssl.cpp (nonexistent) >+++ net/qt5-network/files/patch-src_network_ssl_qsslcontext__openssl.cpp (working copy) >@@ -0,0 +1,35 @@ >+From 81494e67eccba04fc3fe554d76a9ca6fe7f2250e Mon Sep 17 00:00:00 2001 >+From: hasufell <hasufell@gentoo.org> >+Date: Sat, 10 Oct 2015 01:15:01 +0200 >+Subject: [PATCH] Fix compilation with libressl >+ >+By additionally checking for defined(SSL_CTRL_SET_CURVES), which >+is defined in openssl, but not in libressl. >+--- >+ src/network/ssl/qsslcontext_openssl.cpp | 4 ++-- >+ 1 file changed, 2 insertions(+), 2 deletions(-) >+ >+diff --git a/src/network/ssl/qsslcontext_openssl.cpp b/src/network/ssl/qsslcontext_openssl.cpp >+index b88ab54..cfc4f6d 100644 >+--- src/network/ssl/qsslcontext_openssl.cpp.orig >++++ src/network/ssl/qsslcontext_openssl.cpp >+@@ -338,7 +338,7 @@ init_context: >+ >+ const QVector<QSslEllipticCurve> qcurves = sslContext->sslConfiguration.ellipticCurves(); >+ if (!qcurves.isEmpty()) { >+-#if OPENSSL_VERSION_NUMBER >= 0x10002000L && !defined(OPENSSL_NO_EC) >++#if OPENSSL_VERSION_NUMBER >= 0x10002000L && defined(SSL_CTRL_SET_CURVES) && !defined(OPENSSL_NO_EC) >+ // Set the curves to be used >+ if (q_SSLeay() >= 0x10002000L) { >+ // SSL_CTX_ctrl wants a non-const pointer as last argument, >+@@ -352,7 +352,7 @@ init_context: >+ return sslContext; >+ } >+ } else >+-#endif // OPENSSL_VERSION_NUMBER >= 0x10002000L && !defined(OPENSSL_NO_EC) >++#endif // OPENSSL_VERSION_NUMBER >= 0x10002000L && defined(SSL_CTRL_SET_CURVES) && !defined(OPENSSL_NO_EC) >+ { >+ // specific curves requested, but not possible to set -> error >+ sslContext->errorStr = msgErrorSettingEllipticCurves(QSslSocket::tr("OpenSSL version too old, need at least v1.0.2")); >+-- >+2.6.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 211832
: 173657