diff options
Diffstat (limited to 'net/kea/files')
-rw-r--r-- | net/kea/files/patch-meson.build | 21 | ||||
-rw-r--r-- | net/kea/files/patch-src_bin_shell_kea-shell.in | 8 | ||||
-rw-r--r-- | net/kea/files/patch-src_lib_asiodns_io__fetch.h | 10 | ||||
-rw-r--r-- | net/kea/files/patch-src_lib_asiolink_interval__timer.h | 10 |
4 files changed, 35 insertions, 14 deletions
diff --git a/net/kea/files/patch-meson.build b/net/kea/files/patch-meson.build index 58f40526b835..d630616d50fb 100644 --- a/net/kea/files/patch-meson.build +++ b/net/kea/files/patch-meson.build @@ -1,6 +1,6 @@ ---- meson.build.orig 2025-06-20 09:28:47.000000000 -0700 -+++ meson.build 2025-07-10 10:25:47.651315000 -0700 -@@ -59,7 +59,7 @@ +--- meson.build.orig 2025-08-20 08:14:44 UTC ++++ meson.build +@@ -59,7 +59,7 @@ if PREFIX == '/usr/local' # Meson is annoying with its opinionated alteration of certain paths based on whether prefix is default or not. # So we revert what it does. if PREFIX == '/usr/local' @@ -9,7 +9,7 @@ endif DATABASE_SCRIPTS_DIR = TOP_BUILD_DIR / 'src/share/database/scripts' -@@ -69,17 +69,17 @@ +@@ -69,17 +69,17 @@ KEA_LFC_INSTALLED = PREFIX / SBINDIR / 'kea-lfc' KEA_ADMIN_INSTALLED = PREFIX / SBINDIR / 'kea-admin' KEA_LFC_BUILT = TOP_BUILD_DIR / 'src/bin/lfc/kea-lfc' KEA_LFC_INSTALLED = PREFIX / SBINDIR / 'kea-lfc' @@ -31,7 +31,7 @@ SHAREDSTATEDIR_INSTALLED = PREFIX / SHAREDSTATEDIR SYSCONFDIR_INSTALLED = PREFIX / SYSCONFDIR TEST_CA_DIR = TOP_SOURCE_DIR / 'src/lib/asiolink/testutils/ca' -@@ -88,9 +88,9 @@ +@@ -88,9 +88,9 @@ if PREFIX == '/usr/local' # So we revert what it does. if PREFIX == '/usr/local' SYSCONFDIR_INSTALLED = '/usr/local/etc' @@ -44,7 +44,16 @@ endif #### Build Options -@@ -1108,9 +1108,9 @@ +@@ -189,7 +189,7 @@ message(f'Detected system "@SYSTEM@".') + + #### Dependencies + +-boost_dep = dependency('boost', version: '>=1.66', modules: ['system']) ++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']) +@@ -1127,9 +1127,9 @@ if PREFIX == '/usr/local' # In case prefix is default, install to hardcoded path. if PREFIX == '/usr/local' install_emptydir('/usr/local/lib/kea') diff --git a/net/kea/files/patch-src_bin_shell_kea-shell.in b/net/kea/files/patch-src_bin_shell_kea-shell.in deleted file mode 100644 index caa0eea9db98..000000000000 --- a/net/kea/files/patch-src_bin_shell_kea-shell.in +++ /dev/null @@ -1,8 +0,0 @@ ---- src/bin/shell/kea-shell.in.orig 2025-06-20 09:28:47.000000000 -0700 -+++ src/bin/shell/kea-shell.in 2025-08-13 09:47:11.947513000 -0700 -@@ -1,4 +1,4 @@ --#!@PYTHON@ -+#!/usr/bin/env /usr/local/bin/python3 - - # Copyright (C) 2017-2025 Internet Systems Consortium, Inc. ("ISC") - # diff --git a/net/kea/files/patch-src_lib_asiodns_io__fetch.h b/net/kea/files/patch-src_lib_asiodns_io__fetch.h new file mode 100644 index 000000000000..fb9d73b8c564 --- /dev/null +++ b/net/kea/files/patch-src_lib_asiodns_io__fetch.h @@ -0,0 +1,10 @@ +--- src/lib/asiodns/io_fetch.h.orig 2025-08-20 08:14:44 UTC ++++ src/lib/asiodns/io_fetch.h +@@ -16,6 +16,7 @@ + #include <util/buffer.h> + + #include <boost/asio/coroutine.hpp> ++#include <boost/asio/deadline_timer.hpp> + #include <boost/shared_array.hpp> + #include <boost/shared_ptr.hpp> + #include <boost/date_time/posix_time/posix_time_types.hpp> diff --git a/net/kea/files/patch-src_lib_asiolink_interval__timer.h b/net/kea/files/patch-src_lib_asiolink_interval__timer.h new file mode 100644 index 000000000000..433c6df0e7f0 --- /dev/null +++ b/net/kea/files/patch-src_lib_asiolink_interval__timer.h @@ -0,0 +1,10 @@ +--- src/lib/asiolink/interval_timer.h.orig 2025-08-20 08:14:44 UTC ++++ src/lib/asiolink/interval_timer.h +@@ -7,6 +7,7 @@ + #ifndef ASIOLINK_INTERVAL_TIMER_H + #define ASIOLINK_INTERVAL_TIMER_H 1 + ++#include <boost/asio/deadline_timer.hpp> + #include <boost/shared_ptr.hpp> + #include <functional> + |