summaryrefslogtreecommitdiff
path: root/remoting
diff options
context:
space:
mode:
authorPekka Paalanen <pekka.paalanen@collabora.com>2019-03-22 14:37:39 +0200
committerDaniel Stone <daniel@fooishbar.org>2019-03-28 09:43:23 +0000
commit292aaf930832f152efabf0e6314d17dbbe70271d (patch)
treebcd1de55f13976c9170560f42f32f20f3214af5f /remoting
parent191c453f831d3c955cec9beb8d9f1fc8fafc0e59 (diff)
downloadweston-292aaf930832f152efabf0e6314d17dbbe70271d.tar.gz
meson: link remoting with glib and gobject
remoting-plugin.c calls things like g_error_free() and g_object_set(), so it needs to link glib-2.0 and gobject-2.0 explicitly, instead of relying on GStreamer pkg-config bringing them in. Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.com>
Diffstat (limited to 'remoting')
-rw-r--r--remoting/meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/remoting/meson.build b/remoting/meson.build
index 224e8cd9..703ecdbb 100644
--- a/remoting/meson.build
+++ b/remoting/meson.build
@@ -7,7 +7,8 @@ if get_option('remoting')
depnames = [
'gstreamer-1.0', 'gstreamer-allocators-1.0',
- 'gstreamer-app-1.0', 'gstreamer-video-1.0'
+ 'gstreamer-app-1.0', 'gstreamer-video-1.0',
+ 'gobject-2.0', 'glib-2.0'
]
deps_remoting = [ dep_libweston ]
foreach depname : depnames