diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2010-11-27 21:09:15 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-11-27 21:09:59 +0100 |
commit | 13a51114c60336def06cfc0a681176ecc7d2fcac (patch) | |
tree | a9a7dcb35bafe769fcc65b89b78059316bd63e87 | |
parent | 32b748086ebb6c4d7e83f78ce489677d9929700a (diff) | |
download | buildroot-novena-13a51114c60336def06cfc0a681176ecc7d2fcac.tar.gz buildroot-novena-13a51114c60336def06cfc0a681176ecc7d2fcac.zip |
qt: tighten webkit dependencies
webkit needs shared library and gui support to build, so make that visible
in Config.in.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/qt/Config.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/package/qt/Config.in b/package/qt/Config.in index 1f8633b27..af1db6ddf 100644 --- a/package/qt/Config.in +++ b/package/qt/Config.in @@ -335,11 +335,16 @@ config BR2_PACKAGE_QT_NETWORK config BR2_PACKAGE_QT_WEBKIT bool "WebKit Module" + depends on BR2_PACKAGE_QT_SHARED + depends on BR2_PACKAGE_QT_GUI_MODULE depends on BR2_PACKAGE_QT_NETWORK help Build the WebKit module. If unsure, say n. +comment "WebKit needs shared library/gui/network support" + depends on !(BR2_PACKAGE_QT_SHARED && BR2_PACKAGE_QT_GUI_MODULE && BR2_PACKAGE_QT_NETWORK) + config BR2_PACKAGE_QT_JAVASCRIPTCORE bool "JavaScriptCore JIT compiler" help |