[tor-commits] [tor-browser-build/master] Bug 31596: Bump mingw-w64 version for fix for #31567

boklm at torproject.org boklm at torproject.org
Wed Sep 11 11:03:10 UTC 2019


commit 3ea80a42a85edc5e931cd241218cc5f0f2ff5b57
Author: Georg Koppen <gk at torproject.org>
Date:   Tue Sep 3 06:22:58 2019 +0000

    Bug 31596: Bump mingw-w64 version for fix for #31567
---
 projects/mingw-w64-clang/31567_1.patch | 33 --------------
 projects/mingw-w64-clang/31567_2.patch | 82 ----------------------------------
 projects/mingw-w64-clang/build         |  3 +-
 projects/mingw-w64-clang/config        |  4 +-
 projects/mingw-w64/config              |  2 +-
 5 files changed, 3 insertions(+), 121 deletions(-)

diff --git a/projects/mingw-w64-clang/31567_1.patch b/projects/mingw-w64-clang/31567_1.patch
deleted file mode 100644
index be316ee..0000000
--- a/projects/mingw-w64-clang/31567_1.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From d9c7a5aa3ac8d29b98f28af71d862c2d3931e7d8 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Martin=20Storsj=C3=B6?= <martin at martin.st>
-Date: Sun, 1 Sep 2019 06:05:40 +0000
-Subject: [PATCH 1/2] This function was moved from inline in header to a
- statically linked one in 52a34d52d6f5f1789d329abd4e, where the use of this
- define was dropped.
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-As this function is statically linked, the caller can't control
-and change the behaviour of the function by defining
-UCRTBASE_PRINTF_DEFAULT_WIDE in the calling translation unit,
-but we should at least use the headers' default value (which currently
-is zero).
-
-Signed-off-by: Martin Storsjö <martin at martin.st>
-
-diff --git a/mingw-w64-crt/stdio/ucrt__vsnwprintf.c b/mingw-w64-crt/stdio/ucrt__vsnwprintf.c
-index bf9f4de2..c505c31e 100644
---- a/mingw-w64-crt/stdio/ucrt__vsnwprintf.c
-+++ b/mingw-w64-crt/stdio/ucrt__vsnwprintf.c
-@@ -10,6 +10,6 @@
- 
- int __cdecl _vsnwprintf(wchar_t * __restrict__ _Dest,size_t _Count,const wchar_t * __restrict__ _Format,va_list _Args) __MINGW_ATTRIB_DEPRECATED_SEC_WARN
- {
--  return __stdio_common_vswprintf(UCRTBASE_PRINTF_LEGACY_VSPRINTF_NULL_TERMINATION, _Dest, _Count, _Format, NULL, _Args);
-+  return __stdio_common_vswprintf(UCRTBASE_PRINTF_DEFAULT_WIDE | UCRTBASE_PRINTF_LEGACY_VSPRINTF_NULL_TERMINATION, _Dest, _Count, _Format, NULL, _Args);
- }
- int __cdecl (*__MINGW_IMP_SYMBOL(_vsnwprintf))(wchar_t *__restrict__, size_t, const wchar_t *__restrict__, va_list) = _vsnwprintf;
--- 
-2.23.0.rc1
-
diff --git a/projects/mingw-w64-clang/31567_2.patch b/projects/mingw-w64-clang/31567_2.patch
deleted file mode 100644
index 12070aa..0000000
--- a/projects/mingw-w64-clang/31567_2.patch
+++ /dev/null
@@ -1,82 +0,0 @@
-From 44d0691f6fa51d2b3a0df911652c801635424e4e Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Martin=20Storsj=C3=B6?= <martin at martin.st>
-Date: Sun, 1 Sep 2019 06:08:24 +0000
-Subject: [PATCH 2/2] When __USE_MINGW_ANSI_STDIO is defined, we still call the
- custom implementation bundled in libmingwex, which has the C99 standard
- semantics for %s in wide format strings.
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-This matches how the wide stdio functions behave both when using
-msvcrt.dll, and in all versions of MSVC, even the modern ones that
-use ucrt.
-
-Signed-off-by: Martin Storsjö <martin at martin.st>
-
-diff --git a/mingw-w64-headers/crt/conio.h b/mingw-w64-headers/crt/conio.h
-index 363203c3..a92ee059 100644
---- a/mingw-w64-headers/crt/conio.h
-+++ b/mingw-w64-headers/crt/conio.h
-@@ -21,12 +21,13 @@
- #define UCRTBASE_SCANF_LEGACY_WIDE_SPECIFIERS            (0x0002)
- #define UCRTBASE_SCANF_LEGACY_MSVCRT_COMPATIBILITY       (0x0004)
- 
--// Default wide printfs and scanfs to the standard mode
-+// Default wide printfs and scanfs to the legacy wide mode. Only code built
-+// with -D__USE_MINGW_ANSI_STDIO=1 will expect the standard behaviour.
- #ifndef UCRTBASE_PRINTF_DEFAULT_WIDE
--#define UCRTBASE_PRINTF_DEFAULT_WIDE 0
-+#define UCRTBASE_PRINTF_DEFAULT_WIDE UCRTBASE_PRINTF_LEGACY_WIDE_SPECIFIERS
- #endif
- #ifndef UCRTBASE_SCANF_DEFAULT_WIDE
--#define UCRTBASE_SCANF_DEFAULT_WIDE 0
-+#define UCRTBASE_SCANF_DEFAULT_WIDE UCRTBASE_SCANF_LEGACY_WIDE_SPECIFIERS
- #endif
- #endif
- 
-diff --git a/mingw-w64-headers/crt/stdio.h b/mingw-w64-headers/crt/stdio.h
-index e183236d..e8d3c857 100644
---- a/mingw-w64-headers/crt/stdio.h
-+++ b/mingw-w64-headers/crt/stdio.h
-@@ -147,12 +147,13 @@ extern FILE (* __MINGW_IMP_SYMBOL(_iob))[];	/* A pointer to an array of FILE */
- #define UCRTBASE_SCANF_LEGACY_WIDE_SPECIFIERS            (0x0002)
- #define UCRTBASE_SCANF_LEGACY_MSVCRT_COMPATIBILITY       (0x0004)
- 
--// Default wide printfs and scanfs to the standard mode
-+// Default wide printfs and scanfs to the legacy wide mode. Only code built
-+// with -D__USE_MINGW_ANSI_STDIO=1 will expect the standard behaviour.
- #ifndef UCRTBASE_PRINTF_DEFAULT_WIDE
--#define UCRTBASE_PRINTF_DEFAULT_WIDE 0
-+#define UCRTBASE_PRINTF_DEFAULT_WIDE UCRTBASE_PRINTF_LEGACY_WIDE_SPECIFIERS
- #endif
- #ifndef UCRTBASE_SCANF_DEFAULT_WIDE
--#define UCRTBASE_SCANF_DEFAULT_WIDE 0
-+#define UCRTBASE_SCANF_DEFAULT_WIDE UCRTBASE_SCANF_LEGACY_WIDE_SPECIFIERS
- #endif
- #endif
- 
-diff --git a/mingw-w64-headers/crt/wchar.h b/mingw-w64-headers/crt/wchar.h
-index cd26e098..d1348bc2 100644
---- a/mingw-w64-headers/crt/wchar.h
-+++ b/mingw-w64-headers/crt/wchar.h
-@@ -247,12 +247,13 @@ extern FILE (* __MINGW_IMP_SYMBOL(_iob))[];	/* A pointer to an array of FILE */
- #define UCRTBASE_SCANF_LEGACY_WIDE_SPECIFIERS            (0x0002)
- #define UCRTBASE_SCANF_LEGACY_MSVCRT_COMPATIBILITY       (0x0004)
- 
--// Default wide printfs and scanfs to the standard mode
-+// Default wide printfs and scanfs to the legacy wide mode. Only code built
-+// with -D__USE_MINGW_ANSI_STDIO=1 will expect the standard behaviour.
- #ifndef UCRTBASE_PRINTF_DEFAULT_WIDE
--#define UCRTBASE_PRINTF_DEFAULT_WIDE 0
-+#define UCRTBASE_PRINTF_DEFAULT_WIDE UCRTBASE_PRINTF_LEGACY_WIDE_SPECIFIERS
- #endif
- #ifndef UCRTBASE_SCANF_DEFAULT_WIDE
--#define UCRTBASE_SCANF_DEFAULT_WIDE 0
-+#define UCRTBASE_SCANF_DEFAULT_WIDE UCRTBASE_SCANF_LEGACY_WIDE_SPECIFIERS
- #endif
- #endif
- 
--- 
-2.23.0.rc1
-
diff --git a/projects/mingw-w64-clang/build b/projects/mingw-w64-clang/build
index 820346d..b4000f5 100644
--- a/projects/mingw-w64-clang/build
+++ b/projects/mingw-w64-clang/build
@@ -69,8 +69,7 @@ default_win32_winnt=0x601
 
 cd $builddir/mingw-w64-clang
 patch -p1 < $rootdir/mingw-winrt.patch
