libnl: requires thread support

Fixes
http://autobuild.buildroot.net/results/813602e91ad4022957b3bc8d285ddb2b05d3b875/build-end.log

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Gustavo Zacarias 2012-07-26 14:46:42 -03:00 committed by Thomas Petazzoni
parent 0d27d8cb46
commit 065bf8a4d6
4 changed files with 16 additions and 0 deletions

View File

@ -1,5 +1,6 @@
config BR2_PACKAGE_HOSTAPD config BR2_PACKAGE_HOSTAPD
bool "hostapd" bool "hostapd"
depends on BR2_TOOLCHAIN_HAS_THREADS # libnl
select BR2_PACKAGE_LIBNL select BR2_PACKAGE_LIBNL
help help
User space daemon for wireless access points. User space daemon for wireless access points.
@ -23,3 +24,6 @@ config BR2_PACKAGE_HOSTAPD_WPS
Enable support for Wi-Fi Protected Setup. Enable support for Wi-Fi Protected Setup.
endif endif
comment "hostapd requires a toolchain with thread support"
depends on !BR2_TOOLCHAIN_HAS_THREADS

View File

@ -1,7 +1,11 @@
config BR2_PACKAGE_IW config BR2_PACKAGE_IW
bool "iw" bool "iw"
depends on BR2_TOOLCHAIN_HAS_THREADS # libnl
select BR2_PACKAGE_LIBNL select BR2_PACKAGE_LIBNL
help help
Utility for wireless devices using the mac80211 kernel stack Utility for wireless devices using the mac80211 kernel stack
http://wireless.kernel.org/en/users/Documentation/iw http://wireless.kernel.org/en/users/Documentation/iw
comment "iw requires a toolchain with thread support"
depends on !BR2_TOOLCHAIN_HAS_THREADS

View File

@ -1,5 +1,6 @@
config BR2_PACKAGE_LIBNL config BR2_PACKAGE_LIBNL
bool "libnl" bool "libnl"
depends on BR2_TOOLCHAIN_HAS_THREADS
help help
A library for applications dealing with netlink socket. A library for applications dealing with netlink socket.
@ -10,3 +11,6 @@ config BR2_PACKAGE_LIBNL_TOOLS
depends on BR2_PACKAGE_LIBNL depends on BR2_PACKAGE_LIBNL
help help
Install binary tools. Install binary tools.
comment "libnl requires a toolchain with thread support"
depends on !BR2_TOOLCHAIN_HAS_THREADS

View File

@ -1,8 +1,12 @@
config BR2_PACKAGE_TI_UTILS config BR2_PACKAGE_TI_UTILS
bool "ti-utils" bool "ti-utils"
depends on BR2_TOOLCHAIN_HAS_THREADS # libnl
select BR2_PACKAGE_LIBNL select BR2_PACKAGE_LIBNL
help help
The calibrator and other useful utilities for TI wireless solution, The calibrator and other useful utilities for TI wireless solution,
based on wl12xx driver. based on wl12xx driver.
http://linuxwireless.org/en/users/Drivers/wl12xx/calibrator http://linuxwireless.org/en/users/Drivers/wl12xx/calibrator
comment "ti-utils requires a toolchain with thread support"
depends on !BR2_TOOLCHAIN_HAS_THREADS