From patchwork Wed Feb 26 20:48:15 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 324625 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 3EF802C0090 for ; Thu, 27 Feb 2014 07:48:24 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 182198BD09; Wed, 26 Feb 2014 20:48:23 +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 6HVNURW6Oi8p; Wed, 26 Feb 2014 20:48:21 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 03EBE8BCFF; Wed, 26 Feb 2014 20:48:21 +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 0E0461BF9B9 for ; Wed, 26 Feb 2014 20:48:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id D9BCA32AC1 for ; Wed, 26 Feb 2014 20:48:18 +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 bvnuR8re1GQh for ; Wed, 26 Feb 2014 20:48:17 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (top.free-electrons.com [176.31.233.9]) by silver.osuosl.org (Postfix) with ESMTP id BCB0B3165E for ; Wed, 26 Feb 2014 20:48:17 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 45CE97E9; Wed, 26 Feb 2014 21:48:18 +0100 (CET) Received: from localhost (13-105-190-109.dsl.ovh.fr [109.190.105.13]) by mail.free-electrons.com (Postfix) with ESMTPSA id DEB1C7A9 for ; Wed, 26 Feb 2014 21:48:17 +0100 (CET) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Wed, 26 Feb 2014 21:48:15 +0100 Message-Id: <1393447695-16154-1-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.8.3.2 Subject: [Buildroot] [PATCH] cegui06: need dynamic library support 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/caf/caf421629f4465cd347dc40af0b559c4d9b0c09f/ Signed-off-by: Thomas Petazzoni --- package/cegui06/Config.in | 5 +++-- package/spice/Config.in | 4 ++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/package/cegui06/Config.in b/package/cegui06/Config.in index 92bbb70..f03e488 100644 --- a/package/cegui06/Config.in +++ b/package/cegui06/Config.in @@ -1,10 +1,11 @@ -comment "cegui06 needs a toolchain w/ C++, threads" - depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP +comment "cegui06 needs a toolchain w/ C++, threads, dynamic library" + depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP || BR2_PREFER_STATIC_LIB config BR2_PACKAGE_CEGUI06 bool "cegui06" depends on BR2_TOOLCHAIN_HAS_THREADS depends on BR2_INSTALL_LIBSTDCPP + depends on !BR2_PREFER_STATIC_LIB select BR2_PACKAGE_EXPAT select BR2_PACKAGE_FREETYPE select BR2_PACKAGE_PCRE diff --git a/package/spice/Config.in b/package/spice/Config.in index 9bddb06..b95e32e 100644 --- a/package/spice/Config.in +++ b/package/spice/Config.in @@ -50,11 +50,15 @@ comment "client needs a toolchain w/ threads, C++" config BR2_PACKAGE_SPICE_GUI bool "Enable GUI" depends on BR2_PACKAGE_SPICE_CLIENT + depends on !BR2_PREFER_STATIC_LIB select BR2_PACKAGE_CEGUI06 help Say 'y' here to enable the Graphical User Interface (GUI) start dialog. +comment "gui needs a toolchain w/ dynamic library" + depends on BR2_PREFER_STATIC_LIB + config BR2_PACKAGE_SPICE_TUNNEL bool "Enable network redirection" select BR2_PACKAGE_SLIRP