summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorRan Benita <ran@unusedvar.com>2021-03-30 20:08:42 +0300
committerRan Benita <ran@unusedvar.com>2021-03-30 20:42:31 +0300
commit90e2d5ee769eeb699d4358221258d9689a30ec2f (patch)
tree79ac172ddbb0daf7ff9a167af74ea999bac02d04 /meson.build
parent1c0e28ad2615b4dc1f816eb4e3abcc391e73784f (diff)
downloadxorg-lib-libxkbcommon-90e2d5ee769eeb699d4358221258d9689a30ec2f.tar.gz
build: require C11
I'd really like to use anonymous unions/structs. Supposedly even MSVC supports it now. Let's try and see. Signed-off-by: Ran Benita <ran@unusedvar.com>
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 18d16c0..2b0c8aa 100644
--- a/meson.build
+++ b/meson.build
@@ -3,7 +3,7 @@ project(
'c',
version: '1.1.0',
default_options: [
- 'c_std=c99',
+ 'c_std=c11',
'warning_level=2',
'b_lundef=true',
],