From patchwork Thu Apr 9 21:54:53 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Romain Naour X-Patchwork-Id: 459839 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 B045B140218 for ; Fri, 10 Apr 2015 07:55:01 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id EC3DC9558B; Thu, 9 Apr 2015 21:55:00 +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 3INI5tuxc1PA; Thu, 9 Apr 2015 21:54:59 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id CAC9895585; Thu, 9 Apr 2015 21:54:59 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 1FFDD1C234E for ; Thu, 9 Apr 2015 21:54:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 1BCAFA35D3 for ; Thu, 9 Apr 2015 21:54:59 +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 GyxKjuWKhM_v for ; Thu, 9 Apr 2015 21:54:58 +0000 (UTC) X-Greylist: whitelisted by SQLgrey-1.7.6 Received: from smtp1-g21.free.fr (smtp1-g21.free.fr [212.27.42.1]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 81689A35C5 for ; Thu, 9 Apr 2015 21:54:58 +0000 (UTC) Received: from localhost.localdomain (unknown [81.57.22.125]) by smtp1-g21.free.fr (Postfix) with ESMTP id 7A2E094000A; Thu, 9 Apr 2015 23:53:05 +0200 (CEST) From: Romain Naour To: buildroot@buildroot.org Date: Thu, 9 Apr 2015 23:54:53 +0200 Message-Id: <1428616493-18162-1-git-send-email-romain.naour@openwide.fr> X-Mailer: git-send-email 1.9.3 Cc: thomas.petazzoni@free-electrons.com Subject: [Buildroot] [PATCH v2] package/boost: boost-log needs NPTL threads X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 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" Fixes: [xtensa] http://autobuild.buildroot.net/results/664/6642dc9c569b2820a9d0e273fc2fb1d5a635ba0a [arc] http://autobuild.buildroot.net/results/ba5/ba5836e9a77e1b48e24ace46ca1611c22524261d [bfin] http://autobuild.buildroot.net/results/8cd/8cdac9cc67394aaae09ee816a9adddec762e3bd0 Signed-off-by: Romain Naour --- v2: add comment when !BR2_TOOLCHAIN_HAS_THREADS_NPTL fix the typo "depends on" --- package/boost/Config.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/boost/Config.in b/package/boost/Config.in index 65bf605..5444c42 100644 --- a/package/boost/Config.in +++ b/package/boost/Config.in @@ -89,6 +89,10 @@ comment "boost-locale needs a toolchain w/ wchar" config BR2_PACKAGE_BOOST_LOG bool "boost-log" + depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL + +comment "boost-log needs a toolchain w/ NPTL" + depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL config BR2_PACKAGE_BOOST_MATH bool "boost-math"