mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 14:59:39 -04:00
depends: boost: Bump to 1.71.0
This commit is contained in:
parent
800655ff31
commit
a57b498560
2 changed files with 2 additions and 26 deletions
|
@ -1,9 +1,8 @@
|
||||||
package=boost
|
package=boost
|
||||||
$(package)_version=1_70_0
|
$(package)_version=1_71_0
|
||||||
$(package)_download_path=https://dl.bintray.com/boostorg/release/$(subst _,.,$($(package)_version))/source/
|
$(package)_download_path=https://dl.bintray.com/boostorg/release/$(subst _,.,$($(package)_version))/source/
|
||||||
$(package)_file_name=boost_$($(package)_version).tar.bz2
|
$(package)_file_name=boost_$($(package)_version).tar.bz2
|
||||||
$(package)_sha256_hash=430ae8354789de4fd19ee52f3b1f739e1fba576f0aded0897c3c2bc00fb38778
|
$(package)_sha256_hash=d73a8da01e8bf8c7eda40b4c84915071a8c8a0df4a6734537ddde4a8580524ee
|
||||||
$(package)_patches=unused_var_in_process.patch
|
|
||||||
|
|
||||||
define $(package)_set_vars
|
define $(package)_set_vars
|
||||||
$(package)_config_opts_release=variant=release
|
$(package)_config_opts_release=variant=release
|
||||||
|
@ -33,7 +32,6 @@ $(package)_cxxflags_android=-fPIC
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define $(package)_preprocess_cmds
|
define $(package)_preprocess_cmds
|
||||||
patch -p1 < $($(package)_patch_dir)/unused_var_in_process.patch && \
|
|
||||||
echo "using $($(package)_toolset_$(host_os)) : : $($(package)_cxx) : <cxxflags>\"$($(package)_cxxflags) $($(package)_cppflags)\" <linkflags>\"$($(package)_ldflags)\" <archiver>\"$($(package)_archiver_$(host_os))\" <striper>\"$(host_STRIP)\" <ranlib>\"$(host_RANLIB)\" <rc>\"$(host_WINDRES)\" : ;" > user-config.jam
|
echo "using $($(package)_toolset_$(host_os)) : : $($(package)_cxx) : <cxxflags>\"$($(package)_cxxflags) $($(package)_cppflags)\" <linkflags>\"$($(package)_ldflags)\" <archiver>\"$($(package)_archiver_$(host_os))\" <striper>\"$(host_STRIP)\" <ranlib>\"$(host_RANLIB)\" <rc>\"$(host_WINDRES)\" : ;" > user-config.jam
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
|
@ -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)))
|
|
Loading…
Add table
Reference in a new issue