Merge branch 'c23-c11' into 'main'

meson, ci: Raise the minimum to C11 and use C17 or C23 if available

See merge request wayland/wayland!507
This commit is contained in:
Neal Gompa (ニール・ゴンパ) 2026-03-12 03:32:12 +00:00
commit bfe5adad9c
2 changed files with 25 additions and 2 deletions

View file

@ -6,7 +6,7 @@ project(
default_options: [
'warning_level=2',
'buildtype=debugoptimized',
'c_std=c99',
'c_std=' + (meson.version().version_compare('>=1.3.0') ? 'c23,c17,c11' : 'c11'),
]
)