diff options
author | Danomi Manchego <danomimanchego123@gmail.com> | 2014-09-11 22:21:35 -0400 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-01-24 01:09:16 +0100 |
commit | 29fba02bbaf121f2d1c43ae1d8f215802ebdfb63 (patch) | |
tree | ce258c977014cc650465d6efd1296ba2f60f065d | |
parent | dfdf173a4c7ca1c8584833a7286df37cb008fdb2 (diff) | |
download | buildroot-29fba02bbaf121f2d1c43ae1d8f215802ebdfb63.tar.gz buildroot-29fba02bbaf121f2d1c43ae1d8f215802ebdfb63.zip |
qt: make QtDeclarative depend on QtSql
As indicated by QtDeclarative.pc, QtDeclarative needs QtSql.
It builds fine without it, but then you get a run-time error.
So add QtSql to the QtDeclarative depends-on list.
Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/qt/Config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/qt/Config.in b/package/qt/Config.in index ba71e12921..990014e8ed 100644 --- a/package/qt/Config.in +++ b/package/qt/Config.in @@ -483,6 +483,7 @@ config BR2_PACKAGE_QT_DECLARATIVE bool "Declarative module" depends on BR2_PACKAGE_QT_SCRIPT depends on BR2_PACKAGE_QT_GUI_MODULE + depends on BR2_PACKAGE_QT_SQL_MODULE help Build the Qt Declarative Module for qml support if unsure, say n. |