From patchwork Thu Apr 3 19:01:29 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 336740 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 DF8C314008D for ; Fri, 4 Apr 2014 06:03:13 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id B0EB031CED; Thu, 3 Apr 2014 19:03:11 +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 f3EyNMTPFCjb; Thu, 3 Apr 2014 19:03:09 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id E616731C4C; Thu, 3 Apr 2014 19:02:52 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 1F58B1C2AD2 for ; Thu, 3 Apr 2014 19:02:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 1BA498BF1D for ; Thu, 3 Apr 2014 19:02:11 +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 EoL_LCE1UKBz for ; Thu, 3 Apr 2014 19:02:09 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout05.t-online.de (mailout05.t-online.de [194.25.134.82]) by fraxinus.osuosl.org (Postfix) with ESMTPS id B09078BEC4 for ; Thu, 3 Apr 2014 19:02:05 +0000 (UTC) Received: from fwd10.aul.t-online.de (fwd10.aul.t-online.de [172.20.26.152]) by mailout05.t-online.de (Postfix) with SMTP id C60F38BC1D for ; Thu, 3 Apr 2014 21:02:03 +0200 (CEST) Received: from fli4l.lan.fli4l (EkItl8ZJYhxqhjUHuCqficsb63kpxkCCwT19-0B2d32ykjCAXOQ4pTaAhj2HXzawTh@[79.247.166.166]) by fwd10.t-online.de with esmtp id 1WVmtd-0el5SS0; Thu, 3 Apr 2014 21:01:53 +0200 Received: from [192.168.1.122] (port=43827 helo=fli4lbuild64.lan.fli4l) by fli4l.lan.fli4l with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.80.1) (envelope-from ) id 1WVmtd-0004C8-44; Thu, 03 Apr 2014 21:01:53 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Thu, 3 Apr 2014 21:01:29 +0200 Message-Id: <1396551692-12371-35-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1396551692-12371-1-git-send-email-bernd.kuhls@t-online.de> References: <1396551692-12371-1-git-send-email-bernd.kuhls@t-online.de> X-ID: EkItl8ZJYhxqhjUHuCqficsb63kpxkCCwT19-0B2d32ykjCAXOQ4pTaAhj2HXzawTh X-TOI-MSGID: 706b7c78-d2f7-48f9-affa-13a4fa4171fd Cc: Bernd Kuhls Subject: [Buildroot] [PATCH v4 34/37] WIP: xbmc: Add alsa 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: Bernd Kuhls --- package/xbmc/xbmc.mk | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/package/xbmc/xbmc.mk b/package/xbmc/xbmc.mk index 6c79c4c..a46fe11 100644 --- a/package/xbmc/xbmc.mk +++ b/package/xbmc/xbmc.mk @@ -27,7 +27,6 @@ XBMC_CONF_ENV = \ TEXTUREPACKER_NATIVE_ROOT="$(HOST_DIR)/usr" XBMC_CONF_OPT += \ - --disable-alsa \ --disable-crystalhd \ --disable-debug \ --disable-dvdcss \ @@ -96,6 +95,13 @@ else XBMC_CONF_OPT += --disable-gles endif +ifeq ($(BR2_PACKAGE_ALSA_LIB),y) +XBMC_DEPENDENCIES += alsa-lib +XBMC_CONF_OPT += --enable-alsa +else +XBMC_CONF_OPT += --disable-alsa +endif + ifeq ($(BR2_PACKAGE_XBMC_LIBUSB),y) XBMC_DEPENDENCIES += libusb-compat XBMC_CONF_OPT += --enable-libusb