diff options
author | 2019-03-01 15:17:12 +1300 | |
---|---|---|
committer | 2019-03-01 10:13:14 +0100 | |
commit | c110e48cecde6f543da18388322907b05b25e7d2 (patch) | |
tree | ecd28cb711d912bd93f15111c13b1b1c3fd4fa8d | |
parent | d69d9db3ce0ba59193edbe81d8299a2aee8c61a4 (diff) | |
download | buildroot-c110e48cecde6f543da18388322907b05b25e7d2.tar.gz buildroot-c110e48cecde6f543da18388322907b05b25e7d2.tar.bz2 |
package/qt5/qt5base: exclude OpenSSL functionality for Qt 5.6.x
No patch back-porting OpenSSL 1.1.x support to Qt 5.6.x is available.
https://development.qt-project.narkive.com/RW4wxYXY/openssl-1-1-x-support-on-qt-5-6-5-9
Signed-off-by: James Grant <james.grant@jci.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/qt5/qt5base/qt5base.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/qt5/qt5base/qt5base.mk b/package/qt5/qt5base/qt5base.mk index e71878a487..a5ce583327 100644 --- a/package/qt5/qt5base/qt5base.mk +++ b/package/qt5/qt5base/qt5base.mk @@ -188,8 +188,13 @@ else QT5BASE_CONFIGURE_OPTS += -no-eglfs endif +ifeq ($(BR2_PACKAGE_QT5_VERSION_5_6),y) +# No OpenSSL 1.1.x support in Qt 5.6.x +QT5BASE_CONFIGURE_OPTS += -no-openssl +else QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_OPENSSL),-openssl,-no-openssl) QT5BASE_DEPENDENCIES += $(if $(BR2_PACKAGE_OPENSSL),openssl) +endif QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_FONTCONFIG),-fontconfig,-no-fontconfig) QT5BASE_DEPENDENCIES += $(if $(BR2_PACKAGE_QT5BASE_FONTCONFIG),fontconfig) |