summaryrefslogtreecommitdiffstats
path: root/package/ffmpeg/0016-ranlib.patch
diff options
context:
space:
mode:
authorVicente Olivert Riera <Vincent.Riera@imgtec.com>2015-09-09 15:13:21 +0100
committerPeter Korsgaard <peter@korsgaard.com>2015-09-09 23:07:53 +0200
commit92122338c3d11a52e4ee7e0a92204d189ece9eb8 (patch)
tree83e841a72e24849b71b8d68788c49627c55be737 /package/ffmpeg/0016-ranlib.patch
parent838fdfda5a30779a2770a97a49417192005c6c37 (diff)
downloadbuildroot-92122338c3d11a52e4ee7e0a92204d189ece9eb8.tar.gz
buildroot-92122338c3d11a52e4ee7e0a92204d189ece9eb8.zip
ffmpeg: bump to version 2.8
0016-ranlib.patch is not needed anymore since the problem that it fixes is already handled upstream: https://github.com/FFmpeg/FFmpeg/commit/2c77ca459e9c9aceee5ed93f8dd8de09e9fbf8df Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/ffmpeg/0016-ranlib.patch')
-rw-r--r--package/ffmpeg/0016-ranlib.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/package/ffmpeg/0016-ranlib.patch b/package/ffmpeg/0016-ranlib.patch
deleted file mode 100644
index e88b25f1b4..0000000000
--- a/package/ffmpeg/0016-ranlib.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-Fix ranlib check when cross-compiling
-
-Without this patch /usr/bin/ranlib is tested for "-D", not ranlib from the
-cross-compiler suite being in use.
-
-Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
-
-diff -uNr ffmpeg-2.6.2.org/configure ffmpeg-2.6.2/configure
---- ffmpeg-2.6.2.org/configure 2015-04-12 00:47:55.000000000 +0200
-+++ ffmpeg-2.6.2/configure 2015-04-16 21:53:24.313202517 +0200
-@@ -2719,11 +2719,6 @@
- nm_default="nm -g"
- objformat="elf"
- pkg_config_default=pkg-config
--if ranlib 2>&1 | grep -q "\-D "; then
-- ranlib_default="ranlib -D"
--else
-- ranlib_default="ranlib"
--fi
- strip_default="strip"
- yasmexe_default="yasm"
- windres_default="windres"
-@@ -3001,6 +2996,12 @@
- die "Must specify target arch and OS when cross-compiling"
- fi
-
-+if "${cross_prefix}ranlib" 2>&1 | grep -q "\-D "; then
-+ ranlib_default="ranlib -D"
-+else
-+ ranlib_default="ranlib"
-+fi
-+
- test -n "$valgrind" && toolchain="valgrind-memcheck"
-
- case "$toolchain" in
OpenPOWER on IntegriCloud