diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-01-06 11:29:20 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-01-12 22:34:37 +0100 |
commit | 3679abe0a32e2559c81a9f47820c9af47ee1f84f (patch) | |
tree | b57fcd86850f3143899a21c4cf0d2d10a19de1e5 /package | |
parent | 1cd8be320c9732645ebfcf5d28a21b8df0a63bf9 (diff) | |
download | buildroot-novena-3679abe0a32e2559c81a9f47820c9af47ee1f84f.tar.gz buildroot-novena-3679abe0a32e2559c81a9f47820c9af47ee1f84f.zip |
x11r7: do not globally select libraries
It doesn't make sense for BR2_PACKAGE_XORG7 to globally select
libraries such as libpng, zlib, expat or fontconfig. For example, if
you do a build with just xlib_libX11, then libpng gets built as the
last package, without anybody actually depending on it, even if it was
selected by BR2_PACKAGE_XORG7.
The individual x11r7 packages should select the libraries they need,
and add them in their DEPENDENCIES variable.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package')
-rw-r--r-- | package/x11r7/Config.in | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/package/x11r7/Config.in b/package/x11r7/Config.in index 6940725f1..706574c6e 100644 --- a/package/x11r7/Config.in +++ b/package/x11r7/Config.in @@ -1,9 +1,5 @@ menuconfig BR2_PACKAGE_XORG7 bool "X.org X Window System" - select BR2_PACKAGE_ZLIB - select BR2_PACKAGE_LIBPNG - select BR2_PACKAGE_EXPAT - select BR2_PACKAGE_FONTCONFIG depends on BR2_USE_WCHAR help Support for X11R7 libraries, servers, drivers, and/or |