From patchwork Thu Jan 16 07:49:34 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Baruch Siach X-Patchwork-Id: 311610 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id F0C032C00A0 for ; Thu, 16 Jan 2014 18:49:56 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 568DD8CADF; Thu, 16 Jan 2014 07:49:55 +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 wXduakJPBN-E; Thu, 16 Jan 2014 07:49:52 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id D301A8CAC4; Thu, 16 Jan 2014 07:49:51 +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 3AF781BF86F for ; Thu, 16 Jan 2014 07:49:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 359648C603 for ; Thu, 16 Jan 2014 07:49:50 +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 ZEY30VNv0Pfm for ; Thu, 16 Jan 2014 07:49:47 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mx.tkos.co.il (guitar.tcltek.co.il [192.115.133.116]) by whitealder.osuosl.org (Postfix) with ESMTP id 8CD628CAC0 for ; Thu, 16 Jan 2014 07:49:47 +0000 (UTC) Received: from tarshish.tkos.co.il (unknown [10.0.8.6]) by mx.tkos.co.il (Postfix) with ESMTPSA id C20574409D3; Thu, 16 Jan 2014 09:49:45 +0200 (IST) From: Baruch Siach To: buildroot@busybox.net Date: Thu, 16 Jan 2014 09:49:34 +0200 Message-Id: X-Mailer: git-send-email 1.8.5.2 Subject: [Buildroot] [PATCH] tvheadend: disable when NPTL is missing 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/0ae/0ae5c5158215a48d4d4849f52837bbe4b36db381/. Signed-off-by: Baruch Siach --- package/tvheadend/Config.in | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/package/tvheadend/Config.in b/package/tvheadend/Config.in index 04bcde122d56..da60f83a9c0e 100644 --- a/package/tvheadend/Config.in +++ b/package/tvheadend/Config.in @@ -1,5 +1,6 @@ comment "tvheadend needs a toolchain w/ largefile, IPv6, threads" - depends on !BR2_avr32 + depends on !BR2_avr32 && !BR2_xtensa && !BR2_arc + depends on !BR2_PTHREADS && !BR2_PTHREADS_OLD depends on !BR2_LARGEFILE || !BR2_INET_IPV6 || !BR2_TOOLCHAIN_HAS_THREADS config BR2_PACKAGE_TVHEADEND @@ -12,6 +13,10 @@ config BR2_PACKAGE_TVHEADEND # context of Buildroot, the only really problematic # architecture is avr32, which uses gcc 4.2. depends on !BR2_avr32 + # clock_nanosleep needs NPTL + depends on !BR2_PTHREADS && !BR2_PTHREADS_OLD + # no NPTL for these archs + depends on !BR2_xtensa && !BR2_arc select BR2_PACKAGE_DVB_APPS select BR2_PACKAGE_OPENSSL help