From 4306cb6f79925c3e5799bb4ec5ac6d2eda1125f3 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Tue, 18 Oct 2016 12:23:42 +0530 Subject: [PATCH] meson: Add missing gstaudio dep to monoscope In file included from ../subprojects/gst-plugins-good/gst/monoscope/gstmonoscope.c:42:0: ../subprojects/gst-plugins-base/gst-libs/gst/audio/audio.h:26:39: fatal error: gst/audio/audio-enumtypes.h: No such file or directory #include ^ compilation terminated. https://ci.gstreamer.net/job/GStreamer-master-meson/271/console --- gst/monoscope/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/monoscope/meson.build b/gst/monoscope/meson.build index 7374719..2aad191 100644 --- a/gst/monoscope/meson.build +++ b/gst/monoscope/meson.build @@ -4,7 +4,7 @@ gstmonoscope = library('gstmonoscope', 'convolve.c', c_args : gst_plugins_good_args, include_directories : [configinc], - dependencies : [gstbase_dep, gstvideo_dep], + dependencies : [gstbase_dep, gstaudio_dep, gstvideo_dep], install : true, install_dir : plugins_install_dir, ) -- 2.7.4