From 69400c9fcfe0450c902ddb457b666984a9d77bda Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 3 Aug 2018 10:36:21 +0100 Subject: [PATCH] meson: fix setting of extra checks option It's checked for with #ifdef so setting it to 0 or 1 will always enable it. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index a042337..07ac6b3 100644 --- a/meson.build +++ b/meson.build @@ -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('.') -- 2.7.4