From a94be5638781d962ee20c95afd216843e9e443d0 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Thu, 11 Nov 2021 03:41:01 +0100 Subject: [PATCH] Relax dependency version bounds somewhat These initially strictly followed the subprojects to prevent issues on the AUR, but the PKGBUILDs there nuke these directories anyways. --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 6e21dac7..9f3c4cee 100644 --- a/meson.build +++ b/meson.build @@ -227,9 +227,9 @@ endif boost_dep = dependency('boost', version : '>=1.66', static : with_static_boost) bitsery_dep = dependency('bitsery', version : '>=5.2.0') -function2_dep = dependency('function2', version : '>=4.2.0') +function2_dep = dependency('function2', version : '>=4.0.0') threads_dep = dependency('threads') -tomlplusplus_dep = dependency('tomlplusplus', version : '>=2.5.0') +tomlplusplus_dep = dependency('tomlplusplus', version : '>=2.0.0') dl_dep = declare_dependency(link_args : '-ldl') rt_dep = declare_dependency(link_args : '-lrt')