From 2150153f372f99b789171b006626f66ff5d0299c Mon Sep 17 00:00:00 2001 From: Cory Fields Date: Thu, 29 Jan 2026 16:09:08 +0000 Subject: [PATCH] signals: Temporarily add boost headers to bitcoind and bitcoin-node builds The current code forward-declares boost::signals2, which avoids the need for these includes. An upcoming commit will (temporarily) include boost headers directly instead. A follow-up commit will then replace boost with an internal signals implementation, which will allow this commit to be reverted. --- src/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index cf1f26c9f24..1eb61f138cf 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -307,6 +307,7 @@ if(BUILD_DAEMON) target_link_libraries(bitcoind core_interface bitcoin_node + Boost::headers $ ) install_binary_component(bitcoind HAS_MANPAGE) @@ -320,6 +321,7 @@ if(ENABLE_IPC AND BUILD_DAEMON) core_interface bitcoin_node bitcoin_ipc + Boost::headers $ ) install_binary_component(bitcoin-node INTERNAL)