build: Drop libevent from bitcoin-cli link libraries
What changed, and why it matters
This commit simply removes two unused library links from the build configuration for bitcoin-cli, the command-line tool. There is no code change and no security issue is indicated.
No security action needed; this is a routine build-system cleanup.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The patch removes libevent::core and libevent::extra from the target_link_libraries of bitcoin-cli in src/CMakeLists.txt. This is a build cleanup because bitcoin-cli no longer depends on libevent. No functional or security-relevant code is modified.
Changed components
src/CMakeLists.txt build configuration for bitcoin-cliInspect captured patch +0 / −2
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index b37f3c8c..13cd7497 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -357,8 +357,6 @@ if(BUILD_CLI)
bitcoin_common
bitcoin_ipc
bitcoin_util
- libevent::core
- libevent::extra
)
install_binary_component(bitcoin-cli HAS_MANPAGE)
endif()
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.