summaryrefslogtreecommitdiffstats
path: root/package/qt/Config.in
Commit message (Collapse)AuthorAgeFilesLines
* qt: broken on avr32Gustavo Zacarias2013-06-271-0/+1
| | | | | | | | | Qt is broken for the avr32 architecture since it lacks TLS support. Fixes: http://autobuild.buildroot.net/results/56d/56d1d8f12a847f1ba49547a51d7a3605755a0bb8/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* dbus: uses fork(), requires MMUThomas Petazzoni2012-11-171-0/+1
| | | | | | | | | | | | | | In order to solve http://autobuild.buildroot.org/results/34f6843137efda20626af72714c110280ec577d7/build-end.log, this patch makes the D-Bus package as well as all the packages that select the D-Bus package 'depends on BR2_USE_MMU'. In addition, for the specific case of gvfs, the missing BR2_TOOLCHAIN_HAS_THREADS dependency is added (threads are required by D-Bus, so they are also required by gvfs which selects D-Bus). Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* alsa-lib: require thread supportThomas Petazzoni2012-09-201-0/+1
| | | | | | | | | | | | | | | | Some parts of alsa-lib correctly use threads only when available, but some other parts, especially certain PCM plugins, unconditionally require threads. While it would certainly be possible to fix alsa-lib to only use threads when available, it probably doesn't make much sense, since on an embedded system that has audio, we are probably powerful enough to enable thread support in the C library. Fixes: http://autobuild.buildroot.org/results/e14469be7f6171f4c8c0c09c8e32943819f7938b/build-end.log Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* dbus: requires thread supportThomas Petazzoni2012-07-251-0/+4
| | | | | | | | | | | As can be seen on the build result at http://autobuild.buildroot.org/results/20f1078ef7dc5f187b04c63ef70e8b43acf9bb3a/build-end.log, D-Bus requires thread support in the toolchain. This commit adjusts the Kconfig dependencies of D-Bus and all its reverse dependencies to depend on thread support in the toolchain. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Fix qt samples dependency on QtGUIMaxime Ripard2012-04-191-0/+1
| | | | | Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: tweak help textPeter Korsgaard2012-04-141-2/+3
| | | | | | | Upstream URL of Qt is qt-project.org nowadays, and there's a single Qt release for everyone. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: qt-dbus: replace dependency on dbus by selectArnout Vandecappelle (Essensium/Mind)2012-01-311-4/+1
| | | | | Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: QtDeclarative needs script support as wellPeter Korsgaard2011-06-211-0/+1
| | | | | | | | | Otherwise configure errors out with: Error: QtDeclarative was requested, but it can't be built due to QtScript or QtGui being disabled. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Qt: add config option to build libQtDeclarative moduleDaniel Mack2011-06-201-0/+7
| | | | | | Signed-off-by: Daniel Mack <zonque@gmail.com> Acked-by: Daniel Nyström <daniel.nystrom@timeterminal.se> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: scripttools needs guiThomas Petazzoni2011-05-221-0/+1
| | | | | | | | | | | | | | | | The QtScriptTools library depends on the QtGui library, as can be seen in the src/src.pro file of the Qt sources : !contains(QT_CONFIG, no-gui):contains(QT_CONFIG, scripttools): SRC_SUBDIRS += src_scripttools If the scripttools are enabled in the Qt configuration, but not the gui, then the scripttools library is not built by Qt, and the Buildroot build process fails with: cp: cannot stat `/home/test/outputs/test-502/host/usr/sh4-unknown-linux-gnu/sysroot/usr/lib/libQtScriptTools.so.*': No such file or directory Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: hide shared library option if BR2_PREFER_STATIC_LIBPeter Korsgaard2011-05-121-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: convert to the GENTARGETS infrastructureThomas Petazzoni2011-03-281-20/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In addition to converting the qt package to the GENTARGETS infrastructure, this commit also does the following (related) things in the Qt package: * Create a BR2_PACKAGE_QT_CONFIG_FILE option, which can be used to pass a custom Qt configuration file, such as the ones found in src/corelib/global/qconfig-*.h. This used to be possible, but required changing qt.mk directly, which isn't really how we configure things in Buildroot. * Remove the BR2_PACKAGE_QT_EMB_PLATFORM option, the embedded platform name is now computed directly in qt.mk. * The QT_CONFIGURE variable, which hosted all ./configure options, has been renamed to QT_CONFIGURE_OPTS, for consistency with what we do in the AUTOTARGETS infrastructure. * The QT_DEP_LIBS variable has been renamed to QT_DEPENDENCIES, so that dependencies are properly handled by the GENTARGETS infrastructures. * The QT_QMAKE_SET macro (used to adjust the path/flags of the compiler/linker) has been extended with an additional argument, which allows to pass the source directory of Qt. * All the installation procedure has been rewritten to fit within the GENTARGETS mechanism. [Peter: fixed minor issues pointed out by Will] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Luca Ceresoli <luca@lucaceresoli.net> Acked-by: Will Wagner <willw@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: dbus module doesn't depend on gui supportPeter Korsgaard2011-03-251-2/+2
| | | | | | | | Seems I somehow got this wrong back in December (bff5248202). At the same time fix a typo in the comment. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: qt3 compatibility needs gui supportPeter Korsgaard2011-02-281-0/+1
| | | | | | Closes #2911 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* 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>