From 95a0651b2cea7ea8bfd281c59e61010891a79f7e Mon Sep 17 00:00:00 2001 From: Scott D Phillips Date: Thu, 3 Nov 2016 12:42:07 -0700 Subject: [PATCH] Include libav dependency in FFmpeg check The FFmpeg-origin check can't work if it isn't provided the dependency library. https://bugzilla.gnome.org/show_bug.cgi?id=773911 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index fa043ca575..57cfde5d3d 100644 --- a/meson.build +++ b/meson.build @@ -22,7 +22,7 @@ if libavfilter_dep.found() #else #error libav provider should be FFmpeg #endif''' - if cc.compiles(check_ffmpeg_src, name : 'whether libav is provided by FFmpeg') + if cc.compiles(check_ffmpeg_src, dependencies : libavfilter_dep, name : 'whether libav is provided by FFmpeg') gst_libav = ['gst-libav'] endif endif