From: Francis Dupont Date: Sat, 30 Aug 2025 21:38:03 +0000 (+0200) Subject: [#4085] Updated minimal version X-Git-Tag: Kea-3.1.2~82 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b31c7e8c04c55b1052ac672773bab01ecc92d66f;p=thirdparty%2Fkea.git [#4085] Updated minimal version --- diff --git a/doc/sphinx/arm/install.rst b/doc/sphinx/arm/install.rst index b3bffc7726..fe532640af 100644 --- a/doc/sphinx/arm/install.rst +++ b/doc/sphinx/arm/install.rst @@ -160,8 +160,8 @@ the system: - The development tools meson, ninja, and pkg-config. - Boost C++ libraries (https://www.boost.org/). The oldest Boost version - used for testing is 1.67 (although Kea may also work with older - versions e.g. 1.66). The Boost system library must also be installed. + used for testing is 1.71 (although Kea may also work with older + versions e.g. 1.69). The Boost system library must also be installed. Installing a header-only version of Boost is not recommended. - OpenSSL (at least version 1.0.2) or Botan (at least version 2). diff --git a/meson.build b/meson.build index fbd76dce5e..68ebc1b3a7 100644 --- a/meson.build +++ b/meson.build @@ -189,7 +189,7 @@ message(f'Detected system "@SYSTEM@".') #### Dependencies -boost_dep = dependency('boost', version: '>=1.66') +boost_dep = dependency('boost', version: '>=1.69') dl_dep = dependency('dl') threads_dep = dependency('threads') add_project_dependencies(boost_dep, dl_dep, threads_dep, language: ['cpp'])