diff options
-rw-r--r-- | meson.build | 6 | ||||
-rw-r--r-- | meson_options.txt | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 78b7b1a49..b52c0cd1c 100644 --- a/meson.build +++ b/meson.build @@ -94,6 +94,12 @@ if glib_asserts.disabled() or (glib_asserts.auto() and not gst_version_is_dev) add_project_arguments('-DG_DISABLE_ASSERT', language: 'c') endif +glib_checks = get_option('glib-checks') +if glib_checks.disabled() or (glib_checks.auto() and not gst_version_is_dev) + message('Disabling GLib checks') + add_project_arguments('-DG_DISABLE_CHECKS', language: 'c') +endif + cdata = configuration_data() check_headers = [ ['HAVE_DLFCN_H', 'dlfcn.h'], diff --git a/meson_options.txt b/meson_options.txt index 6f1ad2184..b3557f86d 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -153,6 +153,8 @@ option('gobject-cast-checks', type : 'feature', value : 'auto', yield : true, description: 'Enable run-time GObject cast checks (auto = enabled for development, disabled for stable releases)') option('glib-asserts', type : 'feature', value : 'enabled', yield : true, description: 'Enable GLib assertion (auto = enabled for development, disabled for stable releases)') +option('glib-checks', type : 'feature', value : 'enabled', yield : true, + description: 'Enable GLib checks such as API guards (auto = enabled for development, disabled for stable releases)') # Common options option('package-name', type : 'string', yield : true, |