]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
libnl: requires thread support
authorGustavo Zacarias <gustavo@zacarias.com.ar>
Thu, 26 Jul 2012 17:46:42 +0000 (14:46 -0300)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Mon, 30 Jul 2012 17:19:09 +0000 (19:19 +0200)
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>
package/hostapd/Config.in
package/iw/Config.in
package/libnl/Config.in
package/ti-utils/Config.in

index 4a474c37edc33d693da6b2ec9e65d328851f8ce1..49e8400fa30595008351c84cf6f1982900058a51 100644 (file)
@@ -1,5 +1,6 @@
 config BR2_PACKAGE_HOSTAPD
        bool "hostapd"
+       depends on BR2_TOOLCHAIN_HAS_THREADS # libnl
        select BR2_PACKAGE_LIBNL
        help
          User space daemon for wireless access points.
@@ -23,3 +24,6 @@ config BR2_PACKAGE_HOSTAPD_WPS
          Enable support for Wi-Fi Protected Setup.
 
 endif
+
+comment "hostapd requires a toolchain with thread support"
+       depends on !BR2_TOOLCHAIN_HAS_THREADS
index 81584e781439f3278df75c4422b10a9c102e718a..69ef675b5bb28a8824886c38ef1d0dec2451a505 100644 (file)
@@ -1,7 +1,11 @@
 config BR2_PACKAGE_IW
        bool "iw"
+       depends on BR2_TOOLCHAIN_HAS_THREADS # libnl
        select BR2_PACKAGE_LIBNL
        help
          Utility for wireless devices using the mac80211 kernel stack
 
          http://wireless.kernel.org/en/users/Documentation/iw
+
+comment "iw requires a toolchain with thread support"
+       depends on !BR2_TOOLCHAIN_HAS_THREADS
index c7d435983b15a8e1d9442493cb4472cfc213f90b..f4a1dc2504c579022e88c10b0e1313dabe71022c 100644 (file)
@@ -1,5 +1,6 @@
 config BR2_PACKAGE_LIBNL
        bool "libnl"
+       depends on BR2_TOOLCHAIN_HAS_THREADS
        help
          A library for applications dealing with netlink socket.
 
@@ -10,3 +11,6 @@ config BR2_PACKAGE_LIBNL_TOOLS
        depends on BR2_PACKAGE_LIBNL
        help
          Install binary tools.
+
+comment "libnl requires a toolchain with thread support"
+       depends on !BR2_TOOLCHAIN_HAS_THREADS
index 02ae336dcca75ce12f24b03e176be579b5303d70..94d620458d7083a7bb7c149241dd4a476e40454d 100644 (file)
@@ -1,8 +1,12 @@
 config BR2_PACKAGE_TI_UTILS
        bool "ti-utils"
+       depends on BR2_TOOLCHAIN_HAS_THREADS # libnl
        select BR2_PACKAGE_LIBNL
        help
          The calibrator and other useful utilities for TI wireless solution,
          based on wl12xx driver.
 
          http://linuxwireless.org/en/users/Drivers/wl12xx/calibrator
+
+comment "ti-utils requires a toolchain with thread support"
+       depends on !BR2_TOOLCHAIN_HAS_THREADS