From 321807a40e1fdd44d950ff01746c95cb6e2eced3 Mon Sep 17 00:00:00 2001 From: Alois Wohlschlager Date: Sat, 26 Jul 2025 21:31:50 +0200 Subject: [PATCH] packaging: stop requesting linkage against boost_container Meson only requires the `modules` option for Boost libraries that should be linked against [1]. However, we use only header-only portions of the Boost container library; in fact we only do not run into the disallowedReferences because the linker drops the unused library. Remove the misleading option. [1] https://mesonbuild.com/Dependencies.html#boost Change-Id: I6a6a69648b806bf6bcf784391263f5ee9cd63a0b --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index c3c71b54d..7a8750afc 100644 --- a/meson.build +++ b/meson.build @@ -264,7 +264,7 @@ configdata += { 'HAVE_BOEHMGC': boehm.found().to_int(), } -boost = dependency('boost', required : true, modules : ['container'], include_type : 'system') +boost = dependency('boost', required : true, include_type : 'system') kj = dependency('kj-async', required : true, include_type : 'system') capnp_rpc = dependency('capnp-rpc', required : true, include_type : 'system')