summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott D Phillips <scott.d.phillips@intel.com>2016-11-03 12:42:07 -0700
committerThibault Saunier <thibault.saunier@osg.samsung.com>2016-11-03 21:51:01 -0300
commit95a0651b2cea7ea8bfd281c59e61010891a79f7e (patch)
tree4ece5dac3c6fbda3b895acce5fd5b16329bfd7ff
parent0b3ba49c6c4f38893dbf402e2c912e6ea137b14e (diff)
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
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index fa043ca..57cfde5 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