diff options
author | Sjors Provoost <sjors@sprovoost.nl> | 2019-10-30 20:08:23 +0100 |
---|---|---|
committer | Sjors Provoost <sjors@sprovoost.nl> | 2021-02-21 16:27:10 +0100 |
commit | 87a97941f667483bbf2ab00929e03a2199cb8a62 (patch) | |
tree | fafbce801d8597c6e560a78737e49a7a2a5cbd74 /build_msvc | |
parent | 5bb64acd9d3ced6e6f95df282a1a0f8b98522cb0 (diff) |
configure: add --enable-external-signer
This option replaces --with-boost-process
This prepares external signer support to be disabled by default.
It adds a configure option to enable this feature and to check
if Boost::Process is present.
This also exposes ENABLE_EXTERNAL_SIGNER to the test suite via test/config.ini
Diffstat (limited to 'build_msvc')
-rw-r--r-- | build_msvc/bitcoin_config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build_msvc/bitcoin_config.h b/build_msvc/bitcoin_config.h index 23c554e396..40a30b9749 100644 --- a/build_msvc/bitcoin_config.h +++ b/build_msvc/bitcoin_config.h @@ -50,8 +50,8 @@ /* define if the Boost::Filesystem library is available */ #define HAVE_BOOST_FILESYSTEM /**/ -/* define if the Boost::Process library is available */ -#define HAVE_BOOST_PROCESS /**/ +/* define if external signer support is enabled (requires Boost::Process) */ +#define ENABLE_EXTERNAL_SIGNER /**/ /* define if the Boost::System library is available */ #define HAVE_BOOST_SYSTEM /**/ |