From patchwork Mon Apr 23 13:31:37 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 154437 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 69A6EB6EEB for ; Mon, 23 Apr 2012 23:31:55 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 6634F31858; Mon, 23 Apr 2012 13:31:52 +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 llJMDWSq0v1Z; Mon, 23 Apr 2012 13:31:50 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 6E48031EEB; Mon, 23 Apr 2012 13:31:50 +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 1C4558F753 for ; Mon, 23 Apr 2012 13:31:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 134D78B8CE for ; Mon, 23 Apr 2012 13:31:49 +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 Ly2BzaIkJgBZ for ; Mon, 23 Apr 2012 13:31:48 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [74.118.36.95]) by whitealder.osuosl.org (Postfix) with ESMTPS id 51F2F8B89A for ; Mon, 23 Apr 2012 13:31:48 +0000 (UTC) Received: from asgard (host56.190-224-151.telecom.net.ar [190.224.151.56]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.4/8.14.4) with ESMTP id q3NDVhGJ027054 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 23 Apr 2012 10:31:45 -0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1335187907; bh=9YAghJC01HEYnPmMr1C/49jrtsLNUtV6oTkGVTVFFII=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References; b=qyvIzs4W5cv3x8nP+T4pAZdT8F0EmiSJulUUxs3s1XV9sqv19N4O5/TJ4KIjB18G1 x4PhR9RyibnnLcz5RvWpOI+HMWwW96kb9g7fJ50++Nv83J+p8D8/Q7LTDtVi5B/SwR WJGwYMzb5397pf0w11IjCwbeDElMfAiS6kADnrEI= Received: by asgard (sSMTP sendmail emulation); Mon, 23 Apr 2012 10:31:42 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Mon, 23 Apr 2012 10:31:37 -0300 Message-Id: <1335187897-20044-2-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.7.3.4 In-Reply-To: <1335187897-20044-1-git-send-email-gustavo@zacarias.com.ar> References: <1335187897-20044-1-git-send-email-gustavo@zacarias.com.ar> X-Virus-Scanned: clamav-milter 0.97.3 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH 2/2] mpd: add audiofile 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 Signed-off-by: Gustavo Zacarias --- package/multimedia/mpd/Config.in | 7 +++++++ package/multimedia/mpd/mpd.mk | 5 +++++ 2 files changed, 12 insertions(+), 0 deletions(-) diff --git a/package/multimedia/mpd/Config.in b/package/multimedia/mpd/Config.in index 27bd309..c7c0cd7 100644 --- a/package/multimedia/mpd/Config.in +++ b/package/multimedia/mpd/Config.in @@ -30,6 +30,13 @@ config BR2_PACKAGE_MPD_AO help Enable libao output support. +config BR2_PACKAGE_MPD_AUDIOFILE + bool "audiofile" + select BR2_PACKAGE_AUDIOFILE + help + Enable audiofile input/streaming support. + Select this if you want to play back WAV files. + config BR2_PACKAGE_MPD_PULSEAUDIO bool "pulseaudio" select BR2_PACKAGE_PULSEAUDIO diff --git a/package/multimedia/mpd/mpd.mk b/package/multimedia/mpd/mpd.mk index 095bad6..43d429b 100644 --- a/package/multimedia/mpd/mpd.mk +++ b/package/multimedia/mpd/mpd.mk @@ -21,6 +21,11 @@ MPD_DEPENDENCIES += libao MPD_CONF_OPT += --enable-ao endif +ifeq ($(BR2_PACKAGE_MPD_AUDIOFILE),y) +MPD_DEPENDENCIES += audiofile +MPD_CONF_OPT += --enable-audiofile +endif + ifeq ($(BR2_PACKAGE_MPD_PULSEAUDIO),y) MPD_DEPENDENCIES += pulseaudio MPD_CONF_OPT += --enable-pulse