summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorUoti Urpala <uau@mplayer2.org>2011-07-17 23:56:08 +0300
committerUoti Urpala <uau@mplayer2.org>2011-07-18 00:00:41 +0300
commit25de40142507eadb8b2e958346999eb52ed7f9fd (patch)
tree6e1a63e5a429f2e688bbea90afb3af57ddcce80c /configure
parentdecec7f2a37e559d6a05a01e8c916908c13d5dcb (diff)
downloadmpv-25de40142507eadb8b2e958346999eb52ed7f9fd.tar.bz2
mpv-25de40142507eadb8b2e958346999eb52ed7f9fd.tar.xz
configure: make libavutil eval API check require newer version
The code now uses a newer syntax (av_expr_*), so require a newer version of libavutil which supports that.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 5cbb083c28..864bb1ee9b 100755
--- a/configure
+++ b/configure
@@ -6033,7 +6033,7 @@ def_ffmpeg_eval_api="#undef CONFIG_FFMPEG_EVAL_API"
if test "$ffmpeg" = yes; then
def_ffmpeg='#define CONFIG_FFMPEG 1'
codecmodules="ffmpeg $codecmodules"
- if $_pkg_config --atleast-version=50.18.0 libavutil ; then
+ if $_pkg_config --atleast-version=50.33.0 libavutil ; then
ffmpeg_eval_api=yes
def_ffmpeg_eval_api="#define CONFIG_FFMPEG_EVAL_API 1"
fi