From: Nirbheek Chauhan Date: Tue, 18 Oct 2016 07:31:04 +0000 (+0530) Subject: meson: Add missing gstvideo dep to segmentclip X-Git-Tag: 1.19.3~507^2~6010 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4b903f0cf3848e1382a757cfd9760914a8bae455;p=platform%2Fupstream%2Fgstreamer.git meson: Add missing gstvideo dep to segmentclip In file included from ../subprojects/gst-plugins-base/gst-libs/gst/video/video.h:27:0, from ../subprojects/gst-plugins-bad/gst/segmentclip/gstvideosegmentclip.c:25: ../subprojects/gst-plugins-base/gst-libs/gst/video/video-format.h:27:39: fatal error: gst/video/video-enumtypes.h: No such file or directory #include ^ compilation terminated. https://ci.gstreamer.net/job/GStreamer-master-meson/269/console --- diff --git a/gst/segmentclip/meson.build b/gst/segmentclip/meson.build index 99d54af..6d8a36d 100644 --- a/gst/segmentclip/meson.build +++ b/gst/segmentclip/meson.build @@ -9,7 +9,7 @@ gstsegmentclip = library('gstsegmentclip', segment_sources, c_args : gst_plugins_bad_args, include_directories : [configinc], - dependencies : [gstbase_dep, gstaudio_dep], + dependencies : [gstbase_dep, gstaudio_dep, gstvideo_dep], install : true, install_dir : plugins_install_dir, )