summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@gnome.org>2016-12-09 17:48:52 -0300
committerThibault Saunier <thibault.saunier@osg.samsung.com>2017-01-05 09:52:47 -0300
commiteb728ad13b4f77b2c8b032be34bd736428bb8c0e (patch)
tree227c632dd407b3832c392d50884f3352cf7e8e38
parent5619690ae1cbe1fce0a6e8da7ab6c77f6424f346 (diff)
downloadgstreamer-plugins-bad-eb728ad13b4f77b2c8b032be34bd736428bb8c0e.tar.gz
meson: Support building without Gst debug
-rw-r--r--meson.build24
1 files changed, 24 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 79f792412..a266d3a65 100644
--- a/meson.build
+++ b/meson.build
@@ -332,6 +332,30 @@ else
cdata.set('DISABLE_ORC', 1)
endif
+if gst_dep.type_name() == 'internal'
+ gst_proj = subproject('gstreamer')
+
+ if gst_proj.get_variable('disable_gst_debug')
+ message('GStreamer debug system is disabled')
+ add_project_arguments('-Wno-unused', language: 'c')
+ else
+ message('GStreamer debug system is enabled')
+ endif
+else
+ # We can't check that in the case of subprojects as we won't
+ # be able to build against an internal dependency (which is not built yet)
+ if not cc.compiles('''
+#include <gst/gstconfig.h>
+#ifdef GST_DISABLE_GST_DEBUG
+#error "debugging disabled, make compiler fail"
+#endif''' , dependencies: gst_dep)
+ message('GStreamer debug system is disabled')
+ add_global_arguments('-Wno-unused', language: 'c')
+ else
+ message('GStreamer debug system is enabled')
+ endif
+endif
+
configure_file(input : 'config.h.meson',
output : 'config.h',
configuration : cdata)