summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPekka Paalanen <pekka.paalanen@collabora.com>2019-03-22 14:37:39 +0200
committerSimon Ser <contact@emersion.fr>2019-06-18 23:39:12 +0300
commitee5b6f256d99533d89424a1c55f7358be66046c0 (patch)
tree21b39d85a18addaf39bbcc46c8e8218cacbc6955
parenta60ebf2bd3ffbd8c1de61525114ad54d58f6d1be (diff)
downloadweston-ee5b6f256d99533d89424a1c55f7358be66046c0.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> (cherry picked from commit 292aaf930832f152efabf0e6314d17dbbe70271d)
-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