summaryrefslogtreecommitdiffstats
path: root/package/qt/Config.in
Commit message (Collapse)AuthorAgeFilesLines
* qt: dbus module needs gui support as wellPeter Korsgaard2010-12-281-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: svg and multimedia modules depends on gui module as wellPeter Korsgaard2010-12-201-0/+2
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: phonon support depends on gui modulePeter Korsgaard2010-12-201-1/+1
| | | | | | Otherwise configure errors out with 'Phonon enabled, but GUI disabled'. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: tighten webkit dependenciesPeter Korsgaard2010-11-271-0/+5
| | | | | | | webkit needs shared library and gui support to build, so make that visible in Config.in. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/qt: Remove selects of BR2_PACKAGE_QT_JAVASCRIPTCORE.Will Newton2010-11-271-2/+0
| | | | | | | | | Building WebKit or Script engine support would select JIT support in JavaScriptCore. Not all platforms support JIT, so remove the selects to allow the option to be modified by users. Signed-off-by: Will Newton <will.newton@imgtec.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: Bump to 4.6.3Paul Jones2010-09-091-0/+5
| | | | | | | | Also add option to build example and demo code [Peter: fix patch handling] Signed-off-by: Paul Jones <paul@pauljones.id.au> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: fix alsa-lib dependencyLuca Ceresoli2010-07-261-1/+2
| | | | | | | | | | If BR2_PACKAGE_QT_AUDIO_BACKEND=y, QtMultimedia requires the audio backend to be already in staging in order to compile. The backend is system-dependent, but since buildroot builds Linux systems only, it is safe to assume that the it will always be ALSA. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: powerpc config is now called powerpc, not ppcPeter Korsgaard2010-05-261-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: use depends on for gstreamerPeter Korsgaard2010-05-251-1/+5
| | | | | | | | Gstreamer has complicated dependencies (because of glib2), so use depends on rather than select. At the same time default phonon support to Y if gstreamer is available, as this support is likely wanted. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: bump versionFrederik Vannoote2010-04-021-0/+35
| | | | | | | | qt 4.6.x has a number of new configure options, and needs a patch to work on uClibc. Signed-off-by: Frederik Vannoote <frederik.vannoote@barco.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* get rid of broken nios2 supportPeter Korsgaard2010-03-301-1/+0
| | | | | | | Has been marked as broken for more than 1 year, with no indication that anyone cares, and it needs a bunch of special handling. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: add selection for keyboard driversPeter Korsgaard2009-12-211-0/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/qt: add font selectionPeter Korsgaard2009-12-141-26/+46
| | | | | | | | | | | | Commit f98547622 (make sure to install all Qt-fonts and true-type-fonts) changed Qt to install all .qpf fonts to the target instead of only a hardcoded subset. Some of those fonts are unfortunately quite big (1-2MB) and are not always needed (japanese, unicode). Instead add a font selection in Kconfig similar to how it is done for pixel depths, and default to the subset we were previously using. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: tweak gui kconfigPeter Korsgaard2009-12-141-7/+3
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: remove commercial license optionMichael Roth2009-10-091-18/+0
| | | | | | | | | | | | It looks like that nobody is using the commercial license option because the code is broken (BR2_QT_COMMERCIAL_PASSWORD typo) and dist.trolltech.com became silent long ago and nobody complained about. So remove the broken and unused stuff. Signed-off-by: Michael Roth <mroth@nessie.de> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: remove Kconfig option to enable all pixel depthsMichael Roth2009-10-091-6/+0
| | | | | | | | | | | | | | | | | | The Kconfig menu "Pixel depths" of Qt provides a list with all selectable pixel depths and additionally the option "all". When "all" is selected, the list with all available pixel depths disappears. Because this disappearing of available pixel depths makes no sense under usability aspects, simply remove the option "all". The user could enable all available pixel depths by selecting each individual depth anyway. So no functionality is lost. Signed-off-by: Michael Roth <mroth@nessie.de> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: the GUI module requires the network module to work properlyThomas Petazzoni2009-07-271-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | Running a simple Qt GUI application on an embedded systems without QtNetwork installed doesn't work, the dynamic loader complains that QtNetwork is not present. While I'm not a Qt build system expert, it looks like this dependency really exists, since the src/gui/gui.pri file in Qt sources contains the following line: embedded: QT += network Which would mean that the GUI module needs the network module to operate properly. And a few files in src/gui/embedded/ also include some QtNetwork stuff. This isn't really surprising since the Qt QWS mechanism uses communication between processes through a Unix socket. Therefore, we add a dependency on the network module in the GUI module. We use a 'select' dependency here, since it's might not be really obvious to the user that the GUI module requires the network one. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt: put the Qt options into a submenuThomas Petazzoni2009-07-251-4/+4
| | | | | | | | | Put the Qt options into a submenu to make the configuration interface easier to use. The comment on the dependency on C++ has to be put before the menuconfig definition, otherwise kconfig gets confused and doesn't put the suboptions into a submenu. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt: rename qtopia4 to qtThomas Petazzoni2009-07-251-0/+343
A while ago, Trolltech (now part of Nokia) included Qtopia directly inside Qt. So let's rename the qtopia4 package to simply qt, which will be more familiar to our users. Of course, the version we compile is Qt for Embedded Linux. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>