From patchwork Sun Jun 22 12:27:45 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 362540 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 D6D3F140082 for ; Sun, 22 Jun 2014 22:28:06 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id BD7CC321FC; Sun, 22 Jun 2014 12:28:04 +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 y81I+vLxA2ri; Sun, 22 Jun 2014 12:28:02 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 436DF30082; Sun, 22 Jun 2014 12:28:02 +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 A2BAF1BF97E for ; Sun, 22 Jun 2014 12:28:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 9DBF98BE2D for ; Sun, 22 Jun 2014 12:28:01 +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 QyQ9NVjRr4H1 for ; Sun, 22 Jun 2014 12:27:59 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id 90BD08C1BA for ; Sun, 22 Jun 2014 12:27:59 +0000 (UTC) Received: from asgard (host213.190-31-126.telecom.net.ar [190.31.126.213]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.9/8.14.9) with ESMTP id s5MCRqgD004248 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 22 Jun 2014 12:27:54 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1403440076; bh=5si/IeZ4Kg0REXNMjO5SklD4ox1fsdhMVhmitRTmAMY=; h=From:To:Cc:Subject:Date; b=EjtlqtLvtR/n0uLm2I8l1cDKp6mItpLT768njabXshEgJwsY3yZCtgn7oAKVaw/Se 5f837l0svIzEs3whZfUq7jXlKVnT3c0pLn67FqTvS/lTXT6l0hFa64G6QdMjwqilTC OnTXhUeRzZ5rVx0EhYd1LiJ4OnlMGPBOiBkmhBH0= Received: by asgard (sSMTP sendmail emulation); Sun, 22 Jun 2014 09:27:45 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Sun, 22 Jun 2014 09:27:45 -0300 Message-Id: <1403440065-19554-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.5.5 X-Virus-Scanned: clamav-milter 0.98.1 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] faifa: needs threads 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/a93/a93395c656169e0f08f471f12bc05f29c9ea2976/ Signed-off-by: Gustavo Zacarias Acked-by: "Yann E. MORIN" --- package/faifa/Config.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package/faifa/Config.in b/package/faifa/Config.in index 2acd505..23133b7 100644 --- a/package/faifa/Config.in +++ b/package/faifa/Config.in @@ -2,6 +2,7 @@ config BR2_PACKAGE_FAIFA bool "faifa" select BR2_PACKAGE_LIBPCAP depends on !BR2_PREFER_STATIC_LIB + depends on BR2_TOOLCHAIN_HAS_THREADS help Faifa can configure any Intellon-based Power Line Communication device using Intellon INT5000 and INT6000 @@ -11,5 +12,5 @@ config BR2_PACKAGE_FAIFA https://dev.open-plc.org -comment "faifa needs a toolchain w/ dynamic library" - depends on BR2_PREFER_STATIC_LIB +comment "faifa needs a toolchain w/ dynamic library, threads" + depends on BR2_PREFER_STATIC_LIB || !BR2_TOOLCHAIN_HAS_THREADS