From patchwork Wed May 22 12:35:29 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Will Newton X-Patchwork-Id: 245603 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 CE9E02C0089 for ; Wed, 22 May 2013 22:35:35 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 23861A0249; Wed, 22 May 2013 12:35:32 +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 D8kPjbJzpGSN; Wed, 22 May 2013 12:35:30 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 446ABA0219; Wed, 22 May 2013 12:35:30 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 8C41C8F7AF for ; Wed, 22 May 2013 12:35:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 46D2B317F3 for ; Wed, 22 May 2013 12:35:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zqElff7fZBCz for ; Wed, 22 May 2013 12:35:30 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-ob0-f179.google.com (mail-ob0-f179.google.com [209.85.214.179]) by silver.osuosl.org (Postfix) with ESMTPS id 9525A31473 for ; Wed, 22 May 2013 12:35:30 +0000 (UTC) Received: by mail-ob0-f179.google.com with SMTP id ta14so1030882obb.10 for ; Wed, 22 May 2013 05:35:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=oFSZ+Y1lzqyme+vBgGRXQ+A8pZEvW0Lvq1BkbT/Reow=; b=KUxMPXojLnJ4UEJ21JhPW5WBI7rIYF5OmGOpVDp8XUUNlmHrT4VvLn6LoD8szpg572 qeaqrK0VOg1fZjf8KusWRptiiBb4iCj6qOQTdEz1DSOHn7wF0lfOP+kTHIHvtzc9bY6e cenjJfh4QTPfN6wpACT6Hn7o2styUJsQ1OCCmu8V9sLJ9OioFtxfK8gPkF9T7Vo7f78E iZ1szhgk7x4lpYgf6FtJoXfYsL6BXUGky3mBOUqJnS1u3TZv1x217TmCZ0oB8LisYbQK VIJ2/1PAj0l+3LUe8HF3Peg8eKpf+jIWSojXMzFwW1FewnxFrLZST6LjpGNefdvmdtr1 Q0kw== MIME-Version: 1.0 X-Received: by 10.60.40.36 with SMTP id u4mr4391131oek.93.1369226129729; Wed, 22 May 2013 05:35:29 -0700 (PDT) Received: by 10.76.85.135 with HTTP; Wed, 22 May 2013 05:35:29 -0700 (PDT) Date: Wed, 22 May 2013 13:35:29 +0100 Message-ID: From: Will Newton To: Buildroot List Subject: [Buildroot] [PATCH] boost: Limit architectures which can build boost context library. 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: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net The boost context library needs porting to each new architecture and only a limited number of ports are currently available. Signed-off-by: Will Newton --- package/boost/Config.in | 2 ++ 1 file changed, 2 insertions(+) -- 1.8.1.4 diff --git a/package/boost/Config.in b/package/boost/Config.in index e36e7d3..5c65b2f 100644 --- a/package/boost/Config.in +++ b/package/boost/Config.in @@ -23,6 +23,8 @@ config BR2_PACKAGE_BOOST_CHRONO config BR2_PACKAGE_BOOST_CONTEXT bool "boost-context" + depends on (BR2_arm || BR2_armeb || BR2_i386 || BR2_mips || BR2_mipsel \ + || BR2_powerpc || BR2_sparc || BR2_x86_64) config BR2_PACKAGE_BOOST_DATE_TIME bool "boost-date_time"