diff options
author | Paulius Zaleckas <paulius.zaleckas@gmail.com> | 2010-05-28 17:58:35 +0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-05-28 22:00:42 +0200 |
commit | b578f670d153a04cc410e0696013e9c606f38439 (patch) | |
tree | d9285dd7d143fdb408b600ac5f909b9a72e6964f | |
parent | 2816c33c3d802f002bdb53d41f249eb5571a7cb9 (diff) | |
download | buildroot-novena-b578f670d153a04cc410e0696013e9c606f38439.tar.gz buildroot-novena-b578f670d153a04cc410e0696013e9c606f38439.zip |
Remove locale dependency from xserver
XServer compiles just fine without locale support
Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/x11r7/Config.in | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/package/x11r7/Config.in b/package/x11r7/Config.in index 55524a01d..b93cc90dd 100644 --- a/package/x11r7/Config.in +++ b/package/x11r7/Config.in @@ -19,11 +19,10 @@ choice config BR2_PACKAGE_XSERVER_xorg bool "Modular X.org" - # depending on BR2_ENABLE_LOCALE gives a recursion error with dbus - depends on BR2_LARGEFILE && BR2_INSTALL_LIBSTDCPP # && BR2_ENABLE_LOCALE + depends on BR2_LARGEFILE && BR2_INSTALL_LIBSTDCPP -comment 'X.org requires largefile, locale and C++ support' - depends on !(BR2_LARGEFILE && BR2_INSTALL_LIBSTDCPP && BR2_ENABLE_LOCALE) +comment 'X.org requires largefile and C++ support' + depends on !(BR2_LARGEFILE && BR2_INSTALL_LIBSTDCPP) config BR2_PACKAGE_XSERVER_tinyx bool "TinyX" |