meson: Add missing gstvideo dep to segmentclip
authorNirbheek Chauhan <nirbheek@centricular.com>
Tue, 18 Oct 2016 07:31:04 +0000 (13:01 +0530)
committerNirbheek Chauhan <nirbheek@centricular.com>
Tue, 18 Oct 2016 07:31:04 +0000 (13:01 +0530)
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 <gst/video/video-enumtypes.h>
                                       ^
compilation terminated.

https://ci.gstreamer.net/job/GStreamer-master-meson/269/console

gst/segmentclip/meson.build

index 99d54af..6d8a36d 100644 (file)
@@ -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,
 )