Re: [Mingw-w64-public] [PATCH v2] winstorecompat: provide GetFileInformationByHandle

2020-05-19 Thread Martin Storsjö
On Tue, 19 May 2020, Steve Lhomme wrote: It's forbidden in any UWP app but the same information can be gathered via GetFileInformationByHandleEx. It's used by gnutls (via gnulib). --- mingw-w64-headers/include/fileapi.h | 6 +- .../winstorecompat/Makefile.am| 2 + .../

Re: [Mingw-w64-public] [PATCH 1/2] widl: Compute relative binary to include dir path in configure.

2020-05-19 Thread Jacek Caban
On 19.05.2020 10:34, Martin Storsjö wrote: On Mon, 18 May 2020, Jacek Caban wrote: Signed-off-by: Jacek Caban --- Wine has relocation support in widl now, which conflicts with mingw-w64 relocation patch. Wine uses BIN_TO_INCLUDEDIR macro, which gets computed relative path. Wine has its own

Re: [Mingw-w64-public] [PATCH 1/6] winpthreads: simplify the USE_VEH_FOR_MSC_SETTHREADNAME check

2020-05-19 Thread Liu Hao
在 2020/5/18 22:43, Steve Lhomme 写道: > Hi, > > Any update on this patchset ? > > No. I pushed these patches to master for testing. -- Best regards, LH_Mouse signature.asc Description: OpenPGP digital signature ___ Mingw-w64-public mailing list

Re: [Mingw-w64-public] [PATCH 2/2] d2d1_1.h: Add C declaration for ID2D1Device

2020-05-19 Thread Liu Hao
在 2020/5/19 17:29, Ruslan Garipov 写道: > > Signed-off-by: ‡Ruslan Garipov > --- >  mingw-w64-headers/include/d2d1_1.h | 24 +++- >  1 file changed, 23 insertions(+), 1 deletion(-) > > > Thanks. I pushed these two patches. -- Best regards, LH_Mouse signature.asc Descrip

Re: [Mingw-w64-public] Timer resolution issue

2020-05-19 Thread Liu Hao
在 2020/5/18 15:15, Tempelaar E. (Erik) 写道: > I've been searching the web for answers but I'm a bit lost. > What can explain the difference in behaviour of the two msys2 environments on > my system? > > Is it a regression in Windows 10 1803, as discussed in this PR with a > workaround to force th

Re: [Mingw-w64-public] Timer resolution issue

2020-05-19 Thread Tempelaar E. (Erik)
Thanks for the suggestion; I see that the mcf-thread model is superior in performance. Any insights on what changed that impacted the performance of the regular build? Having to resort to an experimental library using undocumented windows-features is a little out of my comfort zone. I'll run som

[Mingw-w64-public] [PATCH 1/2] d2d1_1.h: Add C declaration for ID2D1DeviceContext

2020-05-19 Thread Ruslan Garipov
Signed-off-by: ‡Ruslan Garipov --- mingw-w64-headers/include/d2d1_1.h | 125 - 1 file changed, 124 insertions(+), 1 deletion(-) diff --git a/mingw-w64-headers/include/d2d1_1.h b/mingw-w64-headers/include/d2d1_1.h index 5c97245dcf..f090be7ac0 100644 --- a/mingw-w64-

[Mingw-w64-public] [PATCH 2/2] d2d1_1.h: Add C declaration for ID2D1Device

2020-05-19 Thread Ruslan Garipov
Signed-off-by: ‡Ruslan Garipov --- mingw-w64-headers/include/d2d1_1.h | 24 +++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/mingw-w64-headers/include/d2d1_1.h b/mingw-w64-headers/include/d2d1_1.h index f090be7ac0..f48ac349cd 100644 --- a/mingw-w64-headers

[Mingw-w64-public] [PATCH v2] winstorecompat: provide GetFileInformationByHandle

2020-05-19 Thread Steve Lhomme
It's forbidden in any UWP app but the same information can be gathered via GetFileInformationByHandleEx. It's used by gnutls (via gnulib). --- mingw-w64-headers/include/fileapi.h | 6 +- .../winstorecompat/Makefile.am| 2 + .../src/GetFileInformationByHandle.c

Re: [Mingw-w64-public] [PATCH] winstorecompat: provide GetFileInformationByHandle

2020-05-19 Thread Steve Lhomme
Oops, I thought it was compiling but I forgot to run autoreconf. I'll provide an updated version. On 2020-05-19 11:12, Steve Lhomme wrote: It's forbidden in any UWP app but the same information can be gathered via GetFileInformationByHandleEx. It's used by gnutls (via gnulib). --- mingw-w64

[Mingw-w64-public] [PATCH] winstorecompat: provide GetFileInformationByHandle

2020-05-19 Thread Steve Lhomme
It's forbidden in any UWP app but the same information can be gathered via GetFileInformationByHandleEx. It's used by gnutls (via gnulib). --- mingw-w64-headers/include/fileapi.h | 6 +- .../winstorecompat/Makefile.am| 2 + .../src/GetFileInformationByHandle.c

Re: [Mingw-w64-public] [PATCH 1/2] widl: Compute relative binary to include dir path in configure.

2020-05-19 Thread Martin Storsjö
On Mon, 18 May 2020, Jacek Caban wrote: Signed-off-by: Jacek Caban --- Wine has relocation support in widl now, which conflicts with mingw-w64 relocation patch. Wine uses BIN_TO_INCLUDEDIR macro, which gets computed relative path. Wine has its own makedep, which takes care of computing that,