From patchwork Wed Feb 4 00:33:59 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnout Vandecappelle X-Patchwork-Id: 436080 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 D7BA0140216 for ; Wed, 4 Feb 2015 11:34:45 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 53A078B35D; Wed, 4 Feb 2015 00:34:44 +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 dJUZug1t2D2Y; Wed, 4 Feb 2015 00:34:43 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 749A78B3C1; Wed, 4 Feb 2015 00:34:43 +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 65C521D0617 for ; Wed, 4 Feb 2015 00:34:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 620BC840DF for ; Wed, 4 Feb 2015 00:34:40 +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 3utfS-M0ep5W for ; Wed, 4 Feb 2015 00:34:39 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from viper.mind.be (132.79-246-81.adsl-static.isp.belgacom.be [81.246.79.132]) by fraxinus.osuosl.org (Postfix) with ESMTPS id 07D6A840E4 for ; Wed, 4 Feb 2015 00:34:37 +0000 (UTC) Received: from [172.16.2.6] (helo=vandecaa-laptop) by viper.mind.be with esmtp (Exim 4.69) (envelope-from ) id 1YInvO-0002pk-HI; Wed, 04 Feb 2015 01:34:35 +0100 Received: from arnout by vandecaa-laptop with local (Exim 4.84) (envelope-from ) id 1YInvN-00066z-QQ; Wed, 04 Feb 2015 01:34:33 +0100 From: "Arnout Vandecappelle (Essensium/Mind)" To: buildroot@buildroot.org Date: Wed, 4 Feb 2015 01:33:59 +0100 Message-Id: <1423010059-23446-2-git-send-email-arnout@mind.be> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1423010059-23446-1-git-send-email-arnout@mind.be> References: <1423010059-23446-1-git-send-email-arnout@mind.be> Subject: [Buildroot] [PATCH 01/21] python-coherence: add missing indirect dependency on c++ 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" Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- package/python-coherence/Config.in | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package/python-coherence/Config.in b/package/python-coherence/Config.in index d4034e7..71f79f4 100644 --- a/package/python-coherence/Config.in +++ b/package/python-coherence/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_PYTHON_COHERENCE bool "python-coherence" depends on BR2_PACKAGE_PYTHON + depends on BR2_INSTALL_LIBSTDCPP # python-pyasn select BR2_PACKAGE_PYTHON_TWISTED select BR2_PACKAGE_PYTHON_ZOPE_INTERFACE select BR2_PACKAGE_PYTHON_PYASN @@ -8,3 +9,7 @@ config BR2_PACKAGE_PYTHON_COHERENCE A DLNA/UPnP Media Server and Framework for the Digital Living. http://coherence-project.org/ + +comment "python-coherence needs a toolchain w/ C++" + depends on BR2_PACKAGE_PYTHON + depends on !BR2_INSTALL_LIBSTDCPP