Commit d3d67f7f authored by Frederik Pasch's avatar Frederik Pasch Committed by Peter Korsgaard
Browse files

qt: only build gui module if enabled



Closes #2905

Signed-off-by: default avatarFrederik Pasch <fpasch@googlemail.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 17b66aff
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -3,10 +3,14 @@
	Ccache support reworked. Now used for both host and target
	compilation, and cache is stored in ~/.buildroot-ccache.

	Updated/fixed packages: cloop, m4, openssh, xz
	Updated/fixed packages: cloop, m4, openssh, qt, xz

	New packages: lsuio

	Issues resolved (http://bugs.uclibc.org):

	#2905: Qt: Speed up compilation, if gui-module isn't selected

2010.11, Released November 30th, 2010:

	Fixes all over the tree.
+4 −0
Original line number Diff line number Diff line
@@ -190,6 +190,10 @@ else
QT_CONFIGURE+= -big-endian
endif

ifneq ($(BR2_PACKAGE_QT_GUI_MODULE),y)
QT_CONFIGURE+= -no-gui
endif

ifeq ($(BR2_PACKAGE_QT_GIF),y)
QT_CONFIGURE+= -qt-gif
else