From patchwork Tue Oct 24 08:17:09 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?J=C3=B6rg_Krause?= X-Patchwork-Id: 829794 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=busybox.net (client-ip=140.211.166.137; helo=fraxinus.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3yLmN24wHsz9s76 for ; Tue, 24 Oct 2017 19:17:22 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 9226687B61; Tue, 24 Oct 2017 08:17:20 +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 I7Qq8t3XEyge; Tue, 24 Oct 2017 08:17:19 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 811BE87B5D; Tue, 24 Oct 2017 08:17:19 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id B8B521C0ACA for ; Tue, 24 Oct 2017 08:17:18 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id B2AA487B61 for ; Tue, 24 Oct 2017 08:17:18 +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 bUA1yfLHnCJQ for ; Tue, 24 Oct 2017 08:17:17 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mout02.posteo.de (mout02.posteo.de [185.67.36.142]) by fraxinus.osuosl.org (Postfix) with ESMTPS id B861587B54 for ; Tue, 24 Oct 2017 08:17:17 +0000 (UTC) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 3yLmMs35q7zypd for ; Tue, 24 Oct 2017 10:17:13 +0200 (CEST) Received: from mail.embedded.rocks ([127.0.0.1]) by localhost (mail.embedded.rocks [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id mwtYLSFkvwmi; Tue, 24 Oct 2017 10:17:12 +0200 (CEST) Received: from nzxt.fritz.box (port-92-195-9-124.dynamic.qsc.de [92.195.9.124]) (Authenticated sender: joerg.krause@embedded.rocks) by mail.embedded.rocks (Postfix) with ESMTPSA; Tue, 24 Oct 2017 10:17:12 +0200 (CEST) From: =?utf-8?q?J=C3=B6rg_Krause?= To: buildroot@buildroot.org Date: Tue, 24 Oct 2017 10:17:09 +0200 Message-Id: <20171024081709.9445-1-joerg.krause@embedded.rocks> X-Mailer: git-send-email 2.14.2 MIME-Version: 1.0 Subject: [Buildroot] [PATCH] boost: add stacktrace module 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: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" The stacktrace module was added in version 1.65.0. Without having a config option for the module, it is build unconditionally. Signed-off-by: Jörg Krause --- package/boost/Config.in | 3 +++ package/boost/boost.mk | 1 + 2 files changed, 4 insertions(+) diff --git a/package/boost/Config.in b/package/boost/Config.in index 37a7e7339f..1ee5821ee1 100644 --- a/package/boost/Config.in +++ b/package/boost/Config.in @@ -158,6 +158,9 @@ config BR2_PACKAGE_BOOST_SERIALIZATION config BR2_PACKAGE_BOOST_SIGNALS bool "boost-signals" +config BR2_PACKAGE_BOOST_STACKTRACE + bool "boost-stacktrace" + config BR2_PACKAGE_BOOST_SYSTEM bool "boost-system" diff --git a/package/boost/boost.mk b/package/boost/boost.mk index 0fd6c4d0de..750b40f7d2 100644 --- a/package/boost/boost.mk +++ b/package/boost/boost.mk @@ -42,6 +42,7 @@ BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_RANDOM),,random) BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_REGEX),,regex) BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_SERIALIZATION),,serialization) BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_SIGNALS),,signals) +BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_STACKTRACE),,stacktrace) BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_SYSTEM),,system) BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_TEST),,test) BOOST_WITHOUT_FLAGS += $(if $(BR2_PACKAGE_BOOST_THREAD),,thread)