mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 00:20:38 -09:00
Since procps-ng was bumped from 3.3.17 to 4.0.4 in commitd79f40dbbe("package/procps-ng: security bump to version 4.0.4"), the build has been failing on !wchar configurations with: src/ps/output.c:68:10: fatal error: wctype.h: No such file or directory 68 | #include <wctype.h> | ^~~~~~~~~~ compilation terminated. The problematic code has been added by upstream commit605ea4a8f7, which landed in upstream release v4.0.0. To solve this, we simply add a BR2_USE_WCHAR dependency, and update the comment related to this dependency on the only reverse dependency of procps-ng. Fixes: http://autobuild.buildroot.net/results/afc035e866bec6f2c14f9d52fa74a9c1897706de/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Julien Olivain <ju.o@free.fr>
27 lines
693 B
Plaintext
27 lines
693 B
Plaintext
comment "procps-ng needs a toolchain w/ wchar"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
|
depends on !BR2_USE_WCHAR
|
|
|
|
config BR2_PACKAGE_PROCPS_NG
|
|
bool "procps-ng"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
|
depends on BR2_USE_WCHAR
|
|
select BR2_PACKAGE_NCURSES
|
|
help
|
|
Standard informational utilities and process-handling tools.
|
|
Provides things like kill, ps, uptime, free, top, etc...
|
|
|
|
http://sourceforge.net/projects/procps-ng/
|
|
|
|
if BR2_PACKAGE_PROCPS_NG
|
|
|
|
config BR2_PACKAGE_PROCPS_NG_ORIGINAL_TOP
|
|
bool "Use original top layout"
|
|
help
|
|
Disable modern top layout, return to original top with
|
|
detailed cpu usage.
|
|
|
|
endif
|