From 9504fc7174edaa009e130f80f7c648adaebd7286 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Wed, 5 Dec 2018 19:58:44 +0530 Subject: [PATCH] meson: Add missing gio dep to webrtcbin plugin It's usually pulled in implicitly through gstsdp_dep, but it's actually a private dependency there. Fixes a build failure on Windows with newer Meson. --- ext/webrtc/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ext/webrtc/meson.build b/ext/webrtc/meson.build index 6eb7ca0895..e9e7c11a31 100644 --- a/ext/webrtc/meson.build +++ b/ext/webrtc/meson.build @@ -24,7 +24,8 @@ if libnice_dep.found() webrtc_sources, c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'], include_directories : [configinc], - dependencies : [libnice_dep, gstbase_dep, gstsdp_dep, gstapp_dep, gstwebrtc_dep, gstsctp_dep], + dependencies : [gio_dep, libnice_dep, gstbase_dep, gstsdp_dep, + gstapp_dep, gstwebrtc_dep, gstsctp_dep], install : true, install_dir : plugins_install_dir, )