From patchwork Thu May 23 00:24:03 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gilles Talis X-Patchwork-Id: 245789 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 E4C812C008A for ; Thu, 23 May 2013 10:25:04 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 08CEC10BBBF; Thu, 23 May 2013 00:24:44 +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 P4n+fxTpg4mt; Thu, 23 May 2013 00:24:37 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id CEAD110BBF4; Thu, 23 May 2013 00:24:27 +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 ED3668F79F 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 16CB18A80E for ; Thu, 23 May 2013 00:24:40 +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 fm1nfk-aIgHl for ; Thu, 23 May 2013 00:24:35 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-pa0-f50.google.com (mail-pa0-f50.google.com [209.85.220.50]) by whitealder.osuosl.org (Postfix) with ESMTPS id D43E080A26 for ; Thu, 23 May 2013 00:24:32 +0000 (UTC) Received: by mail-pa0-f50.google.com with SMTP id fb11so984962pad.9 for ; Wed, 22 May 2013 17:24:32 -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; bh=CbExpal9+b/eTKWwSiuGZPGIom1lnuXrtEVSvyDVp9I=; b=Y/RBFw71zfE5wGA14EBOdBKxZ1R0qsIXtg4RquU3OfstEKHN3VSNP9yPhvBHKhafT0 lxa3AlDmzHbRTdlVopXVw16DH1Mhi8n3sw2HZNjVnsflyv3mnqpc3MdpQtmID7ZXt3wR /avB8GUJIs/BSN7mt2l19qqUzsLpRYoAF5lnSlx8JVAPUGtfwivACCXcLu/iyBHsVoFw tbOpFLOssDVW0bechpbA9aC9HrQTjUN8Wv3A5YzqcQdb2Ik5jasJ1RYS6kswmVZRX/ef 4iM/GwlftzzWdVLt2X3Y4uw8Wzv9cPqD8yV8nY5E5p/SQI8ZLgYnsbeGrXCnNmP613jR Nkkw== X-Received: by 10.66.154.195 with SMTP id vq3mr10803901pab.105.1369268672111; Wed, 22 May 2013 17:24:32 -0700 (PDT) Received: from localhost.localdomain ([72.166.5.70]) by mx.google.com with ESMTPSA id gh9sm9150237pbc.37.2013.05.22.17.24.31 for (version=TLSv1 cipher=RC4-SHA bits=128/128); Wed, 22 May 2013 17:24:31 -0700 (PDT) From: Gilles Talis To: buildroot@busybox.net Date: Wed, 22 May 2013 17:24:03 -0700 Message-Id: <1369268647-13128-1-git-send-email-gilles.talis@gmail.com> X-Mailer: git-send-email 1.7.4.1 Subject: [Buildroot] [PATCH 1/5] dvb-apps utilities: 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.org/results/b62/b62289809221b6455fe3db501e869271a64ea454 Signed-off-by: Gilles Talis Acked-by: "Yann E. MORIN" --- package/dvb-apps/Config.in | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/package/dvb-apps/Config.in b/package/dvb-apps/Config.in index 7f76330..a77064e 100644 --- a/package/dvb-apps/Config.in +++ b/package/dvb-apps/Config.in @@ -8,12 +8,13 @@ config BR2_PACKAGE_DVB_APPS if BR2_PACKAGE_DVB_APPS -comment "dvb-apps utils needs LARGEFILE support in the toolchain" - depends on !BR2_LARGEFILE +comment "dvb-apps utils needs a toolchain with LARGEFILE and THREADS support" + depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS config BR2_PACKAGE_DVB_APPS_UTILS bool "dvb-apps utilities" depends on BR2_LARGEFILE + depends on BR2_TOOLCHAIN_HAS_THREADS select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE help A small number of DVB test and utility programs,