From 21df85cd94df0f441d4c4a9e9e82f4a5772294b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Gallou=C3=ABt?= Date: Tue, 27 Feb 2018 09:25:44 +0000 Subject: [PATCH] Ask for a gnu99 compiler MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Adrien Gallouët --- meson.build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 2342d5b..2b4f071 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,10 @@ project('glorytun', 'c', version: run_command('./version.sh').stdout(), license: 'BSD-3-Clause', - default_options : [ 'buildtype=debugoptimized' ] + default_options : [ + 'buildtype=debugoptimized' + 'c_std=gnu99' + ] ) cc = meson.get_compiler('c')