summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2012-02-24 23:21:44 +0100
committerKoen Kooi <koen@dominion.thruhere.net>2012-02-24 23:42:16 +0100
commitf7faaa2ccb48596c4c03e0c7156781e1f84087d3 (patch)
tree1805378078b57bf015ed93e6f010732b25887dbd
parent2eaec194016ba357bb02db8859b2b3737d759865 (diff)
downloadmeta-openembedded-f7faaa2ccb48596c4c03e0c7156781e1f84087d3.tar.gz
xbmc: update to Eden Beta 3.1
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
-rw-r--r--meta-oe/recipes-multimedia/xbmc/xbmc/0005-Revert-build-fixed-build-issue-in-certain-cases.patch31
-rw-r--r--meta-oe/recipes-multimedia/xbmc/xbmc_git.bb5
2 files changed, 34 insertions, 2 deletions
diff --git a/meta-oe/recipes-multimedia/xbmc/xbmc/0005-Revert-build-fixed-build-issue-in-certain-cases.patch b/meta-oe/recipes-multimedia/xbmc/xbmc/0005-Revert-build-fixed-build-issue-in-certain-cases.patch
new file mode 100644
index 000000000..5919175cc
--- /dev/null
+++ b/meta-oe/recipes-multimedia/xbmc/xbmc/0005-Revert-build-fixed-build-issue-in-certain-cases.patch
@@ -0,0 +1,31 @@
1From d1fb013bf055e3522fdd3e67c355e606a08d7611 Mon Sep 17 00:00:00 2001
2From: Koen Kooi <koen@dominion.thruhere.net>
3Date: Fri, 24 Feb 2012 23:19:49 +0100
4Subject: [PATCH 5/5] Revert "build: fixed build issue in certain cases"
5
6The double include breaks all kinds of undefs, on ARM HAS_GL gets enabled
7
8This reverts commit bf9dd471187f56eeb35a6f5ce4a3c39faaa7e72e.
9---
10 xbmc/cores/DllLoader/LibraryLoader.h | 5 +++--
11 1 files changed, 3 insertions(+), 2 deletions(-)
12
13diff --git a/xbmc/cores/DllLoader/LibraryLoader.h b/xbmc/cores/DllLoader/LibraryLoader.h
14index 7f5129f..a3f6c5d 100644
15--- a/xbmc/cores/DllLoader/LibraryLoader.h
16+++ b/xbmc/cores/DllLoader/LibraryLoader.h
17@@ -22,8 +22,9 @@
18 #ifndef LIBRARY_LOADER
19 #define LIBRARY_LOADER
20
21-#include "system.h"
22-#ifdef _LINUX
23+#ifndef _LINUX
24+#include "system.h" // WIN32INCLUDES - needed for HMODULE
25+#else
26 #include "PlatformDefs.h"
27 #endif
28
29--
301.7.2.5
31
diff --git a/meta-oe/recipes-multimedia/xbmc/xbmc_git.bb b/meta-oe/recipes-multimedia/xbmc/xbmc_git.bb
index 109b28354..7fcf53b3f 100644
--- a/meta-oe/recipes-multimedia/xbmc/xbmc_git.bb
+++ b/meta-oe/recipes-multimedia/xbmc/xbmc_git.bb
@@ -6,16 +6,17 @@ LIC_FILES_CHKSUM = "file://LICENSE.GPL;md5=6eb631b6da7fdb01508a80213ffc35ff"
6DEPENDS = "libusb1 libcec libplist expat yajl gperf-native libxmu fribidi mpeg2dec ffmpeg samba fontconfig curl python libass libmodplug libmicrohttpd wavpack libmms cmake-native libsdl-image libsdl-mixer virtual/egl mysql5 sqlite3 libmms faad2 libcdio libpcre boost lzo enca avahi libsamplerate0 libxinerama libxrandr libxtst bzip2 virtual/libsdl jasper zip-native zlib" 6DEPENDS = "libusb1 libcec libplist expat yajl gperf-native libxmu fribidi mpeg2dec ffmpeg samba fontconfig curl python libass libmodplug libmicrohttpd wavpack libmms cmake-native libsdl-image libsdl-mixer virtual/egl mysql5 sqlite3 libmms faad2 libcdio libpcre boost lzo enca avahi libsamplerate0 libxinerama libxrandr libxtst bzip2 virtual/libsdl jasper zip-native zlib"
7#require recipes/egl/egl.inc 7#require recipes/egl/egl.inc
8 8
9SRCREV = "f119e6aa5ff44d8bf8e670d5d7c21e2fc4832a7c" 9SRCREV = "1fef727af39c0c6e5264ee14fe4c78f8567f035e"
10 10
11PV = "11.0" 11PV = "11.0"
12PR = "r6" 12PR = "r7"
13PR_append = "+gitr${SRCPV}" 13PR_append = "+gitr${SRCPV}"
14SRC_URI = "git://github.com/xbmc/xbmc.git;branch=eden;protocol=git \ 14SRC_URI = "git://github.com/xbmc/xbmc.git;branch=eden;protocol=git \
15 file://0001-configure-don-t-run-python-distutils-to-find-STAGING.patch \ 15 file://0001-configure-don-t-run-python-distutils-to-find-STAGING.patch \
16 file://0002-Revert-fixed-ios-Add-memory-barriers-to-atomic-Add-S.patch \ 16 file://0002-Revert-fixed-ios-Add-memory-barriers-to-atomic-Add-S.patch \
17 file://0003-Revert-fixed-ios-Add-memory-barriers-to-cas-assembly.patch \ 17 file://0003-Revert-fixed-ios-Add-memory-barriers-to-cas-assembly.patch \
18 file://0004-ARM-Don-t-forcefully-disable-avahi-configure-has-che.patch \ 18 file://0004-ARM-Don-t-forcefully-disable-avahi-configure-has-che.patch \
19 file://0005-Revert-build-fixed-build-issue-in-certain-cases.patch \
19 " 20 "
20 21
21inherit autotools gettext python-dir 22inherit autotools gettext python-dir