From 66d32803d3c614fd054960cc0a0cda83fc024221 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 16 May 2025 20:45:49 +1000 Subject: [PATCH] meson.build: don't error on deprecated declarations with -Werror Part-of: --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index 9acc1f49..b105c593 100644 --- a/meson.build +++ b/meson.build @@ -47,6 +47,7 @@ libinput_so_version = '@0@.@1@.@2@'.format((libinput_lt_c - libinput_lt_a), # Compiler setup cc = meson.get_compiler('c') cflags = [ + '-Wno-error=deprecated-declarations', '-Wno-unused-parameter', '-Wmissing-prototypes', '-Wstrict-prototypes',