xbmc: update to xbmc-13.alpha-aa4ca63

This commit is contained in:
Stefan Saraev 2013-11-15 19:47:30 +02:00
parent 25f5fa7089
commit c0c0bc2a06
4 changed files with 650 additions and 737 deletions

View File

@ -19,7 +19,7 @@
################################################################################ ################################################################################
PKG_NAME="xbmc-theme-Confluence" PKG_NAME="xbmc-theme-Confluence"
PKG_VERSION="13.alpha-25965c1" PKG_VERSION="13.alpha-aa4ca63"
PKG_REV="1" PKG_REV="1"
PKG_ARCH="any" PKG_ARCH="any"
PKG_LICENSE="GPL" PKG_LICENSE="GPL"

View File

@ -19,7 +19,7 @@
################################################################################ ################################################################################
PKG_NAME="xbmc" PKG_NAME="xbmc"
PKG_VERSION="13.alpha-25965c1" PKG_VERSION="13.alpha-aa4ca63"
PKG_REV="1" PKG_REV="1"
PKG_ARCH="any" PKG_ARCH="any"
PKG_LICENSE="GPL" PKG_LICENSE="GPL"

View File

@ -1,7 +1,8 @@
diff -Naur xbmc-frodo-5ea1d22/xbmc/interfaces/python/XBPython.cpp xbmc-frodo-5ea1d22.patch/xbmc/interfaces/python/XBPython.cpp diff --git a/xbmc/interfaces/python/XBPython.cpp b/xbmc/interfaces/python/XBPython.cpp
--- xbmc-frodo-5ea1d22/xbmc/interfaces/python/XBPython.cpp 2012-09-05 13:28:20.000000000 +0200 index 01a129e..07b4878 100644
+++ xbmc-frodo-5ea1d22.patch/xbmc/interfaces/python/XBPython.cpp 2012-09-05 15:50:42.642317031 +0200 --- a/xbmc/interfaces/python/XBPython.cpp
@@ -525,11 +525,10 @@ +++ b/xbmc/interfaces/python/XBPython.cpp
@@ -445,10 +445,9 @@ bool XBPython::InitializeEngine()
// at http://docs.python.org/using/cmdline.html#environment-variables // at http://docs.python.org/using/cmdline.html#environment-variables
#if !defined(TARGET_WINDOWS) && !defined(TARGET_ANDROID) #if !defined(TARGET_WINDOWS) && !defined(TARGET_ANDROID)
@ -9,11 +10,9 @@ diff -Naur xbmc-frodo-5ea1d22/xbmc/interfaces/python/XBPython.cpp xbmc-frodo-5ea
- Reason for this is because we cannot be sure what version of Python - Reason for this is because we cannot be sure what version of Python
- was used to compile the various Python object files (i.e. .pyo, - was used to compile the various Python object files (i.e. .pyo,
- .pyc, etc.). */ - .pyc, etc.). */
- // check if we are running as real xbmc.app or just binary
+ // Required for python to find optimized code (pyo) files + // Required for python to find optimized code (pyo) files
+ setenv("PYTHONOPTIMIZE", "1", 1); + setenv("PYTHONOPTIMIZE", "1", 1);
+ +
+ // check if we are running as real xbmc.app or just binary // check if we are running as real xbmc.app or just binary
if (!CUtil::GetFrameworksPath(true).IsEmpty()) if (!CUtil::GetFrameworksPath(true).empty())
{ {
// using external python, it's build looking for xxx/lib/python2.6