mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
meson: add options to disable gobject cast checks and glib asserts
and define G_DISABLE_DEPRECATED for development versions, like we do in autotools.
This commit is contained in:
parent
8178688b69
commit
c9f975ea0c
2 changed files with 23 additions and 0 deletions
19
meson.build
19
meson.build
|
@ -14,6 +14,7 @@ if version_arr.length() == 4
|
||||||
else
|
else
|
||||||
gst_version_nano = 0
|
gst_version_nano = 0
|
||||||
endif
|
endif
|
||||||
|
gst_version_is_dev = gst_version_minor % 2 == 1 and gst_version_micro < 90
|
||||||
|
|
||||||
have_cxx = add_languages('cpp', required : false)
|
have_cxx = add_languages('cpp', required : false)
|
||||||
have_objc = add_languages('objc', required : false)
|
have_objc = add_languages('objc', required : false)
|
||||||
|
@ -66,6 +67,24 @@ if cc.has_argument('-fno-strict-aliasing')
|
||||||
add_project_arguments('-fno-strict-aliasing', language: 'c')
|
add_project_arguments('-fno-strict-aliasing', language: 'c')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# Define G_DISABLE_DEPRECATED for development versions
|
||||||
|
if gst_version_is_dev
|
||||||
|
message('Disabling deprecated GLib API')
|
||||||
|
add_project_arguments('-DG_DISABLE_DEPRECATED', language: 'c')
|
||||||
|
endif
|
||||||
|
|
||||||
|
cast_checks = get_option('gobject-cast-checks')
|
||||||
|
if cast_checks.disabled() or (cast_checks.auto() and not gst_version_is_dev)
|
||||||
|
message('Disabling GLib cast checks')
|
||||||
|
add_project_arguments('-DG_DISABLE_CAST_CHECKS', language: 'c')
|
||||||
|
endif
|
||||||
|
|
||||||
|
glib_asserts = get_option('glib-asserts')
|
||||||
|
if glib_asserts.disabled() or (glib_asserts.auto() and not gst_version_is_dev)
|
||||||
|
message('Disabling GLib asserts')
|
||||||
|
add_project_arguments('-DG_DISABLE_ASSERT', language: 'c')
|
||||||
|
endif
|
||||||
|
|
||||||
core_conf = configuration_data()
|
core_conf = configuration_data()
|
||||||
check_headers = [
|
check_headers = [
|
||||||
['HAVE_DLFCN_H', 'dlfcn.h'],
|
['HAVE_DLFCN_H', 'dlfcn.h'],
|
||||||
|
|
|
@ -58,6 +58,10 @@ option('gtk_doc', type : 'feature', value : 'auto', yield : true, description :
|
||||||
option('introspection', type : 'feature', value : 'auto', yield : true, description : 'Generate gobject-introspection bindings')
|
option('introspection', type : 'feature', value : 'auto', yield : true, description : 'Generate gobject-introspection bindings')
|
||||||
option('nls', type : 'feature', value : 'auto', yield: true, description : 'Enable native language support (translations)')
|
option('nls', type : 'feature', value : 'auto', yield: true, description : 'Enable native language support (translations)')
|
||||||
option('orc', type : 'feature', value : 'auto', yield : true)
|
option('orc', type : 'feature', value : 'auto', yield : true)
|
||||||
|
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')
|
||||||
|
|
||||||
# Common options
|
# Common options
|
||||||
option('package-name', type : 'string', yield : true,
|
option('package-name', type : 'string', yield : true,
|
||||||
|
|
Loading…
Reference in a new issue