qt: only build gui module if enabled
Closes #2905 Signed-off-by: Frederik Pasch <fpasch@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
17b66affdf
commit
d3d67f7fb5
6
CHANGES
6
CHANGES
@ -3,10 +3,14 @@
|
|||||||
Ccache support reworked. Now used for both host and target
|
Ccache support reworked. Now used for both host and target
|
||||||
compilation, and cache is stored in ~/.buildroot-ccache.
|
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
|
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:
|
2010.11, Released November 30th, 2010:
|
||||||
|
|
||||||
Fixes all over the tree.
|
Fixes all over the tree.
|
||||||
|
@ -190,6 +190,10 @@ else
|
|||||||
QT_CONFIGURE+= -big-endian
|
QT_CONFIGURE+= -big-endian
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifneq ($(BR2_PACKAGE_QT_GUI_MODULE),y)
|
||||||
|
QT_CONFIGURE+= -no-gui
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_QT_GIF),y)
|
ifeq ($(BR2_PACKAGE_QT_GIF),y)
|
||||||
QT_CONFIGURE+= -qt-gif
|
QT_CONFIGURE+= -qt-gif
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user