diff options
author | fanquake <fanquake@gmail.com> | 2022-07-28 11:02:04 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-07-28 11:17:06 +0100 |
commit | 62c864605a3d082855dbbb839d969c2ffc7acace (patch) | |
tree | b8008873b7b9d1e7ddb8c6952e7a91eeb2c9577a | |
parent | 207a22877330709e4462e6092c265ab55c8653ac (diff) | |
parent | ba9a8e6cc1d1e9746f74e8c75af5c6c0a49f25c3 (diff) |
Merge bitcoin/bitcoin#25723: test: Drop unused boost workaround
ba9a8e6cc1d1e9746f74e8c75af5c6c0a49f25c3 test: Drop unused boost workaround (Hennadii Stepanov)
Pull request description:
This PR is a follow up of bitcoin/bitcoin#24065 and removes the workaround which has already been removed in other [places](https://github.com/bitcoin/bitcoin/pull/24065/files#diff-19427b0dd1a791adc728c82e88f267751ba4f1c751e19262cac03cccd2822216).
Moreover, this workaround won't be required even if bitcoin/bitcoin#25696 is ever merged.
ACKs for top commit:
fanquake:
ACK ba9a8e6cc1d1e9746f74e8c75af5c6c0a49f25c3
Tree-SHA512: db19fc1550252d7a82a08f388ff6078c78452365e74b41e7bc36cbbc4d0fed9342636e8f2371bb8e78c9d11ee721d6363bcc21d11787f3aac967a6c4a9cc346f
-rw-r--r-- | src/test/system_tests.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/test/system_tests.cpp b/src/test/system_tests.cpp index 3f5353b5a2..f160bb08a5 100644 --- a/src/test/system_tests.cpp +++ b/src/test/system_tests.cpp @@ -7,11 +7,6 @@ #include <univalue.h> #ifdef ENABLE_EXTERNAL_SIGNER -#if defined(WIN32) && !defined(__kernel_entry) -// A workaround for boost 1.71 incompatibility with mingw-w64 compiler. -// For details see https://github.com/bitcoin/bitcoin/pull/22348. -#define __kernel_entry -#endif #if defined(__GNUC__) // Boost 1.78 requires the following workaround. // See: https://github.com/boostorg/process/issues/235 |