mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-01 03:52:25 +00:00
meson: fix setting of extra checks option
It's checked for with #ifdef so setting it to 0 or 1 will always enable it.
This commit is contained in:
parent
463663d4b4
commit
69400c9fcf
1 changed files with 1 additions and 1 deletions
|
@ -373,7 +373,7 @@ test_deps = [gmp_dep, gsl_dep, gslcblas_dep]
|
|||
# Used by gstinfo.c
|
||||
dl_dep = cc.find_library('dl', required : false)
|
||||
cdata.set('HAVE_DLADDR', cc.has_function('dladdr', dependencies : dl_dep))
|
||||
cdata.set10('GST_ENABLE_EXTRA_CHECKS', get_option('extra-checks'))
|
||||
cdata.set('GST_ENABLE_EXTRA_CHECKS', get_option('extra-checks'))
|
||||
cdata.set('USE_POISONING', get_option('poisoning'))
|
||||
|
||||
configinc = include_directories('.')
|
||||
|
|
Loading…
Reference in a new issue