From patchwork Thu Feb 20 13:34:10 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnout Vandecappelle X-Patchwork-Id: 322187 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 A29BA2C00C8 for ; Fri, 21 Feb 2014 00:35:02 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id D72AF8B087; Thu, 20 Feb 2014 13:35:01 +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 CZUkIn_JfLJG; Thu, 20 Feb 2014 13:34:59 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 440888B083; Thu, 20 Feb 2014 13:34:59 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 9DADE1CE9B5 for ; Thu, 20 Feb 2014 13:34:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 97F9193C14 for ; Thu, 20 Feb 2014 13:34:58 +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 nlFofUnTHks1 for ; Thu, 20 Feb 2014 13:34:57 +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 hemlock.osuosl.org (Postfix) with ESMTPS id 31D8893C13 for ; Thu, 20 Feb 2014 13:34:56 +0000 (UTC) Received: from [172.16.2.6] (helo=vandecaa-laptop) by viper.mind.be with esmtp (Exim 4.69) (envelope-from ) id 1WGTqc-0005vM-GS; Thu, 20 Feb 2014 14:39:31 +0100 Received: from arnout by vandecaa-laptop with local (Exim 4.82) (envelope-from ) id 1WGTle-0002g3-F6; Thu, 20 Feb 2014 14:34:22 +0100 From: "Arnout Vandecappelle (Essensium/Mind)" To: buildroot@buildroot.org Date: Thu, 20 Feb 2014 14:34:10 +0100 Message-Id: <1392903252-10253-1-git-send-email-arnout@mind.be> X-Mailer: git-send-email 1.9.rc1 Subject: [Buildroot] [PATCH 1/3] xscreensaver: add missing indirect dependencies from libgtk2 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 Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- package/xscreensaver/Config.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package/xscreensaver/Config.in b/package/xscreensaver/Config.in index 21a19d0..e2534a6 100644 --- a/package/xscreensaver/Config.in +++ b/package/xscreensaver/Config.in @@ -3,6 +3,8 @@ config BR2_PACKAGE_XSCREENSAVER depends on BR2_PACKAGE_XORG7 depends on BR2_INSTALL_LIBSTDCPP # libgtk2->pango depends on BR2_TOOLCHAIN_HAS_THREADS # libgtk2->glib2 + depends on BR2_USE_WCHAR # libgtk2->glib2 + depends on BR2_USE_MMU # libgtk2->glib2 select BR2_PACKAGE_LIBGTK2 select BR2_PACKAGE_LIBGLADE select BR2_PACKAGE_JPEG @@ -18,6 +20,7 @@ config BR2_PACKAGE_XSCREENSAVER http://www.jwz.org/xscreensaver/ -comment "xscreensaver needs a toolchain w/ C++, threads" +comment "xscreensaver needs a toolchain w/ wchar, C++, threads" depends on BR2_PACKAGE_XORG7 + depends on BR2_USE_MMU depends on !(BR2_INSTALL_LIBSTDCPP && BR2_TOOLCHAIN_HAS_THREADS)