[Mingw-w64-public] [PATCH] headers: sensors add missing guids

2020-03-31 Thread Biswapriyo Nath
... From 784db74e7ce1c52dfd65fd7ceb93b5765771cdc2 Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Tue, 31 Mar 2020 22:07:10 +0530 Subject: [PATCH] headers: sensors add missing guids Signed-off-by: Biswapriyo Nath --- mingw-w64-headers/include/sensors.h | 53 +++--

[Mingw-w64-public] [PATCH 3/3] crt: Use __p__commode instead of __MINGW_IMP_SYMBOL(_commode) for initialization

2020-03-31 Thread Martin Storsjö
This matches what was done for _fmode in 2e64b9e4537d564478f17b873b2f655f518325ed. This fixes using a crtexe.c built without optimizations with UCRT (and fixes UCRT in general after the previous commit). Signed-off-by: Martin Storsjö --- mingw-w64-crt/Makefile.am | 4

[Mingw-w64-public] [PATCH 2/3] crt: Fix the initialization of the _commode variable

2020-03-31 Thread Martin Storsjö
In pre_c_init, there's a statement intending to set the value of the _commode variable in the CRT to the value of the _commode variable defined in the local module (with a default fallback in libmingw32.a), like this: * __MINGW_IMP_SYMBOL(_commode) = _commode; However, due to the earlier

[Mingw-w64-public] [PATCH 1/3] crt: Remove a leftover declaration of __MINGW_IMP_SYMBOL(_fmode)

2020-03-31 Thread Martin Storsjö
This became unused in 2e64b9e4537d564478f17b873b2f655f518325ed. Signed-off-by: Martin Storsjö --- mingw-w64-crt/crt/crtexe.c | 1 - 1 file changed, 1 deletion(-) diff --git a/mingw-w64-crt/crt/crtexe.c b/mingw-w64-crt/crt/crtexe.c index 361afd23a..528957542 100644 ---