]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#4085] Proposed update
authorFrancis Dupont <fdupont@isc.org>
Thu, 28 Aug 2025 22:40:03 +0000 (00:40 +0200)
committerFrancis Dupont <fdupont@isc.org>
Tue, 2 Sep 2025 07:00:31 +0000 (09:00 +0200)
meson.build
src/lib/asiodns/io_fetch.h
src/lib/asiolink/interval_timer.h

index 434abf58313c19ef163bfc2df9b669224027c52f..fbd76dce5e5e5709e237089549ec9f52774a8c6b 100644 (file)
@@ -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.66')
 dl_dep = dependency('dl')
 threads_dep = dependency('threads')
 add_project_dependencies(boost_dep, dl_dep, threads_dep, language: ['cpp'])
@@ -200,6 +200,7 @@ boost_headers = [
     'boost/asio/coroutine.hpp',
     'boost/asio/io_context.hpp',
     'boost/asio/ip/address.hpp',
+    'boost/asio/deadline_timer.hpp',
     'boost/asio/signal_set.hpp',
     'boost/circular_buffer.hpp',
     'boost/date_time/posix_time/posix_time_types.hpp',
index 6fcbb78abb01d962c3393eac6827fdc400c199c2..3053cc2e0a2d10711577d5640d2262a5635e001a 100644 (file)
@@ -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>
index 0b1c10c7882301c0a7fa948c304f1c98b05507e7..790d132b42a61cfae0567aff544246c1a4332632 100644 (file)
@@ -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>