diff options
author | Thiago A. CorrĂȘa <thiago.correa@gmail.com> | 2008-07-04 03:49:18 +0000 |
---|---|---|
committer | Thiago A. CorrĂȘa <thiago.correa@gmail.com> | 2008-07-04 03:49:18 +0000 |
commit | 9c0ef0b0a9e2409e073c6964d9057be16ff893f6 (patch) | |
tree | 9e767b5bf107f5248af37e826c231221e85928cd | |
parent | 490f91f35ca872dce67a551a63753607800a5227 (diff) | |
download | buildroot-novena-9c0ef0b0a9e2409e073c6964d9057be16ff893f6.tar.gz buildroot-novena-9c0ef0b0a9e2409e073c6964d9057be16ff893f6.zip |
Ensure consistency between XORG_none and (XORG_x11, XORG_tinyx)
-rw-r--r-- | package/Config.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/package/Config.in b/package/Config.in index 29e1b37af..d4d86020a 100644 --- a/package/Config.in +++ b/package/Config.in @@ -357,10 +357,13 @@ source "package/qtopia4/Config.in" menu "X Window System server" config BR2_PACKAGE_XSERVER_none bool "none" + default y config BR2_PACKAGE_XSERVER_xorg bool "modular xorg" + depends on !BR2_PACKAGE_XSERVER_none config BR2_PACKAGE_XSERVER_tinyx bool "tinyx" + depends on !BR2_PACKAGE_XSERVER_none endmenu config BR2_X11_PREFIX |