From patchwork Mon Feb 13 16:13:19 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gwenhael Goavec-Merou X-Patchwork-Id: 727406 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3vMVtX6VKNz9s7R for ; Tue, 14 Feb 2017 03:12:04 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 78F0C3052F; Mon, 13 Feb 2017 16:11:59 +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 rKIC1x+92XKl; Mon, 13 Feb 2017 16:11:56 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 9ECC02A245; Mon, 13 Feb 2017 16:11:55 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id C7DE91C01DA for ; Mon, 13 Feb 2017 16:11:51 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id C5E3181F0A for ; Mon, 13 Feb 2017 16:11: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 GtEy-fR3Butd for ; Mon, 13 Feb 2017 16:11:50 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from mail.femto-st.fr (lifc.univ-fcomte.fr [194.57.88.66]) by whitealder.osuosl.org (Postfix) with ESMTPS id CE3AC81E0F for ; Mon, 13 Feb 2017 16:11:49 +0000 (UTC) Received: from x230.femto-st.fr (wifi-personnels.ens2m.fr [194.167.45.222] (may be forged)) (authenticated bits=0) by mail.femto-st.fr (8.14.4/8.14.4/Debian-4+deb7u1) with ESMTP id v1DGBlLo031671; Mon, 13 Feb 2017 17:11:47 +0100 From: Gwenhael Goavec-Merou To: buildroot@busybox.net Date: Mon, 13 Feb 2017 17:13:19 +0100 Message-Id: <20170213161319.25131-2-gwenj@trabucayre.com> X-Mailer: git-send-email 2.10.2 In-Reply-To: <20170213161319.25131-1-gwenj@trabucayre.com> References: <20170213161319.25131-1-gwenj@trabucayre.com> X-Scanned-By: MIMEDefang 2.71 on 194.57.88.66 Cc: Thomas Petazzoni , Gwenhael Goavec-Merou Subject: [Buildroot] [PATCH 2/2] gqrx: suppress audio backend dependencies 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" From: Gwenhael Goavec-Merou Now gr-audio selects an audio backend by default. Consequently, it is no more needed to depends on BR2_PACKAGE_ALSA_LIB or BR2_PACKAGE_PORTAUDIO. Signed-off-by: Gwenhael Goavec-Merou --- package/gqrx/Config.in | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/package/gqrx/Config.in b/package/gqrx/Config.in index 5f7a561..1dc40c6 100644 --- a/package/gqrx/Config.in +++ b/package/gqrx/Config.in @@ -2,13 +2,12 @@ comment "gqrx needs a toolchain w/ C++, threads, wchar" depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \ !BR2_USE_WCHAR -comment "gqrx needs qt5, gnuradio, fftw's single precision, alsa-lib or portaudio" +comment "gqrx needs qt5, gnuradio, fftw's single precision" depends on !BR2_PACKAGE_GNURADIO || !BR2_PACKAGE_FFTW_PRECISION_SINGLE || \ - !(BR2_PACKAGE_ALSA_LIB || BR2_PACKAGE_PORTAUDIO) || !BR2_PACKAGE_QT5 + !BR2_PACKAGE_QT5 config BR2_PACKAGE_GQRX bool "gqrx" - depends on BR2_PACKAGE_ALSA_LIB || BR2_PACKAGE_PORTAUDIO # gr-audio depends on BR2_PACKAGE_FFTW_PRECISION_SINGLE # gnuradio depends on BR2_PACKAGE_GNURADIO depends on BR2_PACKAGE_QT5