summaryrefslogtreecommitdiffstats
path: root/package/ffmpeg/Config.in
diff options
context:
space:
mode:
authorPhil Eichinger <phil.eichinger@gmail.com>2016-12-06 15:32:37 +0100
committerPeter Korsgaard <peter@korsgaard.com>2016-12-06 19:56:40 +0100
commitd767ff85f2bf9b5e1fbcbad22f0cab6a6a606e6c (patch)
tree7588c1cee717b18f47f11ffe08f209d809413e9f /package/ffmpeg/Config.in
parent9dd5b1aafbf1f52a3cfe7ecb7804c3280b61ad11 (diff)
downloadbuildroot-d767ff85f2bf9b5e1fbcbad22f0cab6a6a606e6c.tar.gz
buildroot-d767ff85f2bf9b5e1fbcbad22f0cab6a6a606e6c.zip
ffmpeg: fix build for ffplay
Upstream has dropped SDL support for ffplay in favor of SDL2. This results in silently not building ffplay even if it is selected in Buildroot config. [Peter: propagate !static dependency from sdl2] Signed-off-by: Phil Eichinger <phil@zankapfel.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/ffmpeg/Config.in')
-rw-r--r--package/ffmpeg/Config.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/package/ffmpeg/Config.in b/package/ffmpeg/Config.in
index e8135953b2..b5850db722 100644
--- a/package/ffmpeg/Config.in
+++ b/package/ffmpeg/Config.in
@@ -41,12 +41,16 @@ config BR2_PACKAGE_FFMPEG_FFMPEG
config BR2_PACKAGE_FFMPEG_FFPLAY
bool "Build ffplay"
select BR2_PACKAGE_FFMPEG_SWSCALE
- select BR2_PACKAGE_SDL
+ select BR2_PACKAGE_SDL2
+ depends on !BR2_STATIC_LIBS # sdl2
help
FFplay is a very simple and portable media player using the
FFmpeg libraries and the SDL library.
It is mostly used as a testbed for the various FFmpeg APIs.
+comment "ffplay needs a toolchain w/ dynamic library"
+ depends on BR2_STATIC_LIBS
+
config BR2_PACKAGE_FFMPEG_FFSERVER
bool "Build ffserver"
depends on BR2_USE_MMU # fork()
OpenPOWER on IntegriCloud