From patchwork Sat May 17 15:57:55 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 349934 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id B3B69140290 for ; Sun, 18 May 2014 02:00:49 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id E5FBA8C1B6; Sat, 17 May 2014 16:00:48 +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 xGWdW365Il2a; Sat, 17 May 2014 16:00:44 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id D39F58C3FB; Sat, 17 May 2014 15:59:00 +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 81D061BFA57 for ; Sat, 17 May 2014 15:58:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 7CB5F2608C for ; Sat, 17 May 2014 15:58:41 +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 u0PFY9RXpSZw for ; Sat, 17 May 2014 15:58:37 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) by silver.osuosl.org (Postfix) with ESMTPS id D916B26D1C for ; Sat, 17 May 2014 15:58:36 +0000 (UTC) Received: from fwd39.aul.t-online.de (fwd39.aul.t-online.de [172.20.27.138]) by mailout03.t-online.de (Postfix) with SMTP id 0E0A8415395 for ; Sat, 17 May 2014 17:58:30 +0200 (CEST) Received: from fli4l.lan.fli4l (bpUeTcZeohFdxA9RqY-eZbg9WzRreeM0Zb7L26duN4yeBKXmuzoGeg33HVsN-lggk7@[87.146.210.206]) by fwd39.t-online.de with esmtp id 1Wlh0N-1E7nRg0; Sat, 17 May 2014 17:58:35 +0200 Received: from fli4lbuild64.lan.fli4l ([192.168.1.51]:53189) by fli4l.lan.fli4l with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.80.1) (envelope-from ) id 1Wlh05-0000kD-1W; Sat, 17 May 2014 17:58:17 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sat, 17 May 2014 17:57:55 +0200 Message-Id: <1400342276-10303-28-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1400342276-10303-1-git-send-email-bernd.kuhls@t-online.de> References: <1400342276-10303-1-git-send-email-bernd.kuhls@t-online.de> X-ID: bpUeTcZeohFdxA9RqY-eZbg9WzRreeM0Zb7L26duN4yeBKXmuzoGeg33HVsN-lggk7 X-TOI-MSGID: 92c10abc-0f23-4a17-8ab4-5a65fd40db1b Cc: Bernd Kuhls Subject: [Buildroot] [PATCH v8 27/28] xbmc: add nasm/yasm dependency 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 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/xbmc/xbmc.mk b/package/xbmc/xbmc.mk index a18b82a..f537e92 100644 --- a/package/xbmc/xbmc.mk +++ b/package/xbmc/xbmc.mk @@ -18,6 +18,8 @@ XBMC_DEPENDENCIES += boost bzip2 expat flac fontconfig freetype jasper jpeg \ libogg libplist libpng libsamplerate libungif libvorbis libxml2 libxslt lzo ncurses \ openssl pcre python readline sqlite taglib tiff tinyxml yajl zlib +XBMC_DEPENDENCIES += $(if $(BR2_i386),host-nasm) $(if $(BR2_x86_64),host-yasm) + XBMC_CONF_ENV = \ PYTHON_VERSION="$(PYTHON_VERSION_MAJOR)" \ PYTHON_LDFLAGS="-lpython$(PYTHON_VERSION_MAJOR) -lpthread -ldl -lutil -lm" \