From patchwork Mon Jun 18 08:20:17 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 165412 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 7A832B72D2 for ; Mon, 18 Jun 2012 18:20:36 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 5AD0010B8E7; Mon, 18 Jun 2012 08:20:35 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id JPb-ooraZdxm; Mon, 18 Jun 2012 08:20:33 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id E8198101FAB; Mon, 18 Jun 2012 08:20:32 +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 A650E8F753 for ; Mon, 18 Jun 2012 08:20:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 8DD8F8CAE6 for ; Mon, 18 Jun 2012 08:20:31 +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 Ev8r36vagvwE for ; Mon, 18 Jun 2012 08:20:30 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (mail.free-electrons.com [88.190.12.23]) by whitealder.osuosl.org (Postfix) with ESMTP id E8E0A8C7CF for ; Mon, 18 Jun 2012 08:20:29 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id C74B5219; Mon, 18 Jun 2012 10:20:21 +0200 (CEST) Received: from localhost (col31-4-88-188-83-94.fbx.proxad.net [88.188.83.94]) by mail.free-electrons.com (Postfix) with ESMTPSA id BA60F13E for ; Mon, 18 Jun 2012 10:20:11 +0200 (CEST) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Mon, 18 Jun 2012 10:20:17 +0200 Message-Id: <1340007618-7387-1-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.7.9.5 Subject: [Buildroot] [PATCH] collectd: needs 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/28f10dcc772809d53315f6dfb37bb41d77183abe/. Signed-off-by: Thomas Petazzoni --- package/collectd/Config.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/collectd/Config.in b/package/collectd/Config.in index cb96fbd..96438c0 100644 --- a/package/collectd/Config.in +++ b/package/collectd/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_COLLECTD bool "collectd" + depends on BR2_TOOLCHAIN_HAS_THREADS help collectd is a daemon which collects system performance statistics periodically and provides mechanisms to store @@ -380,3 +381,6 @@ config BR2_PACKAGE_COLLECTD_WRITEHTTP endmenu endif + +comment "collectd needs a toolchain with thread support" + depends on !BR2_TOOLCHAIN_HAS_THREADS