diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2017-06-27 21:07:43 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-01 10:02:49 +0200 |
commit | 659ec7d64d39efac49f5fda4cfa78cd8164cd22a (patch) | |
tree | 02ce030d78a4441bbc1cfc543ab49f65ff34f8da | |
parent | c7f878d2ae31230a013c2e2b10ce26338d240c5c (diff) | |
download | buildroot-659ec7d64d39efac49f5fda4cfa78cd8164cd22a.tar.gz buildroot-659ec7d64d39efac49f5fda4cfa78cd8164cd22a.zip |
nodm: uClibc wordexp support is enabled by default
Build tested with Qemu X86 sample.
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/nodm/Config.in | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/package/nodm/Config.in b/package/nodm/Config.in index 97ce8c39c8..38171e8dcf 100644 --- a/package/nodm/Config.in +++ b/package/nodm/Config.in @@ -4,7 +4,6 @@ config BR2_PACKAGE_NODM depends on (BR2_ENABLE_LOCALE && BR2_USE_WCHAR) # linux-pam depends on !BR2_STATIC_LIBS # linux-pam depends on !BR2_TOOLCHAIN_USES_MUSL # linux-pam - depends on !BR2_TOOLCHAIN_USES_UCLIBC # needs wordexp.h depends on BR2_USE_MMU # linux-pam select BR2_PACKAGE_XLIB_LIBX11 select BR2_PACKAGE_LINUX_PAM @@ -19,8 +18,7 @@ config BR2_PACKAGE_NODM https://github.com/spanezz/nodm/ -comment "nodm needs a glibc toolchain w/ wchar, locale, dynamic library" +comment "nodm needs a glibc or uClibc toolchain w/ wchar, locale, dynamic library" depends on BR2_PACKAGE_XORG7 depends on !(BR2_ENABLE_LOCALE && BR2_USE_WCHAR) \ - || BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_MUSL \ - || BR2_TOOLCHAIN_USES_UCLIBC + || BR2_STATIC_LIBS || BR2_TOOLCHAIN_USES_MUSL |