aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/xbmc/xbmc/0001-Only-check-for-nasm-on-i686-it-is-bogus-on-ARM-which.patch
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2010-06-29 20:18:07 +0200
committerKoen Kooi <koen@openembedded.org>2010-06-29 20:18:50 +0200
commit0cc02ded7bd429208ccb0e0e0aa3e43aec8a4722 (patch)
tree1952e273cd46c8f1fd79ef7b62e64df92c490ef9 /recipes/xbmc/xbmc/0001-Only-check-for-nasm-on-i686-it-is-bogus-on-ARM-which.patch
parentc86e303133eb530ea12a4e57cec5d3af62d141a0 (diff)
downloadopenembedded-0cc02ded7bd429208ccb0e0e0aa3e43aec8a4722.tar.gz
xbmc: build a slightly more standard version
* performance tweaks from the summer of code project will be applied later
Diffstat (limited to 'recipes/xbmc/xbmc/0001-Only-check-for-nasm-on-i686-it-is-bogus-on-ARM-which.patch')
-rw-r--r--recipes/xbmc/xbmc/0001-Only-check-for-nasm-on-i686-it-is-bogus-on-ARM-which.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/recipes/xbmc/xbmc/0001-Only-check-for-nasm-on-i686-it-is-bogus-on-ARM-which.patch b/recipes/xbmc/xbmc/0001-Only-check-for-nasm-on-i686-it-is-bogus-on-ARM-which.patch
new file mode 100644
index 0000000000..995e767764
--- /dev/null
+++ b/recipes/xbmc/xbmc/0001-Only-check-for-nasm-on-i686-it-is-bogus-on-ARM-which.patch
@@ -0,0 +1,26 @@
+From cbe1089a3455c306d58e175dced0227b5d22ffa5 Mon Sep 17 00:00:00 2001
+From: topfs2 <topfs2@568bbfeb-2a22-0410-94d2-cc84cf5bfa90>
+Date: Mon, 7 Jun 2010 21:03:47 +0000
+Subject: [PATCH 01/11] Only check for nasm on i686, it is bogus on ARM, which is also !x86_64 - Thanks koen
+
+git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/branches/gsoc-2010-beagleboard@30917 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
+---
+ configure.in | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/configure.in b/configure.in
+index 8d714b5..806e9c2 100644
+--- a/configure.in
++++ b/configure.in
+@@ -986,7 +986,7 @@ if test "$HAVE_ZIP" = "no" ; then
+ AC_MSG_ERROR($missing_program)
+ fi
+
+-if test "$ARCH" != "x86_64-linux"; then
++if test "$ARCH" = "i686-linux"; then
+ AC_CHECK_PROG(HAVE_NASM,nasm,"yes","no",)
+ if test "$HAVE_NASM" = "no" ; then
+ AC_MSG_ERROR($missing_program)
+--
+1.6.6.1
+