mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 05:36:47 +00:00
merging trunk
This commit is contained in:
parent
65ed0ea470
commit
da1b13c477
@ -1 +1 @@
|
|||||||
http://sources.openelec.tv/svn/xbmc-theme-Confluence-28690.tar.bz2
|
http://sources.openelec.tv/svn/xbmc-theme-Confluence-28745.tar.bz2
|
||||||
|
@ -91,6 +91,8 @@ cd -
|
|||||||
./bootstrap
|
./bootstrap
|
||||||
./configure --host=$TARGET_NAME \
|
./configure --host=$TARGET_NAME \
|
||||||
--build=$HOST_NAME \
|
--build=$HOST_NAME \
|
||||||
|
--with-arch=$TARGET_ARCH \
|
||||||
|
--with-cpu=$TARGET_CPU \
|
||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--exec-prefix=/usr \
|
--exec-prefix=/usr \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
|
@ -1,7 +1,53 @@
|
|||||||
diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in
|
diff -Naur xbmc-28745/configure.in xbmc-28745.patch/configure.in
|
||||||
--- xbmc-28584/configure.in 2010-03-14 21:06:24.000000000 +0100
|
--- xbmc-28745/configure.in 2010-03-22 06:50:58.000000000 +0100
|
||||||
+++ xbmc-28584.patch/configure.in 2010-03-15 00:50:53.680149619 +0100
|
+++ xbmc-28745.patch/configure.in 2010-03-22 13:17:49.917999744 +0100
|
||||||
@@ -1154,7 +1154,9 @@
|
@@ -24,6 +24,10 @@
|
||||||
|
|
||||||
|
AC_CANONICAL_HOST
|
||||||
|
|
||||||
|
+tolower(){
|
||||||
|
+ echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
# General message strings
|
||||||
|
configure_debug="ERROR: this is a configure debug statement"
|
||||||
|
missing_library="Could not find a required library. Please see the README for your platform."
|
||||||
|
@@ -102,6 +106,18 @@
|
||||||
|
[use_debug=$enableval],
|
||||||
|
[use_debug=yes])
|
||||||
|
|
||||||
|
+AC_ARG_WITH([arch],
|
||||||
|
+ [AS_HELP_STRING([--with-arch],
|
||||||
|
+ [build with given arch passing to internal ffmpeg (default is no, needed for crosscompiling)])],
|
||||||
|
+ [use_arch=$withval],
|
||||||
|
+ [use_arch=no])
|
||||||
|
+
|
||||||
|
+AC_ARG_WITH([cpu],
|
||||||
|
+ [AS_HELP_STRING([--with-cpu],
|
||||||
|
+ [build with given cpu passing to ffmpeg (default is no)])],
|
||||||
|
+ [use_cpu=$withval],
|
||||||
|
+ [use_cpu=no])
|
||||||
|
+
|
||||||
|
AC_ARG_ENABLE([optimizations],
|
||||||
|
[AS_HELP_STRING([--enable-optimizations],
|
||||||
|
[enable optimization (default is yes)])],
|
||||||
|
@@ -805,6 +821,15 @@
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
+if test "$cross_compiling" = "yes"; then
|
||||||
|
+ final_message="$final_message\n Crosscomp.:\tYes"
|
||||||
|
+else
|
||||||
|
+ final_message="$final_message\n Crosscomp.:\tNo"
|
||||||
|
+fi
|
||||||
|
+
|
||||||
|
+final_message="$final_message\n target ARCH:\t$use_arch"
|
||||||
|
+final_message="$final_message\n target CPU:\t$use_cpu"
|
||||||
|
+
|
||||||
|
if test "$use_optimizations" = "yes"; then
|
||||||
|
final_message="$final_message\n Optimization:\tYes"
|
||||||
|
CXXFLAGS="$CXXFLAGS -O2"
|
||||||
|
@@ -1154,7 +1179,9 @@
|
||||||
cp pyconfig.h Include
|
cp pyconfig.h Include
|
||||||
else
|
else
|
||||||
./configure \
|
./configure \
|
||||||
@ -12,15 +58,18 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in
|
|||||||
--enable-unicode=ucs4 \
|
--enable-unicode=ucs4 \
|
||||||
--without-cxx \
|
--without-cxx \
|
||||||
--enable-shared \
|
--enable-shared \
|
||||||
@@ -1219,6 +1221,7 @@
|
@@ -1217,6 +1244,10 @@
|
||||||
|
./configure \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--disable-ipv6 \
|
|
||||||
`if test "$use_debug" = "no"; then echo --disable-debug; fi` \
|
`if test "$use_debug" = "no"; then echo --disable-debug; fi` \
|
||||||
+ `if test "$cross_compiling" = "yes"; then echo --enable-cross-compile; fi` \
|
+ `if test "$cross_compiling" = "yes"; then echo --enable-cross-compile; fi` \
|
||||||
|
+ `if test "$use_arch" != "no"; then echo --arch=$use_arch; fi`\
|
||||||
|
+ `if test "$use_cpu" != "no"; then echo --cpu=$use_cpu; fi`\
|
||||||
|
+ --target-os=$(tolower $(uname -s)) \
|
||||||
--disable-muxers \
|
--disable-muxers \
|
||||||
--enable-muxer=spdif \
|
--enable-muxer=spdif \
|
||||||
--enable-muxer=adts \
|
--enable-muxer=adts \
|
||||||
@@ -1235,6 +1238,7 @@
|
@@ -1233,6 +1264,7 @@
|
||||||
--enable-postproc \
|
--enable-postproc \
|
||||||
--enable-gpl \
|
--enable-gpl \
|
||||||
`if test "$use_vdpau" = "yes"; then echo --enable-vdpau; else echo --disable-vdpau; fi` \
|
`if test "$use_vdpau" = "yes"; then echo --enable-vdpau; else echo --disable-vdpau; fi` \
|
||||||
@ -28,7 +77,7 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in
|
|||||||
--enable-libfaad \
|
--enable-libfaad \
|
||||||
--enable-protocol=http \
|
--enable-protocol=http \
|
||||||
--enable-pthreads \
|
--enable-pthreads \
|
||||||
@@ -1254,6 +1258,8 @@
|
@@ -1252,6 +1284,8 @@
|
||||||
--disable-win
|
--disable-win
|
||||||
else
|
else
|
||||||
./configure \
|
./configure \
|
||||||
@ -37,7 +86,7 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in
|
|||||||
--disable-oss \
|
--disable-oss \
|
||||||
--disable-solaris-audio \
|
--disable-solaris-audio \
|
||||||
--disable-al-audio \
|
--disable-al-audio \
|
||||||
@@ -1271,6 +1277,8 @@
|
@@ -1269,6 +1303,8 @@
|
||||||
--with-pic
|
--with-pic
|
||||||
else
|
else
|
||||||
./configure \
|
./configure \
|
||||||
@ -46,7 +95,7 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in
|
|||||||
--disable-doc \
|
--disable-doc \
|
||||||
--enable-static \
|
--enable-static \
|
||||||
--with-pic
|
--with-pic
|
||||||
@@ -1289,6 +1297,8 @@
|
@@ -1287,6 +1323,8 @@
|
||||||
cp `pwd`/../libdvdread/src/*.h `pwd`/../includes/dvdread
|
cp `pwd`/../libdvdread/src/*.h `pwd`/../includes/dvdread
|
||||||
else
|
else
|
||||||
./configure2 \
|
./configure2 \
|
||||||
@ -55,7 +104,7 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in
|
|||||||
--extra-cflags="$CFLAGS $DVDREAD_CFLAGS -fPIC -DPIC -I`pwd`/../libdvdcss/src" \
|
--extra-cflags="$CFLAGS $DVDREAD_CFLAGS -fPIC -DPIC -I`pwd`/../libdvdcss/src" \
|
||||||
--prefix="${prefix}" --includedir="${includedir}" --libdir="${libdir}" --datadir="${datadir}" \
|
--prefix="${prefix}" --includedir="${includedir}" --libdir="${libdir}" --datadir="${datadir}" \
|
||||||
--enable-static \
|
--enable-static \
|
||||||
@@ -1314,6 +1324,8 @@
|
@@ -1312,6 +1350,8 @@
|
||||||
--cc="$CC"
|
--cc="$CC"
|
||||||
else
|
else
|
||||||
./configure2 \
|
./configure2 \
|
||||||
@ -64,7 +113,7 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in
|
|||||||
--extra-cflags="$DVDREAD_CFLAGS -fPIC -DPIC -I`pwd`/../includes" \
|
--extra-cflags="$DVDREAD_CFLAGS -fPIC -DPIC -I`pwd`/../includes" \
|
||||||
--extra-ldflags="-L`pwd`/../libdvdread/obj" \
|
--extra-ldflags="-L`pwd`/../libdvdread/obj" \
|
||||||
--with-dvdread-config="`pwd`/../libdvdread/obj/dvdread-config" \
|
--with-dvdread-config="`pwd`/../libdvdread/obj/dvdread-config" \
|
||||||
@@ -1346,6 +1358,8 @@
|
@@ -1344,6 +1384,8 @@
|
||||||
--disable-al-audio
|
--disable-al-audio
|
||||||
else
|
else
|
||||||
./configure \
|
./configure \
|
||||||
@ -73,7 +122,7 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in
|
|||||||
--with-pic \
|
--with-pic \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--enable-shared \
|
--enable-shared \
|
||||||
@@ -1381,7 +1395,9 @@
|
@@ -1379,7 +1421,9 @@
|
||||||
./configure MACOSX_DEPLOYMENT_TARGET=10.4
|
./configure MACOSX_DEPLOYMENT_TARGET=10.4
|
||||||
else
|
else
|
||||||
CFLAGS="$CFLAGS -fPIC" \
|
CFLAGS="$CFLAGS -fPIC" \
|
||||||
@ -84,7 +133,7 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in
|
|||||||
fi
|
fi
|
||||||
], [$USE_EXTERNAL_LIBASS])
|
], [$USE_EXTERNAL_LIBASS])
|
||||||
|
|
||||||
@@ -1395,6 +1411,8 @@
|
@@ -1393,6 +1437,8 @@
|
||||||
--with-pic
|
--with-pic
|
||||||
else
|
else
|
||||||
./configure \
|
./configure \
|
||||||
@ -93,7 +142,7 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in
|
|||||||
CPPFLAGS="$CPPFLAGS" \
|
CPPFLAGS="$CPPFLAGS" \
|
||||||
CFLAGS="$CFLAGS -fPIC" \
|
CFLAGS="$CFLAGS -fPIC" \
|
||||||
CXXFLAGS="$CXXFLAGS -fPIC" \
|
CXXFLAGS="$CXXFLAGS -fPIC" \
|
||||||
@@ -1421,6 +1439,8 @@
|
@@ -1419,6 +1465,8 @@
|
||||||
XB_CONFIG_MODULE([xbmc/visualizations/Goom/goom2k4-0],[
|
XB_CONFIG_MODULE([xbmc/visualizations/Goom/goom2k4-0],[
|
||||||
if test "$host_vendor" != "apple" ; then
|
if test "$host_vendor" != "apple" ; then
|
||||||
./configure \
|
./configure \
|
||||||
@ -102,7 +151,7 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in
|
|||||||
CPPFLAGS="$CPPFLAGS" \
|
CPPFLAGS="$CPPFLAGS" \
|
||||||
CFLAGS="$CFLAGS -fPIC" \
|
CFLAGS="$CFLAGS -fPIC" \
|
||||||
CXXFLAGS="$CXXFLAGS -fPIC" \
|
CXXFLAGS="$CXXFLAGS -fPIC" \
|
||||||
@@ -1451,6 +1471,8 @@
|
@@ -1449,6 +1497,8 @@
|
||||||
--disable-skyrocket
|
--disable-skyrocket
|
||||||
else
|
else
|
||||||
./configure \
|
./configure \
|
||||||
@ -111,7 +160,7 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in
|
|||||||
CPPFLAGS="$CPPFLAGS" \
|
CPPFLAGS="$CPPFLAGS" \
|
||||||
CFLAGS="$CFLAGS -fPIC" \
|
CFLAGS="$CFLAGS -fPIC" \
|
||||||
CXXFLAGS="$CXXFLAGS -fPIC" \
|
CXXFLAGS="$CXXFLAGS -fPIC" \
|
||||||
@@ -1470,9 +1492,11 @@
|
@@ -1468,9 +1518,11 @@
|
||||||
|
|
||||||
XB_CONFIG_MODULE([xbmc/cores/dvdplayer/Codecs/libbdnav/], [
|
XB_CONFIG_MODULE([xbmc/cores/dvdplayer/Codecs/libbdnav/], [
|
||||||
if test "$host_vendor" = "apple" ; then
|
if test "$host_vendor" = "apple" ; then
|
||||||
@ -125,7 +174,7 @@ diff -Naur xbmc-28584/configure.in xbmc-28584.patch/configure.in
|
|||||||
fi
|
fi
|
||||||
], [0])
|
], [0])
|
||||||
|
|
||||||
@@ -1481,7 +1505,9 @@
|
@@ -1479,7 +1531,9 @@
|
||||||
CFLAGS="-isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4 -fno-common" \
|
CFLAGS="-isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4 -fno-common" \
|
||||||
./configure MACOSX_DEPLOYMENT_TARGET=10.4 --disable-shared
|
./configure MACOSX_DEPLOYMENT_TARGET=10.4 --disable-shared
|
||||||
else
|
else
|
@ -1,7 +1,7 @@
|
|||||||
diff -Naur xbmc-23998/configure.in xbmc-23998.patch/configure.in
|
diff -Naur xbmc-28745/configure.in xbmc-28745.patch/configure.in
|
||||||
--- xbmc-23998/configure.in 2009-10-25 13:30:40.869660379 +0100
|
--- xbmc-28745/configure.in 2010-03-23 04:05:13.476967336 +0100
|
||||||
+++ xbmc-23998.patch/configure.in 2009-10-25 13:33:30.376657368 +0100
|
+++ xbmc-28745.patch/configure.in 2010-03-23 04:07:49.166967342 +0100
|
||||||
@@ -692,6 +692,7 @@
|
@@ -728,6 +728,7 @@
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -9,11 +9,11 @@ diff -Naur xbmc-23998/configure.in xbmc-23998.patch/configure.in
|
|||||||
AC_CHECK_PROG(HAVE_SVNVERSION,svnversion,"yes","no",)
|
AC_CHECK_PROG(HAVE_SVNVERSION,svnversion,"yes","no",)
|
||||||
AC_CHECK_PROG(HAVE_GIT,git,"yes","no",)
|
AC_CHECK_PROG(HAVE_GIT,git,"yes","no",)
|
||||||
|
|
||||||
@@ -1177,6 +1178,7 @@
|
@@ -1269,6 +1270,7 @@
|
||||||
--disable-ipv6 \
|
--enable-protocol=http \
|
||||||
`if test "$use_debug" = "no"; then echo --disable-debug; fi` \
|
--enable-pthreads \
|
||||||
`if test "$cross_compiling" = "yes"; then echo --enable-cross-compile; fi` \
|
`if test "$host_cpu" = "powerpc" || test "$host_cpu" = "powerpc64"; then echo --enable-pic; fi` \
|
||||||
+ `if test "$HAVE_YASM" = "yes"; then echo --enable-yasm; fi` \
|
+ `if test "$HAVE_YASM" = "yes"; then echo --enable-yasm; fi` \
|
||||||
--disable-muxers \
|
--cc="$CC"
|
||||||
--disable-encoders \
|
fi
|
||||||
--disable-decoder=mpeg_xvmc \
|
], [$USE_EXTERNAL_FFMPEG])
|
||||||
|
@ -1 +1 @@
|
|||||||
http://sources.openelec.tv/svn/xbmc-28690.tar.bz2
|
http://sources.openelec.tv/svn/xbmc-28745.tar.bz2
|
||||||
|
@ -16,6 +16,7 @@ cd $PKG_BUILD
|
|||||||
--prefix=/usr \
|
--prefix=/usr \
|
||||||
--sysconfdir=/etc \
|
--sysconfdir=/etc \
|
||||||
--localstatedir=/var \
|
--localstatedir=/var \
|
||||||
|
--disable-debug \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
--enable-shared \
|
--enable-shared \
|
||||||
--enable-threads \
|
--enable-threads \
|
||||||
@ -48,3 +49,4 @@ cd $PKG_BUILD
|
|||||||
--disable-capng \
|
--disable-capng \
|
||||||
|
|
||||||
make
|
make
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
http://www.kernel.org/pub/linux/network/connman/connman-0.48.tar.bz2
|
http://www.kernel.org/pub/linux/network/connman/connman-0.50.tar.bz2
|
||||||
|
Loading…
x
Reference in New Issue
Block a user