- update to xbmc-30992
This commit is contained in:
Stephan Raue 2010-06-09 04:21:05 +02:00
parent b8067b97b7
commit 7d85cd679b
3 changed files with 14 additions and 15 deletions

View File

@ -1,14 +0,0 @@
diff -Naur xbmc-30122/configure.in xbmc-30122.patch/configure.in
--- xbmc-30122/configure.in 2010-05-13 13:16:42.000000000 +0200
+++ xbmc-30122.patch/configure.in 2010-05-14 13:12:09.725479259 +0200
@@ -1603,9 +1603,7 @@
--with-pic
else
./configure \
- CPPFLAGS="$CPPFLAGS" \
- CFLAGS="$CFLAGS -fPIC" \
- CXXFLAGS="$CXXFLAGS -fPIC" \
+ CFLAGS="-O3" \
--prefix="${prefix}" --includedir="${includedir}" --libdir="${libdir}" --datadir="${datadir}" \
--host=$host_alias \
--build=$build_alias \

View File

@ -0,0 +1,13 @@
diff -Naur xbmc-30973/xbmc/Application.cpp xbmc-30973.patch/xbmc/Application.cpp
--- xbmc-30973/xbmc/Application.cpp 2010-06-08 18:41:51.000000000 +0200
+++ xbmc-30973.patch/xbmc/Application.cpp 2010-06-09 02:43:00.326087347 +0200
@@ -2121,7 +2121,8 @@
g_infoManager.GetFPS(), strCores.c_str(), profiling.c_str());
#else
double dCPU = m_resourceCounter.GetCPUUsage();
- info.Format("FreeMem %"PRIu64"/%"PRIu64" Kb, FPS %2.1f, %s. CPU-XBMC %4.2f%%%s", stat.dwAvailPhys/1024, stat.dwTotalPhys/1024,
+// info.Format("FreeMem %"PRIu64"/%"PRIu64" Kb, FPS %2.1f, %s. CPU-XBMC %4.2f%%%s", stat.dwAvailPhys/1024, stat.dwTotalPhys/1024,
+ info.Format("FreeMem %d/%d Kb, FPS %2.1f, %s. CPU-XBMC %4.2f%%%s", (int)(stat.dwAvailPhys/1024), (int)(stat.dwTotalPhys/1024),
g_infoManager.GetFPS(), strCores.c_str(), dCPU, profiling.c_str());
#endif

View File

@ -1 +1 @@
http://sources.openelec.tv/svn/xbmc-30861.tar.bz2
http://sources.openelec.tv/svn/xbmc-30992.tar.bz2