From patchwork Fri Aug 23 23:14:13 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sagaert Johan X-Patchwork-Id: 269568 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 9FE012C00B1 for ; Sat, 24 Aug 2013 09:18:57 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 073769391A; Fri, 23 Aug 2013 23:19:33 +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 ag6eowLCzXhS; Fri, 23 Aug 2013 23:19:30 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 9FA1A936AF; Fri, 23 Aug 2013 23:19:30 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id BBE971BF97B for ; Fri, 23 Aug 2013 23:18:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id B68B98B087 for ; Fri, 23 Aug 2013 23:18:51 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id VacL281xtPSu for ; Fri, 23 Aug 2013 23:18:50 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailrelay008.isp.belgacom.be (mailrelay008.isp.belgacom.be [195.238.6.174]) by whitealder.osuosl.org (Postfix) with ESMTP id BFB688ADDB for ; Fri, 23 Aug 2013 23:18:49 +0000 (UTC) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AjgHAMrsF1JtgsI1/2dsb2JhbABagwc1rG6TaIEfF3SDASNPSzeIBbZ4kHAdhAIDl2qBLZAxgyA6 Received: from 53.194-130-109.adsl-dyn.isp.belgacom.be (HELO debian605.apex) ([109.130.194.53]) by relay.skynet.be with ESMTP; 24 Aug 2013 01:18:38 +0200 From: Sagaert Johan To: buildroot@busybox.net Date: Sat, 24 Aug 2013 01:14:13 +0200 Message-Id: <1377299653-9977-1-git-send-email-sagaert.johan@skynet.be> X-Mailer: git-send-email 1.8.3.2 Cc: Sagaert Johan Subject: [Buildroot] [PATCH 1/1] Phonon needs libglib2 or else it's functionality tests will fail. 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: Sagaert Johan --- package/qt/Config.in | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/package/qt/Config.in b/package/qt/Config.in index 35e8208..2541875 100644 --- a/package/qt/Config.in +++ b/package/qt/Config.in @@ -264,7 +264,8 @@ source "package/qt/Config.keyboard.in" config BR2_PACKAGE_QT_PHONON bool "Phonon Module" - depends on BR2_PACKAGE_GSTREAMER + depends on BR2_PACKAGE_GSTREAMER + depends on BR2_PACKAGE_LIBGLIB2 select BR2_PACKAGE_GST_PLUGINS_BASE default y help @@ -272,8 +273,8 @@ config BR2_PACKAGE_QT_PHONON formats can be configured at the GStreamer package. If unsure, say n. -comment "Phonon module needs gstreamer" - depends on !BR2_PACKAGE_GSTREAMER +comment "Phonon module needs gstreamer and libglib2" + depends on !BR2_PACKAGE_GSTREAMER || !BR2_PACKAGE_LIBGLIB2 config BR2_PACKAGE_QT_PHONON_BACKEND bool "Phonon Module Backend"