From patchwork Sat Jun 7 12:31:25 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 357079 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 BED5614009B for ; Sat, 7 Jun 2014 22:32:32 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 111528C0A2; Sat, 7 Jun 2014 12:32:19 +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 NeaYo6kJgh7U; Sat, 7 Jun 2014 12:32:18 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id D82268C04C; Sat, 7 Jun 2014 12:32:14 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 53F3C1C22C0 for ; Sat, 7 Jun 2014 12:31:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 52B3B3006F for ; Sat, 7 Jun 2014 12: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 4VGHU6+wubto for ; Sat, 7 Jun 2014 12:31:51 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout08.t-online.de (mailout08.t-online.de [194.25.134.20]) by silver.osuosl.org (Postfix) with ESMTPS id A64003004C for ; Sat, 7 Jun 2014 12:31:51 +0000 (UTC) Received: from fwd02.aul.t-online.de (fwd02.aul.t-online.de [172.20.26.148]) by mailout08.t-online.de (Postfix) with SMTP id 230C94B814D for ; Sat, 7 Jun 2014 14:31:50 +0200 (CEST) Received: from fli4l.lan.fli4l (ZZtaCwZeQhh3zlhaPfIq4f1TEGyt-AuCPIe72qmFZfSbxxJy3EPBrvIaAbzPCQwgAR@[79.247.130.193]) by fwd02.t-online.de with esmtp id 1WtFmn-1MlSiW0; Sat, 7 Jun 2014 14:31:49 +0200 Received: from fli4lbuild64.lan.fli4l ([192.168.1.51]:58966) by fli4l.lan.fli4l with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.80.1) (envelope-from ) id 1WtFmm-0005Hh-Ej; Sat, 07 Jun 2014 14:31:48 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sat, 7 Jun 2014 14:31:25 +0200 Message-Id: <1402144292-27837-26-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1402144292-27837-1-git-send-email-bernd.kuhls@t-online.de> References: <1402144292-27837-1-git-send-email-bernd.kuhls@t-online.de> X-ID: ZZtaCwZeQhh3zlhaPfIq4f1TEGyt-AuCPIe72qmFZfSbxxJy3EPBrvIaAbzPCQwgAR X-TOI-MSGID: 2b086356-cce5-45fc-b21f-e7def9621cd6 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH v12 25/32] xbmc: Add lame 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 | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/package/xbmc/xbmc.mk b/package/xbmc/xbmc.mk index 3f16bf9..b730e51 100644 --- a/package/xbmc/xbmc.mk +++ b/package/xbmc/xbmc.mk @@ -78,6 +78,13 @@ else XBMC_CONF_OPT += --disable-alsa endif +ifeq ($(BR2_PACKAGE_LAME),y) +XBMC_DEPENDENCIES += lame +XBMC_CONF_OPT += --enable-libmp3lame +else +XBMC_CONF_OPT += --disable-libmp3lame +endif + XBMC_CONF_ENV += \ CFLAGS="$(TARGET_CFLAGS) $(shell $(PKG_CONFIG_HOST_BINARY) --cflags egl)" \ CXXFLAGS="$(TARGET_CXXFLAGS) $(shell $(PKG_CONFIG_HOST_BINARY) --cflags egl)"