From: Scott D Phillips Date: Thu, 3 Nov 2016 19:43:46 +0000 (-0700) Subject: meson: Include libav dependency in FFmpeg check X-Git-Tag: 1.19.3~499^2~303 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3423d0f55353587e8b86ffae93b48e1538cd8206;p=platform%2Fupstream%2Fgstreamer.git meson: 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 --- diff --git a/meson.build b/meson.build index ffc2e55..f60ccc4 100644 --- a/meson.build +++ b/meson.build @@ -25,7 +25,7 @@ check_ffmpeg_src = '''#include #error libav provider should be FFmpeg #endif''' -if not cc.compiles(check_ffmpeg_src, name : 'libav is provided by FFmpeg') +if not cc.compiles(check_ffmpeg_src, dependencies : libav_deps, name : 'libav is provided by FFmpeg') error('Uncompatible libavcodec found') endif