-patch -p1 < $rootdir/31567_1.patch
-patch -p1 < $rootdir/31567_2.patch
+
 cd mingw-w64-headers
 mkdir build && cd build
 ../configure --host=[% c("arch") %]-w64-mingw32 \
diff --git a/projects/mingw-w64-clang/config b/projects/mingw-w64-clang/config
index 16adee8..a6b6cde 100644
--- a/projects/mingw-w64-clang/config
+++ b/projects/mingw-w64-clang/config
@@ -1,7 +1,7 @@
 # vim: filetype=yaml sw=2
 filename: '[% project %]-[% c("version") %]-[% c("var/build_id") %].tar.gz'
 git_url: https://git.code.sf.net/p/mingw-w64/mingw-w64
-git_hash: 2d52c4b3433e55b1c454f9567c0ae9adc4b83b41
+git_hash: 330025c54b85512d54b6960fad07498365c8fee3
 version: '[% c("abbrev") %]'
 llvm_version: 8.0.0
 gpg_keyring: clang.gpg
@@ -36,5 +36,3 @@ input_files:
   - project: llvm-mingw
     name: llvm-mingw
   - filename: mingw-winrt.patch
-  - filename: 31567_1.patch
-  - filename: 31567_2.patch
diff --git a/projects/mingw-w64/config b/projects/mingw-w64/config
index 3bb1dda..0145194 100644
--- a/projects/mingw-w64/config
+++ b/projects/mingw-w64/config
@@ -1,7 +1,7 @@
 # vim: filetype=yaml sw=2
 filename: '[% project %]-[% c("version") %]-[% c("var/build_id") %].tar.gz'
 git_url: https://git.code.sf.net/p/mingw-w64/mingw-w64
-git_hash: 2d52c4b3433e55b1c454f9567c0ae9adc4b83b41
+git_hash: 330025c54b85512d54b6960fad07498365c8fee3
 version: '[% c("abbrev") %]'
 var:
   container:





More information about the tor-commits mailing list