mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-03 00:17:43 +00:00
- add a choice for Xserver selection.
This is ment as a suggestion Re: http://lists.busybox.net/lists/buildroot/2007-July/003835.html
This commit is contained in:
parent
134a26b0fa
commit
c5757aad70
@ -303,10 +303,30 @@ source "package/qtopia4/Config.in"
|
|||||||
|
|
||||||
#source "package/microwin/Config.in"
|
#source "package/microwin/Config.in"
|
||||||
|
|
||||||
comment "X Window System server"
|
choice
|
||||||
|
prompt "X Window System server"
|
||||||
|
default BR2_PACKAGE_XSERVER_none
|
||||||
|
help
|
||||||
|
Xserver to use.
|
||||||
|
For more information about the X protocol see
|
||||||
|
http://www.x.org
|
||||||
|
|
||||||
|
config BR2_PACKAGE_XSERVER_none
|
||||||
|
bool "none"
|
||||||
|
config BR2_PACKAGE_XSERVER_xorg
|
||||||
|
bool "xorg"
|
||||||
|
config BR2_PACKAGE_XSERVER_tinyx
|
||||||
|
bool "tinyx"
|
||||||
|
endchoice
|
||||||
|
if BR2_PACKAGE_XSERVER_xorg
|
||||||
source "package/xorg/Config.in"
|
source "package/xorg/Config.in"
|
||||||
|
endif
|
||||||
|
if BR2_PACKAGE_XSERVER_tinyx
|
||||||
source "package/tinyx/Config.in"
|
source "package/tinyx/Config.in"
|
||||||
|
endif
|
||||||
|
|
||||||
comment "X libraries and helper libraries"
|
comment "X libraries and helper libraries"
|
||||||
|
#XXX: maybe some of these should depend on !BR2_PACKAGE_XSERVER_none
|
||||||
source "package/atk/Config.in"
|
source "package/atk/Config.in"
|
||||||
source "package/cairo/Config.in"
|
source "package/cairo/Config.in"
|
||||||
source "package/pango/Config.in"
|
source "package/pango/Config.in"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
config BR2_PACKAGE_TINYX
|
config BR2_PACKAGE_TINYX
|
||||||
bool "tinyx"
|
bool "tinyx"
|
||||||
default n
|
default y if BR2_PACKAGE_XSERVER_tinyx
|
||||||
help
|
help
|
||||||
A tiny X server. Also known as 'Xfbdev' and 'kdrive'.
|
A tiny X server. Also known as 'Xfbdev' and 'kdrive'.
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
config BR2_PACKAGE_XORG
|
config BR2_PACKAGE_XORG
|
||||||
bool "X.org X Window System"
|
bool "X.org X Window System"
|
||||||
default n
|
default y if BR2_PACKAGE_XSERVER_xorg
|
||||||
depends !BR2_PACKAGE_TINYX
|
|
||||||
select BR2_PACKAGE_ZLIB
|
select BR2_PACKAGE_ZLIB
|
||||||
select BR2_PACKAGE_LIBPNG
|
select BR2_PACKAGE_LIBPNG
|
||||||
select BR2_PACKAGE_EXPAT
|
select BR2_PACKAGE_EXPAT
|
||||||
|
Loading…
x
Reference in New Issue
Block a user