summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--meson.build28
1 files changed, 8 insertions, 20 deletions
diff --git a/meson.build b/meson.build
index 2b0db1a5..f2b2afa7 100644
--- a/meson.build
+++ b/meson.build
@@ -175,27 +175,15 @@ configinc = include_directories('.')
libsinc = include_directories('gst-libs')
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
+ gst_debug_disabled = subproject('gstreamer').get_variable('disable_gst_debug')
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
+ # 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)
+ gst_debug_disabled = cc.has_header_symbol('gst/gstconfig.h', 'GST_DISABLE_GST_DEBUG', dependencies: gst_dep)
+endif
+
+if gst_debug_disabled and cc.has_argument('-Wno-unused')
+ add_project_arguments('-Wno-unused', language: 'c')
endif
presetdir = join_paths(get_option('datadir'), 'gstreamer-' + api_version, 'presets')