summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/x264/meson.build5
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/x264/meson.build b/ext/x264/meson.build
index 544721a3..462dd3a0 100644
--- a/ext/x264/meson.build
+++ b/ext/x264/meson.build
@@ -9,13 +9,16 @@ if x264_dep.found()
x264_args = []
if x264_libraries != ''
x264_args += ['-DHAVE_X264_ADDITIONAL_LIBRARIES="@0@"'.format(x264_libraries)]
+ extra_gmodule_dep = [gmodule_dep]
+ else
+ extra_gmodule_dep = []
endif
gstx264 = library('gstx264',
x264_sources,
c_args : ugly_args + x264_args,
include_directories : [configinc],
- dependencies : [gstbase_dep, gstvideo_dep, gstpbutils_dep, x264_dep],
+ dependencies : [gstbase_dep, gstvideo_dep, gstpbutils_dep, x264_dep] + extra_gmodule_dep,
install : true,
install_dir : plugins_install_dir,
)