From 4b903f0cf3848e1382a757cfd9760914a8bae455 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Tue, 18 Oct 2016 13:01:04 +0530 Subject: [PATCH] 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 --- gst/segmentclip/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/segmentclip/meson.build b/gst/segmentclip/meson.build index 99d54af1db..6d8a36da63 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, )