From a94d6bfac61906bc2f18246a56ca1a1bcacf1142 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Sat, 9 May 2026 11:17:58 -0700 Subject: [PATCH] meson: raise minimum supported version to meson 1.0.0 Fixes warning: include/meson.build:208: WARNING: Project targets '>= 0.60.0' but uses feature introduced in '1.0.0': "compiler.has_member" keyword argument "prefix" of type list. Fixes: b289d5e2e ("meson: define BSD44SOCKETS and LOCALCONN for xtrans when appropriate") Signed-off-by: Alan Coopersmith Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index caca0cc58..a0e3ba110 100644 --- a/meson.build +++ b/meson.build @@ -4,7 +4,7 @@ project('xserver', 'c', 'c_std=gnu99', ], version: '21.1.99.1', - meson_version: '>= 0.60.0', + meson_version: '>= 1.0.0', ) release_date = '2021-07-05'