From: Tomas Krizek Date: Thu, 10 Jun 2021 09:28:49 +0000 (+0200) Subject: meson: disable assertions X-Git-Tag: v5.4.0~15^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f8b378242c3d11ec4017f284e1bc6db75721e97;p=thirdparty%2Fknot-resolver.git meson: disable assertions Make sure assertions are turned off - we use our own mechanism (implemented in !1146), so this mostly affects foreign code, like Knot DNS headers. https://gitlab.nic.cz/knot/knot-resolver/-/merge_requests/1146#note_203044 --- diff --git a/meson.build b/meson.build index f405fa33e..c20d132e4 100644 --- a/meson.build +++ b/meson.build @@ -5,7 +5,7 @@ project( ['c', 'cpp'], license: 'GPLv3+', version: '5.3.2', - default_options: ['c_std=gnu11', 'b_ndebug=false'], + default_options: ['c_std=gnu11', 'b_ndebug=true'], meson_version: '>=0.49', )