From dc71c4a47798c9e37061e1e295ace03c37cbd428 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Sun, 9 Apr 2017 12:09:33 +0300 Subject: [PATCH] meson: Add check for glib-mkenums --- meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meson.build b/meson.build index b536869917..73568d3f0f 100644 --- a/meson.build +++ b/meson.build @@ -363,6 +363,9 @@ gir_init_section = [ '--add-init-section=extern void gst_init(gint*,gchar**);' + 'gst_init(NULL,NULL);' ] vs_module_defs_dir = meson.current_source_dir() + '/win32/common/' +# Used by the *_mkenum.py helper scripts +glib_mkenums = find_program('glib-mkenums') + gst_c_args = ['-DHAVE_CONFIG_H'] if libtype == 'static' gst_c_args += ['-DGST_STATIC_COMPILATION']