From e8590db8084ae374640447b006bb83a3cdc3a83f Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Tue, 9 May 2017 16:26:44 +0200 Subject: [PATCH] meson: add dep on GModule libgstomx uses the GModule API and so needs it in its dependencies list. https://bugzilla.gnome.org/show_bug.cgi?id=782387 --- omx/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/omx/meson.build b/omx/meson.build index 08447e66fe..6fe1ce26ef 100644 --- a/omx/meson.build +++ b/omx/meson.build @@ -51,7 +51,7 @@ gstomx = library('gstomx', # link_args : noseh_link_args, include_directories : [configinc] + extra_inc, dependencies : [gstvideo_dep, gstaudio_dep, gstbase_dep, gstcontroller_dep, - libm] + optional_deps, + libm, gmodule_dep] + optional_deps, install : true, install_dir : plugins_install_dir, )