mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 02:33:24 -03:00
depends: fix miniupnpc snprintf usage on Windows
This commit is contained in:
parent
3c2d440f14
commit
5195baa600
2 changed files with 28 additions and 2 deletions
|
@ -3,7 +3,7 @@ $(package)_version=2.2.7
|
|||
$(package)_download_path=https://miniupnp.tuxfamily.org/files/
|
||||
$(package)_file_name=$(package)-$($(package)_version).tar.gz
|
||||
$(package)_sha256_hash=b0c3a27056840fd0ec9328a5a9bac3dc5e0ec6d2e8733349cf577b0aa1e70ac1
|
||||
$(package)_patches=dont_leak_info.patch cmake_get_src_addr.patch
|
||||
$(package)_patches=dont_leak_info.patch cmake_get_src_addr.patch fix_windows_snprintf.patch
|
||||
$(package)_build_subdir=build
|
||||
|
||||
define $(package)_set_vars
|
||||
|
@ -14,7 +14,8 @@ endef
|
|||
|
||||
define $(package)_preprocess_cmds
|
||||
patch -p1 < $($(package)_patch_dir)/dont_leak_info.patch && \
|
||||
patch -p1 < $($(package)_patch_dir)/cmake_get_src_addr.patch
|
||||
patch -p1 < $($(package)_patch_dir)/cmake_get_src_addr.patch && \
|
||||
patch -p1 < $($(package)_patch_dir)/fix_windows_snprintf.patch
|
||||
endef
|
||||
|
||||
define $(package)_config_cmds
|
||||
|
|
25
depends/patches/miniupnpc/fix_windows_snprintf.patch
Normal file
25
depends/patches/miniupnpc/fix_windows_snprintf.patch
Normal file
|
@ -0,0 +1,25 @@
|
|||
commit a1e9de80ab99b4c956a6a4e21d3e0de6f7a1014d
|
||||
Author: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com>
|
||||
Date: Sat Apr 20 15:14:47 2024 +0100
|
||||
|
||||
Fix macro expression that guards `snprintf` for Windows
|
||||
|
||||
Otherwise, the `snprintf` is still wrongly emulated for the following
|
||||
cases:
|
||||
- mingw-w64 6.0.0 or new with ucrt
|
||||
- mingw-w64 8.0.0 or new with iso c ext
|
||||
|
||||
--- a/src/win32_snprintf.h
|
||||
+++ b/src/win32_snprintf.h
|
||||
@@ -23,9 +23,9 @@
|
||||
(defined(_MSC_VER) && _MSC_VER < 1900) /* Visual Studio older than 2015 */ || \
|
||||
(defined(__MINGW32__) && !defined(__MINGW64_VERSION_MAJOR) && defined(__NO_ISOCEXT)) /* mingw32 without iso c ext */ || \
|
||||
(defined(__MINGW64_VERSION_MAJOR) && /* mingw-w64 not ... */ !( \
|
||||
- (defined (__USE_MINGW_ANSI_STDIO) && __USE_MINGW_ANSI_STDIO != 0)) /* ... with ansi stdio */ || \
|
||||
+ (defined (__USE_MINGW_ANSI_STDIO) && __USE_MINGW_ANSI_STDIO != 0) /* ... with ansi stdio */ || \
|
||||
(__MINGW64_VERSION_MAJOR >= 6 && defined(_UCRT)) /* ... at least 6.0.0 with ucrt */ || \
|
||||
- (__MINGW64_VERSION_MAJOR >= 8 && !defined(__NO_ISOCEXT)) /* ... at least 8.0.0 with iso c ext */ || \
|
||||
+ (__MINGW64_VERSION_MAJOR >= 8 && !defined(__NO_ISOCEXT))) /* ... at least 8.0.0 with iso c ext */ || \
|
||||
0) || \
|
||||
0)
|
||||
|
Loading…
Add table
Reference in a new issue