summaryrefslogtreecommitdiff
path: root/package/qt5
diff options
context:
space:
mode:
authorBaruch Siach <baruch@tkos.co.il>2017-01-19 14:50:47 +0200
committerPeter Korsgaard <peter@korsgaard.com>2017-01-19 15:02:22 +0100
commit7c60211ce38273580f1f8bf5886771406f9899ca (patch)
tree2e97c00713bda0533348c440e0b048ebed46d041 /package/qt5
parent8480c528398ecb35bf62d857f25f6b7eaa0f44a3 (diff)
tslib: needs kernel headers 3.12
Kernel headers 3.12+ are required since tslib version 1.3. https://github.com/kergoth/tslib/blob/master/README.markdown Update tslib reverse dependencies. Fixes: http://autobuild.buildroot.net/results/28d/28df38e2a042f1b5940bf35c18334ebf8810a348/ http://autobuild.buildroot.net/results/c38/c383cfee3673aa9fba36a86f1e68de63413c2987/ http://autobuild.buildroot.net/results/6dd/6ddb2cd9f4f41ee03dc10a73422ad37070811732/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/qt5')
-rw-r--r--package/qt5/qt5base/Config.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/package/qt5/qt5base/Config.in b/package/qt5/qt5base/Config.in
index 7244fbedc..ad9513838 100644
--- a/package/qt5/qt5base/Config.in
+++ b/package/qt5/qt5base/Config.in
@@ -267,11 +267,12 @@ config BR2_PACKAGE_QT5BASE_ICU
config BR2_PACKAGE_QT5BASE_TSLIB
bool "Enable Tslib support"
depends on !BR2_STATIC_LIBS # dlopen
+ depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12 # tslib
select BR2_PACKAGE_TSLIB
help
This options enables the Tslib plugin
-comment "tslib support needs a toolchain w/ dynamic library"
- depends on BR2_STATIC_LIBS
+comment "tslib support needs a toolchain w/ dynamic library, headers >= 3.12"
+ depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_12
endif