From 2cea0c4120b93314087a5b6a284b90eb93eeed4c Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Tue, 4 Feb 2014 20:59:20 +0100 Subject: [PATCH] xbmc: add patch to build ffmpeg statically linked for RPi Signed-off-by: Stephan Raue --- .../patches/xbmc-999-010-rpi-static-ffmpeg.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 packages/mediacenter/xbmc/patches/xbmc-999-010-rpi-static-ffmpeg.patch diff --git a/packages/mediacenter/xbmc/patches/xbmc-999-010-rpi-static-ffmpeg.patch b/packages/mediacenter/xbmc/patches/xbmc-999-010-rpi-static-ffmpeg.patch new file mode 100644 index 0000000000..5bfd5dbbb3 --- /dev/null +++ b/packages/mediacenter/xbmc/patches/xbmc-999-010-rpi-static-ffmpeg.patch @@ -0,0 +1,12 @@ +diff -Naur xbmc-13.alpha-65ad3ae/configure.in xbmc-13.alpha-65ad3ae.patch/configure.in +--- xbmc-13.alpha-65ad3ae/configure.in 2014-02-03 16:36:26.000000000 +0100 ++++ xbmc-13.alpha-65ad3ae.patch/configure.in 2014-02-04 20:15:33.927101424 +0100 +@@ -872,7 +872,7 @@ + fi + fi + fi +-if test "$target_platform" = "target_linux"; then ++if test "$target_platform" = "target_linux" -o "$target_platform" = "target_raspberry_pi"; then + USE_STATIC_FFMPEG=1 + use_static_ffmpeg=yes + AC_DEFINE([USE_STATIC_FFMPEG], [1], [link ffmpeg statically])