aboutsummaryrefslogtreecommitdiff
path: root/depends/patches
diff options
context:
space:
mode:
authorCarl Dong <contact@carldong.me>2020-08-08 16:14:21 -0400
committerCarl Dong <contact@carldong.me>2020-11-23 15:50:53 -0500
commita57b49856033f3de4a861367b70aba85aec58cf8 (patch)
treeffe09d0f5758296ec811db55e5c45b8c9325230d /depends/patches
parent800655ff3199782b803e671f5baa77ff90a5591d (diff)
downloadbitcoin-a57b49856033f3de4a861367b70aba85aec58cf8.tar.xz
depends: boost: Bump to 1.71.0
Diffstat (limited to 'depends/patches')
-rw-r--r--depends/patches/boost/unused_var_in_process.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/depends/patches/boost/unused_var_in_process.patch b/depends/patches/boost/unused_var_in_process.patch
deleted file mode 100644
index 722f7bb5ea..0000000000
--- a/depends/patches/boost/unused_var_in_process.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-commit dbd95cdaefdea95307d004f019a1c394cf9389f0
-Author: fanquake <fanquake@gmail.com>
-Date: Mon Aug 17 20:15:17 2020 +0800
-
- Remove unused variable in Boost Process
-
- This causes issues with our linters / CI.
-
- Can be removed once depends Boost is 1.71.0 or later.
-
-diff --git a/boost/process/detail/posix/wait_group.hpp b/boost/process/detail/posix/wait_group.hpp
-index 9dc249803..2502d9772 100644
---- a/boost/process/detail/posix/wait_group.hpp
-+++ b/boost/process/detail/posix/wait_group.hpp
-@@ -137,7 +137,6 @@ inline bool wait_until(
-
- do
- {
-- int ret_sig = 0;
- int status;
- if ((::waitpid(timeout_pid, &status, WNOHANG) != 0)
- && (WIFEXITED(status) || WIFSIGNALED(status)))