From patchwork Thu May 23 00:24:04 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gilles Talis X-Patchwork-Id: 245787 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 DD7E92C008A for ; Thu, 23 May 2013 10:24:56 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 86DF010BC04; Thu, 23 May 2013 00:24: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 DVkByjwRIYOQ; Thu, 23 May 2013 00:24:33 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id CD4E610BBE5; Thu, 23 May 2013 00:24:25 +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 C1C3A8F7B4 for ; Thu, 23 May 2013 00:24:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id E42B48A80E for ; Thu, 23 May 2013 00:24:39 +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 Snb5UDn6WHRI for ; Thu, 23 May 2013 00:24:35 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-da0-f51.google.com (mail-da0-f51.google.com [209.85.210.51]) by whitealder.osuosl.org (Postfix) with ESMTPS id CF2268D527 for ; Thu, 23 May 2013 00:24:33 +0000 (UTC) Received: by mail-da0-f51.google.com with SMTP id h15so1313677dan.24 for ; Wed, 22 May 2013 17:24:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=Asd0B10lbtgh7S8U+OEf4erYQ+bqDqm9xfhI3rF4KRs=; b=vPvYTJT2HWzyI4ixHfY8FnpP7DnDqxyohqxI+gMyCF04K6nlL7pk/C85Fwb28lDCyg VeThgufCqH590qjIzMSB9VYDiPghXERkWKHsomRMajdFVoxfIyHkAaZczaWoYZGXaEh8 /IsHh7FKewLrGQAt0rjrz/1M8yqxTvFyZQAbpAQEbFp9RZoNe0GZW1d3KP/a+5wv0BAA Arft3S2q04MdKRChQaewqggPKYJUdWtSuRWIBK1KKNx5MZShVd7Nr07PBAefbS3sGrwe 0GVa+CMQfYXdHssD0UOcmXYUwOoQ0X/a5YGWLpZadOjLVDvbok94L266MLzW5qDxSiEY Hflg== X-Received: by 10.66.157.130 with SMTP id wm2mr10645109pab.156.1369268673177; Wed, 22 May 2013 17:24:33 -0700 (PDT) Received: from localhost.localdomain ([72.166.5.70]) by mx.google.com with ESMTPSA id gh9sm9150237pbc.37.2013.05.22.17.24.32 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Wed, 22 May 2013 17:24:32 -0700 (PDT) From: Gilles Talis To: buildroot@busybox.net Date: Wed, 22 May 2013 17:24:04 -0700 Message-Id: <1369268647-13128-2-git-send-email-gilles.talis@gmail.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1369268647-13128-1-git-send-email-gilles.talis@gmail.com> References: <1369268647-13128-1-git-send-email-gilles.talis@gmail.com> Subject: [Buildroot] [PATCH 2/5] tvheadend: 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 Signed-off-by: Gilles Talis --- package/tvheadend/Config.in | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/package/tvheadend/Config.in b/package/tvheadend/Config.in index 19ab276..7083b01 100644 --- a/package/tvheadend/Config.in +++ b/package/tvheadend/Config.in @@ -1,9 +1,10 @@ -comment "tvheadend requires a toolchain with LARGEFILE and IPv6 support" - depends on !BR2_LARGEFILE || !BR2_INET_IPV6 +comment "tvheadend needs a toolchain with LARGEFILE, IPv6 and THREADS support" + depends on !BR2_LARGEFILE || !BR2_INET_IPV6 || !BR2_TOOLCHAIN_HAS_THREADS config BR2_PACKAGE_TVHEADEND bool "tvheadend" depends on BR2_LARGEFILE && BR2_INET_IPV6 + depends on BR2_TOOLCHAIN_HAS_THREADS # tvheadend requires an atomic_add operation. Either you have # a gcc >= 4.3 toolchain and it uses the gcc intrinsics, or it # has special code for x86, x86-64, PPC and ARM. So in the