From b06da3175e5f4fe24a78687332ad36461f93fdd3 Mon Sep 17 00:00:00 2001 From: Niels De Graef Date: Thu, 11 Dec 2025 23:42:01 +0100 Subject: [PATCH] meson: Bump minimal meson version to 1.7 We're already requiring a much newer version than we previously reported anyway, since we were using for example `gnome.post_install()` which is only available from Meson 0.57 and later. So let's bump this to a somewhat more modern version which is available in most distros. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 60d34ee6..215bd407 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project('geary', [ 'vala', 'c' ], version: '46.0', license: 'LGPL-2.1-or-later', - meson_version: '>= 0.59', + meson_version: '>= 1.7', ) # Determine the type of build