From 16bd0e7bac653f849bcf34955caa8c3f375e04a3 Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Fri, 9 Dec 2016 19:28:22 -0300 Subject: [PATCH] meson: Fix build --- meson_options.txt | 1 + plugins/tracers/meson.build | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index f65abe8..190fe1b 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -2,6 +2,7 @@ option('build_tools', type : 'boolean', value : true) option('poisoning', type : 'boolean', value : false) option('disable_gtkdoc', type : 'boolean', value : false) option('disable_examples', type : 'boolean', value : false) +option('disable_gst_debug', type : 'boolean', value : false) option('disable_registry', type : 'boolean', value : false) option('library_format', type : 'combo', choices : ['shared', 'static', 'both'], value : 'shared') option('disable_introspection', diff --git a/plugins/tracers/meson.build b/plugins/tracers/meson.build index 34a90d6..76adb0b 100644 --- a/plugins/tracers/meson.build +++ b/plugins/tracers/meson.build @@ -6,7 +6,7 @@ gst_tracers_sources = [ ] if not disable_gst_debug - gst_tracers_source += ['gstlog.c'] + gst_tracers_sources += ['gstlog.c'] endif if have_getrusage -- 2.7.4