From patchwork Tue Apr 30 23:23:50 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gilles Talis X-Patchwork-Id: 240702 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id B0DD22C00CB for ; Wed, 1 May 2013 09:24:29 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 73C6CA0153; Tue, 30 Apr 2013 23:24:26 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id CqWbatVOO3kg; Tue, 30 Apr 2013 23:24:24 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 58663A015A; Tue, 30 Apr 2013 23:24:24 +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 DA7058F75E for ; Tue, 30 Apr 2013 23:24:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 32AE08BFC5 for ; Tue, 30 Apr 2013 23:24:23 +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 NLXmqIxb8piB for ; Tue, 30 Apr 2013 23:24:22 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-pb0-f51.google.com (mail-pb0-f51.google.com [209.85.160.51]) by whitealder.osuosl.org (Postfix) with ESMTPS id 2B5DC8BC2C for ; Tue, 30 Apr 2013 23:24:22 +0000 (UTC) Received: by mail-pb0-f51.google.com with SMTP id rq13so492615pbb.38 for ; Tue, 30 Apr 2013 16:24:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer; bh=55I1N4CtgNjnASLsxPM9lkgEEFL9GENorm2K5uh/oVw=; b=MoqRewKk0rtS+Kj1QDUwRY2pRGruMRZ+H13ua5EN1naBQVGWfzpbWsxLreFBgdpqnj LOeg3sxaptok0N81rRRmqJs8oqYlNvOezcvV2Ah9Wx4XR9qFoU/iUEJjVh5D3XPkImrK tWETsbp33CDSi+k8A5tsBJe02Zr84hfU/UzuaH+92XrZFT093JdaDTIpGcRZW93UKwzX Ymih1ML2i8eUX8CLgHqAauJqYK9DtcqwqZNi3ige9ohhUYj/EXf1wqQ8euJmjUQO7yAD /jdu0+RiyXGe+4F2U8hEaRV55mxvg6uNbVCvJNIe6VGAXG8Tu5Agv5poTDE8E+r3zueS FGdA== X-Received: by 10.66.147.103 with SMTP id tj7mr1578736pab.82.1367364261837; Tue, 30 Apr 2013 16:24:21 -0700 (PDT) Received: from localhost.localdomain ([72.166.5.70]) by mx.google.com with ESMTPSA id sa6sm431668pbb.26.2013.04.30.16.24.20 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Tue, 30 Apr 2013 16:24:21 -0700 (PDT) From: Gilles Talis To: buildroot@busybox.net Date: Tue, 30 Apr 2013 16:23:50 -0700 Message-Id: <1367364230-29266-1-git-send-email-gilles.talis@gmail.com> X-Mailer: git-send-email 1.7.4.1 Subject: [Buildroot] [PATCH] socketcand: needs toolchain with threads 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.org/results/1d35f22a25e8641106f3c070f360cf4b4a02a461 Signed-off-by: Gilles Talis --- package/socketcand/Config.in | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/package/socketcand/Config.in b/package/socketcand/Config.in index 0d1d983..d5d02de 100644 --- a/package/socketcand/Config.in +++ b/package/socketcand/Config.in @@ -1,8 +1,12 @@ config BR2_PACKAGE_SOCKETCAND bool "socketcand" select BR2_PACKAGE_LIBCONFIG + depends on BR2_TOOLCHAIN_HAS_THREADS help Socketcand is a daemon that provides access to CAN interfaces on a machine via a network interface. https://github.com/dschanoeh/socketcand + +comment "socketcand requires a toolchain with threads support" + depends on !BR2_TOOLCHAIN_HAS_THREADS