From patchwork Thu Jul 26 17:46:42 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 173468 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 47A852C00A0 for ; Fri, 27 Jul 2012 03:47:38 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id AD87D32C4C; Thu, 26 Jul 2012 17:47:36 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DluOKcwLYL8v; Thu, 26 Jul 2012 17:47:19 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 4E1DE32C47; Thu, 26 Jul 2012 17:47:15 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id DBBDB8F753 for ; Thu, 26 Jul 2012 17:47:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id C6A148FBF5 for ; Thu, 26 Jul 2012 17:47:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id JMC-mXU0u0nj for ; Thu, 26 Jul 2012 17:47:03 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [85.10.205.246]) by whitealder.osuosl.org (Postfix) with ESMTPS id EF8AF8FC07 for ; Thu, 26 Jul 2012 17:46:50 +0000 (UTC) Received: from asgard (host45.186-125-85.telecom.net.ar [186.125.85.45]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.5/8.14.5) with ESMTP id q6QHkhVM017128 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 26 Jul 2012 17:46:46 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1343324808; bh=NV9JuQkPXDy8EPir4D//C+wzD9X1m5dW2619riirb9Q=; h=From:To:Cc:Subject:Date; b=VwbX+92UW7mqLviEXaUAL4HRt3z60lfQC/uCfq55FDgEM5kWqU9j0wvC6avPCP88C U37eg1drM14y9YP/XaJIlwokDW/+/Xku9sLd0yxkKxWf9kivvMnFyrKUrIOGowKuCU rOTpP7fbxI75hmkRELuYvQmXRzWcvWV6A8BWLCZc= Received: by asgard (sSMTP sendmail emulation); Thu, 26 Jul 2012 14:46:43 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Thu, 26 Jul 2012 14:46:42 -0300 Message-Id: <1343324802-7032-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.8.6 X-Virus-Scanned: clamav-milter 0.97.3 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] libnl: requires thread support X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Fixes http://autobuild.buildroot.net/results/813602e91ad4022957b3bc8d285ddb2b05d3b875/build-end.log Signed-off-by: Gustavo Zacarias --- package/hostapd/Config.in | 4 ++++ package/iw/Config.in | 4 ++++ package/libnl/Config.in | 4 ++++ package/ti-utils/Config.in | 4 ++++ 4 files changed, 16 insertions(+), 0 deletions(-) diff --git a/package/hostapd/Config.in b/package/hostapd/Config.in index 4a474c3..49e8400 100644 --- a/package/hostapd/Config.in +++ b/package/hostapd/Config.in @@ -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 diff --git a/package/iw/Config.in b/package/iw/Config.in index 81584e7..69ef675 100644 --- a/package/iw/Config.in +++ b/package/iw/Config.in @@ -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 diff --git a/package/libnl/Config.in b/package/libnl/Config.in index c7d4359..f4a1dc2 100644 --- a/package/libnl/Config.in +++ b/package/libnl/Config.in @@ -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 diff --git a/package/ti-utils/Config.in b/package/ti-utils/Config.in index 02ae336..94d6204 100644 --- a/package/ti-utils/Config.in +++ b/package/ti-utils/Config.in @@ -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