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>
13 lines
337 B
Plaintext
13 lines
337 B
Plaintext
config BR2_PACKAGE_F2FS_TOOLS
|
|
bool "f2fs-tools"
|
|
select BR2_PACKAGE_UTIL_LINUX
|
|
select BR2_PACKAGE_UTIL_LINUX_LIBUUID
|
|
depends on BR2_USE_WCHAR # uses wchar_t
|
|
help
|
|
Tools for Flash-Friendly File System (F2FS)
|
|
|
|
http://sourceforge.net/projects/f2fs-tools/
|
|
|
|
comment "f2fs-tools needs a toolchain w/ wchar"
|
|
depends on !BR2_USE_WCHAR
|