aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlaanwj <126646+laanwj@users.noreply.github.com>2022-06-16 18:13:53 +0200
committerlaanwj <126646+laanwj@users.noreply.github.com>2022-06-16 18:19:49 +0200
commitfaf25b09d9e78f2ff129e25b90f67930d2fc1c4f (patch)
tree47425259b0473a890b0abe45e566c6988bb062c2
parent8035b5c80df51130af7cd398da84186ee42dd6e3 (diff)
parentf0f5cd79b5d65c1c123400569c33745d8a6127ac (diff)
downloadbitcoin-faf25b09d9e78f2ff129e25b90f67930d2fc1c4f.tar.xz
Merge bitcoin/bitcoin#25282: Bugfix: configure: Define default for use_libevent
f0f5cd79b5d65c1c123400569c33745d8a6127ac Bugfix: configure: Define default for use_libevent (Luke Dashjr) Pull request description: Another trivial fix like #25051 - I think this is the only other one missing. ACKs for top commit: laanwj: Code review ACK f0f5cd79b5d65c1c123400569c33745d8a6127ac Tree-SHA512: 888c2e6d032ef1de5af635e2a9b2b8ab560c86bd10a6cee54aa9aa62ae43f03c19889bb6a2b64cf8982d4cd514f97ca3ed743c71ed0651e9295a4b1726955b9b
-rw-r--r--configure.ac1
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 003d76989b..a4a23474c8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1554,6 +1554,7 @@ fi
dnl libevent check
+use_libevent=no
if test "$build_bitcoin_cli$build_bitcoind$bitcoin_enable_qt$use_tests$use_bench" != "nonononono"; then
PKG_CHECK_MODULES([EVENT], [libevent >= 2.1.8], [use_libevent=yes], [AC_MSG_ERROR([libevent version 2.1.8 or greater not found.])])
if test "$TARGET_OS" != "windows"; then