-
Notifications
You must be signed in to change notification settings - Fork 149
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fixes #59 #60
base: master
Are you sure you want to change the base?
fixes #59 #60
Conversation
@@ -2,7 +2,8 @@ | |||
CONFIG(release, debug|release): SSL_PATH = $$PWD | |||
else: SSL_PATH = $$PWD/no-asm | |||
|
|||
if (versionAtLeast(QT_VERSION, 6.5.0)) { | |||
if (versionAtLeast(QT_VERSION, 6.5.0) | if(versionAtLeast(QT_VERSION, 5.15.8) : versionAtMost(QT_VERSION, 6.0.0))) { | |||
message(Using OpenSSL v3) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these prints are done only for qmake, either add to cmake also or remove them to keep things more consistent
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why specifically 5.15.8? your issue description mentions that 5.15.13 is the version that supports openssl 3 (could you add a link about that as well)?
I missed this thread due to a busy inbox, |
Fixes #59, about using OpenSSL 3 for Qt 5.15.8+ LTS.
The required patch can be found in https://gist.github.com/seyedmmousavi/b1f6681eb37f3edbe3dcabb6e89c5d43