From patchwork Sat May 10 10:02:42 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 347644 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 D04E714009C for ; Sat, 10 May 2014 20:05:22 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id D279C32C07; Sat, 10 May 2014 10:05:21 +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 2UcINE0DPzDl; Sat, 10 May 2014 10:05:19 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 51C0032C5F; Sat, 10 May 2014 10:03:46 +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 487E91CE5A6 for ; Sat, 10 May 2014 10:03:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 465EE8C2EA for ; Sat, 10 May 2014 10:03:14 +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 wRHEN93zssQu for ; Sat, 10 May 2014 10:03:13 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout07.t-online.de (mailout07.t-online.de [194.25.134.83]) by whitealder.osuosl.org (Postfix) with ESMTPS id EF6668B5C8 for ; Sat, 10 May 2014 10:03:12 +0000 (UTC) Received: from fwd21.aul.t-online.de (fwd21.aul.t-online.de [172.20.27.66]) by mailout07.t-online.de (Postfix) with SMTP id 39D143AE219 for ; Sat, 10 May 2014 12:02:16 +0200 (CEST) Received: from fli4l.lan.fli4l (EG7SsoZrQh7aYgphV4lbgZGvs4fV64MXQ6Bmvx6FwbhNSquQ9n-KU1ic3ytTG51QK+@[87.146.221.121]) by fwd21.t-online.de with esmtp id 1Wj47Y-0XPAMy0; Sat, 10 May 2014 12:03:08 +0200 Received: from fli4lbuild64.lan.fli4l ([192.168.1.51]:59593) by fli4l.lan.fli4l with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.80.1) (envelope-from ) id 1Wj47X-00052Y-QP; Sat, 10 May 2014 12:03:08 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sat, 10 May 2014 12:02:42 +0200 Message-Id: <1399716164-6452-31-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1399716164-6452-1-git-send-email-bernd.kuhls@t-online.de> References: <1399716164-6452-1-git-send-email-bernd.kuhls@t-online.de> X-ID: EG7SsoZrQh7aYgphV4lbgZGvs4fV64MXQ6Bmvx6FwbhNSquQ9n-KU1ic3ytTG51QK+ X-TOI-MSGID: 9938e9fe-9cc9-41ed-a447-308f4598f9d0 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH v6 30/32] 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 bdefc8e..99e78d4 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" \