From a6f9d5910734c87e8434ae8bc3c08c6d424eacae Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Mon, 11 Sep 2023 11:24:53 +0100 Subject: [PATCH] build: Update the default C standard Request C11 support (with GNU extensions, if available). --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index aad78f574..3dc0a79ce 100644 --- a/meson.build +++ b/meson.build @@ -5,7 +5,7 @@ project('glib', 'c', default_options : [ 'buildtype=debugoptimized', 'warning_level=3', - 'c_std=gnu99' + 'c_std=gnu11' ] )