From 167142c38e3e6cbfa33d656ad1eb18f2ff066895 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Sat, 9 Feb 2019 07:10:02 +0100 Subject: [PATCH] build/meson: build with c_std=gnu11 For autotools, we already updated to C11 (gnu11) with commit 066357aa4766315fe9b9ed83f6cf16d9b87c6944 ("build: bump C standard to (gcc's) C11"). --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 735591e58..19926aeb1 100644 --- a/meson.build +++ b/meson.build @@ -8,7 +8,7 @@ project( license: 'GPL2+', default_options: [ 'buildtype=debugoptimized', - 'c_std=gnu99', + 'c_std=gnu11', ], meson_version: '>= 0.44.0', )