5c5077e117
Commit 006a328ad6
("util-linux: fix build with ncurses") removed
dependency on BR2_USE_WCHAR, but failed to update the reverse
dependencies of util-linux.
This commit updates comments in Config.in for BR2_USE_WCHAR for reverse
dependencies of util-linux which directly uses wchar now or when it is
pulled from other dependencies.
eudev doesn't use wchar directly, but needs C99 compiler. Autotools
generate code with wchar_t for checking C99 compiler.
Signed-off-by: Rahul Bedarkar <rahul.bedarkar@imgtec.com>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
18 lines
558 B
Plaintext
18 lines
558 B
Plaintext
config BR2_PACKAGE_E2TOOLS
|
|
bool "e2tools"
|
|
select BR2_PACKAGE_E2FSPROGS
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_WCHAR # uses wchar_t
|
|
depends on BR2_USE_MMU # e2fsprogs
|
|
help
|
|
E2tools is a simple set of GPL'ed utilities to read, write,
|
|
and manipulate files in an ext2/ext3 filesystem. These
|
|
utilities access a filesystem directly using the ext2fs
|
|
library.
|
|
|
|
https://github.com/ndim/e2tools
|
|
|
|
comment "e2tools needs a toolchain w/ threads, wchar"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
|
|
depends on BR2_USE_MMU
|