Commit cc76043b authored by Thomas Petazzoni's avatar Thomas Petazzoni
Browse files

xorg: simplify dependencies on X.org



Many packages used to depend on BR2_PACKAGE_XORG||BR2_PACKAGE_XORG7,
but this is useless since BR2_PACKAGE_XORG is a non-existing
configuration option. So, these depencies gets simplified to
BR2_PACKAGE_XORG7 only.

Some others were depending on BR2_PACKAGE_TINYX (which doesn't) exist
or BR2_PACKAGE_XSERVER_xorg || BR2_PACKAGE_XSERVER_tiny ||
BR2_PACKAGE_XSERVER_x11r7. Replace all that mess by a simple
dependency on BR2_PACKAGE_XORG7.

Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 8c00f439
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
config BR2_PACKAGE_BLACKBOX
	bool "blackbox"
	depends on BR2_PACKAGE_XORG||BR2_PACKAGE_XORG7
	depends on BR2_PACKAGE_XORG7
	depends on BR2_INSTALL_LIBSTDCPP
	help
	  Blackbox is a fast, lightweight window manager for the X
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ config BR2_PACKAGE_DILLO
	depends on BR2_PACKAGE_LIBGTK12
	depends on BR2_PACKAGE_ZLIB
	depends on BR2_PACKAGE_LIBPNG
	depends on BR2_PACKAGE_XORG||BR2_PACKAGE_XORG7
	depends on BR2_PACKAGE_XORG7
	help
	  Dillo is a small GTK+ based web browser written in C.

+1 −1
Original line number Diff line number Diff line
config BR2_PACKAGE_DOCKER
	bool "docker"
	depends on BR2_PACKAGE_XORG||BR2_PACKAGE_XORG7||BR2_PACKAGE_TINYX
	depends on BR2_PACKAGE_XORG7
	select BR2_PACKAGE_LIBGLIB2
	help
	  a system tray dock for X
+1 −1
Original line number Diff line number Diff line
config BR2_PACKAGE_FLTK
	bool "fltk"
	depends on BR2_PACKAGE_XORG||BR2_PACKAGE_XORG7
	depends on BR2_PACKAGE_XORG7
	help
	  A cross-platform C++ GUI toolkit for UNIX/Linux (X11),
	  Microsoft Windows, and MacOS X.
+1 −1
Original line number Diff line number Diff line
config BR2_PACKAGE_ACE_OF_PENGUINS
	bool "ace_of_penguins"
	select BR2_PACKAGE_LIBPNG
	depends on BR2_PACKAGE_XORG||BR2_PACKAGE_XORG7
	depends on BR2_PACKAGE_XORG7
	help
	  The Ace of Penguins is a set of Unix/X solitaire games based
	  on the ones available for Windows but with a number of
Loading