diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-04-07 09:57:15 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-04-11 15:54:39 +0200 |
commit | 76d9abd810a9739b78b818e982fd6f11ff4dbe67 (patch) | |
tree | ea7c517bc2dafa2fbacf388193aef98284750d8d /package | |
parent | 099b41b91dc83692460006a6973af0a8bb91f879 (diff) | |
download | buildroot-novena-76d9abd810a9739b78b818e982fd6f11ff4dbe67.tar.gz buildroot-novena-76d9abd810a9739b78b818e982fd6f11ff4dbe67.zip |
qt5: disallow the selection of Qt4 and Qt5
As noticed by Arnout, Qt4 and Qt5 cannot be installed together,
because for example the qt.conf installed by one version cannot be
understood by the qmake of another version. We therefore make them
mutually exclusive, which sounds reasonable for the embedded systems
targeted by Buildroot.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package')
-rw-r--r-- | package/qt5/Config.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/qt5/Config.in b/package/qt5/Config.in index 1c9f8a634..9e9104a56 100644 --- a/package/qt5/Config.in +++ b/package/qt5/Config.in @@ -7,6 +7,7 @@ menuconfig BR2_PACKAGE_QT5 depends on BR2_USE_WCHAR depends on BR2_INET_IPV6 depends on BR2_TOOLCHAIN_HAS_THREADS + depends on !BR2_PACKAGE_QT help This option enables the Qt5 framework. Sub-options allow to select which modules should be built. |