mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 03:01:03 +00:00
meson: fix a few warnings
This commit is contained in:
parent
33019ba580
commit
24880717cf
2 changed files with 22 additions and 3 deletions
|
@ -148,7 +148,8 @@ gst_headers = [
|
|||
]
|
||||
install_headers(gst_headers, subdir : 'gstreamer-1.0/gst')
|
||||
|
||||
if not get_option('disable_registry')
|
||||
disable_registry = get_option('disable_registry')
|
||||
if not disable_registry
|
||||
gst_registry = ['gstregistrybinary.c']
|
||||
else
|
||||
gst_registry = []
|
||||
|
@ -158,6 +159,25 @@ endif
|
|||
# still add to the original cdata later.
|
||||
gst_cdata = cdata
|
||||
|
||||
if disable_gst_debug
|
||||
gst_cdata.set('GST_DISABLE_GST_DEBUG_DEFINE', '#define GST_DISABLE_GST_DEBUG 1')
|
||||
else
|
||||
gst_cdata.set('GST_DISABLE_GST_DEBUG_DEFINE', '#undef GST_DISABLE_GST_DEBUG')
|
||||
endif
|
||||
|
||||
if disable_registry
|
||||
gst_cdata.set('GST_DISABLE_REGISTRY_DEFINE', '#define GST_DISABLE_REGISTRY 1')
|
||||
else
|
||||
gst_cdata.set('GST_DISABLE_REGISTRY_DEFINE', '#undef GST_DISABLE_REGISTRY')
|
||||
endif
|
||||
|
||||
# FIXME: add --disable-parse option? (but autotools doesn't seem to set this
|
||||
# define properly at all either even though it does expose the option)
|
||||
gst_cdata.set('GST_DISABLE_PARSE_DEFINE', '#undef GST_DISABLE_PARSE')
|
||||
|
||||
# FIXME: add --disable-plugin option?
|
||||
gst_cdata.set('GST_DISABLE_PLUGIN_DEFINE', '#undef GST_DISABLE_PLUGIN')
|
||||
|
||||
configure_file(input : 'gstconfig.h.in',
|
||||
output : 'gstconfig.h',
|
||||
install_dir : 'include/gstreamer-1.0/gst',
|
||||
|
|
|
@ -320,8 +320,7 @@ if cc.has_header('execinfo.h')
|
|||
endif
|
||||
|
||||
disable_gst_debug = get_option('disable_gst_debug')
|
||||
if get_option('disable_gst_debug')
|
||||
cdata.set('GST_DISABLE_GST_DEBUG_DEFINE', '#define GST_DISABLE_GST_DEBUG 1')
|
||||
if disable_gst_debug
|
||||
add_project_arguments(['-Wno-unused'], language: 'c')
|
||||
endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue