summaryrefslogtreecommitdiff
path: root/package/qt5
diff options
context:
space:
mode:
authorEzequiel GarcĂ­a <ezequiel@vanguardiasur.com.ar>2013-10-27 21:29:27 -0300
committerPeter Korsgaard <peter@korsgaard.com>2013-10-28 10:09:23 +0100
commit5986cb4163590082081aeb2fb186baab94cd4802 (patch)
tree9dd66398ec45b28d3ae982ad760b742bd6dfff31 /package/qt5
parent09d1176e1e8c9f72c431ca64f2561b405f89ece0 (diff)
qt5base: add tslib plugin
Add support for Tslib plugin. [Peter: propagate !static dependency / add comment] Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/qt5')
-rw-r--r--package/qt5/qt5base/Config.in10
-rw-r--r--package/qt5/qt5base/qt5base.mk3
2 files changed, 13 insertions, 0 deletions
diff --git a/package/qt5/qt5base/Config.in b/package/qt5/qt5base/Config.in
index e43337348..83f17e35e 100644
--- a/package/qt5/qt5base/Config.in
+++ b/package/qt5/qt5base/Config.in
@@ -185,4 +185,14 @@ config BR2_PACKAGE_QT5BASE_ICU
This option enables ICU support in Qt5. This is for example
needed for Qt5Webkit.
+config BR2_PACKAGE_QT5BASE_TSLIB
+ bool "Enable Tslib support"
+ depends on !BR2_PREFER_STATIC_LIB # dlopen
+ select BR2_PACKAGE_TSLIB
+ help
+ This options enables the Tslib plugin
+
+comment "tslib support needs a toolchain w/ dynamic library"
+ depends on BR2_PREFER_STATIC_LIB
+
endif
diff --git a/package/qt5/qt5base/qt5base.mk b/package/qt5/qt5base/qt5base.mk
index 0106c2cbc..ce78d3125 100644
--- a/package/qt5/qt5base/qt5base.mk
+++ b/package/qt5/qt5base/qt5base.mk
@@ -128,6 +128,9 @@ QT5BASE_DEPENDENCIES += $(if $(BR2_PACKAGE_QT5BASE_PNG),libpng)
QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_DBUS),-dbus,-no-dbus)
QT5BASE_DEPENDENCIES += $(if $(BR2_PACKAGE_QT5BASE_DBUS),dbus)
+QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_QT5BASE_TSLIB),-tslib,-no-tslib)
+QT5BASE_DEPENDENCIES += $(if $(BR2_PACKAGE_QT5BASE_TSLIB),tslib)
+
QT5BASE_CONFIGURE_OPTS += $(if $(BR2_PACKAGE_LIBGLIB2),-glib,-no-glib)
QT5BASE_DEPENDENCIES += $(if $(BR2_PACKAGE_LIBGLIB2),libglib2)