e43b76d716
This commit switches to use the new gettext logic, which involves: - using TARGET_NLS_DEPENDENCIES instead of hand-encoded dependencies on gettext/host-gettext - using TARGET_NLS_LIBS to force linking against libintl - dropping BR2_PACKAGE_GETTEXT selection Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
19 lines
545 B
Plaintext
19 lines
545 B
Plaintext
config BR2_PACKAGE_POWERTOP
|
|
bool "powertop"
|
|
depends on !BR2_bfin # pciutils
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # libnl
|
|
depends on BR2_USE_WCHAR
|
|
select BR2_PACKAGE_NCURSES
|
|
select BR2_PACKAGE_PCIUTILS
|
|
select BR2_PACKAGE_LIBNL
|
|
help
|
|
A tool to diagnose issues with power consumption and power management
|
|
|
|
https://01.org/powertop/
|
|
|
|
comment "powertop needs a toolchain w/ C++, threads, wchar"
|
|
depends on !BR2_bfin
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_USE_WCHAR
|