diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2023-05-18 10:48:48 +0100 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2023-05-18 10:48:48 +0100 |
commit | fa5831bd6f940c4afb43ff625ba4fa6c641e999a (patch) | |
tree | b2ac29d8bf01ce33b70eff1938c97e88cb499fae /build_msvc | |
parent | 4e8a7654f623fc0dad933b3d93dc54d8206c605d (diff) |
build: Do not define `ENABLE_ZMQ` when ZMQ is not available
A new behavior is consistent with the other optional dependencies.
The source code contains `#if ENABLE_ZMQ` lines only.
Diffstat (limited to 'build_msvc')
-rw-r--r-- | build_msvc/bitcoin_config.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build_msvc/bitcoin_config.h.in b/build_msvc/bitcoin_config.h.in index 02d8fc41c2..0a8bc97fe7 100644 --- a/build_msvc/bitcoin_config.h.in +++ b/build_msvc/bitcoin_config.h.in @@ -38,7 +38,7 @@ /* Define to 1 to enable SQLite wallet */ #define USE_SQLITE 1 -/* Define to 1 to enable ZMQ functions */ +/* Define this symbol to enable ZMQ functions */ #define ENABLE_ZMQ 1 /* define if external signer support is enabled (requires Boost::Process) */ |