From c4a1fc746b8cd88a1565f2e768f25e174620a37f Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Sun, 12 Aug 2018 15:21:30 +0200 Subject: [PATCH] Explicitly use ISO C11 ISO C99 doesn't support unnamed structs/unions. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index b68ee4cb..2f9ec462 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('scrcpy', 'c', meson_version: '>= 0.37', default_options : 'c_std=c99') +project('scrcpy', 'c', meson_version: '>= 0.37', default_options : 'c_std=c11') if get_option('build_app') subdir('app')