From: Michał Kępień Date: Mon, 23 Jun 2025 08:23:17 +0000 (+0200) Subject: Retain Meson >= 0.61 version requirement X-Git-Tag: v9.21.10~38^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f2dcd2853198502143b60cc61c9bbf1a842d2b3;p=thirdparty%2Fbind9.git Retain Meson >= 0.61 version requirement The add_project_dependencies() method was only added in Meson 0.63. Replace its only use in meson.build with a corresponding call to the add_project_link_arguments() method to avoid bumping the minimum required Meson version beyond the one available in stock Ubuntu 22.04 LTS repositories. --- diff --git a/meson.build b/meson.build index 8568197ee17..154820dfdbf 100644 --- a/meson.build +++ b/meson.build @@ -395,7 +395,7 @@ if not cc.links(atomic_test, name: 'usage of atomics without -latomic') ) endif - add_project_dependencies(atomic_dep, language: 'c') + add_project_link_arguments('-latomic', language: 'c') endif ## OS