From: Tim-Philipp Müller Date: Wed, 19 Sep 2018 10:31:43 +0000 (+0100) Subject: meson: add glib-checks option to disable API guards and such X-Git-Tag: 1.16.2~273 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=09dac522caac829590c1705c3e6d49156dd37475;p=platform%2Fupstream%2Fgstreamer.git meson: add glib-checks option to disable API guards and such We want this enabled by default, also in releases, but people may want to disable this for performance-critical workloads or on embedded devices. --- diff --git a/meson.build b/meson.build index 6991a34..aaee483 100644 --- a/meson.build +++ b/meson.build @@ -78,6 +78,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() cdata.set_quoted('GST_API_VERSION', apiversion) cdata.set_quoted('GST_DATADIR', join_paths(prefix, get_option('datadir'))) diff --git a/meson_options.txt b/meson_options.txt index 98228a7..cd5bead 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -34,6 +34,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,