diff options
author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2016-05-26 16:54:19 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-05-26 21:18:35 +0200 |
commit | e6e549b9e40d42dbb6a551ecaeb040c1e401f21a (patch) | |
tree | ca72ad26365e66ca82d412ca7a0a025cb127aebf /package/ffmpeg | |
parent | 4a1e4a5c7dd94e0490df95597635eb48e4f7f7fb (diff) | |
download | buildroot-e6e549b9e40d42dbb6a551ecaeb040c1e401f21a.tar.gz buildroot-e6e549b9e40d42dbb6a551ecaeb040c1e401f21a.zip |
ffmpeg: add BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Reviewed-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/ffmpeg')
-rw-r--r-- | package/ffmpeg/Config.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/package/ffmpeg/Config.in b/package/ffmpeg/Config.in index a273aead2c..6b7a6e7b1f 100644 --- a/package/ffmpeg/Config.in +++ b/package/ffmpeg/Config.in @@ -1,7 +1,11 @@ +config BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS + bool + # fenv.h lacks FE_INVALID, FE_OVERFLOW & FE_UNDERFLOW on nios2 + default y if !BR2_nios2 + menuconfig BR2_PACKAGE_FFMPEG bool "ffmpeg" - # fenv.h lacks FE_INVALID, FE_OVERFLOW & FE_UNDERFLOW on nios2 - depends on !BR2_nios2 + depends on BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS help FFmpeg is a complete, cross-platform solution to record, convert and stream audio and video. |