diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2013-07-31 14:12:35 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-07-31 19:14:56 +0200 |
commit | a3e7fc8e6592eb6b24adaad1f4c1dfdd28cd729d (patch) | |
tree | 96ce4af3f4279d4f9a026352321826ed2974654f /package/libedit/Config.in | |
parent | 07398f7b43af41a2af5e1b843415d0c9550d32c1 (diff) | |
download | buildroot-a3e7fc8e6592eb6b24adaad1f4c1dfdd28cd729d.tar.gz buildroot-a3e7fc8e6592eb6b24adaad1f4c1dfdd28cd729d.zip |
libedit: really needs wchar support
wctype.h is always included, even in configure tests.
Fixes:
http://autobuild.buildroot.net/results/ed8/ed85b9d688ad8389895e3ecd7a6a18151efc328d/
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libedit/Config.in')
-rw-r--r-- | package/libedit/Config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/libedit/Config.in b/package/libedit/Config.in index 4747a38ae0..72b0cf107b 100644 --- a/package/libedit/Config.in +++ b/package/libedit/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_LIBEDIT bool "libedit" + depends on BR2_USE_WCHAR select BR2_PACKAGE_NCURSES help The editline library (from BSD) provides generic line editing @@ -12,3 +13,6 @@ config BR2_PACKAGE_LIBEDIT in Buildroot as it makes it much simpler than using the upstream sources which require pmake: http://www.thrysoee.dk/editline/ + +comment "libedit requires a toolchain with WCHAR support" + depends on !BR2_USE_WCHAR |