[Mingw-w64-public] [PATCH] headers: Add more GUIDs in mfidl.idl.

2021-05-14 Thread Biswapriyo Nath
From 8c54bb5c0842decc2966cf2252f4881522580162 Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Sat, 15 May 2021 10:48:02 +0530 Subject: [PATCH] headers: Add more GUIDs in mfidl.idl. Signed-off-by: Biswapriyo Nath --- mingw-w64-headers/include/mfidl.idl | 55 + 1

Re: [Mingw-w64-public] [PATCH] headers: Add wmsdk.h

2021-05-14 Thread JonY via Mingw-w64-public
On 5/14/21 12:14 PM, JonY wrote: On 5/13/21 3:31 PM, Biswapriyo Nath wrote: Patch OK, will commit soon if nobody has objections. Pushed to master branch. OpenPGP_signature Description: OpenPGP digital signature ___ Mingw-w64-public mailing lis

Re: [Mingw-w64-public] [PATCH] headers: Add more constants to STORAGE_BUS_TYPE.

2021-05-14 Thread JonY via Mingw-w64-public
On 5/14/21 1:46 PM, JonY wrote: On 5/14/21 12:35 PM, Christian Franke wrote: ... in particular BusTypeNvme. Patch OK, will push soon if no objections. Pushed to master branch. ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge

Re: [Mingw-w64-public] wine FTBFS with mingw64 gcc 11: undefined reference to `sincos'

2021-05-14 Thread lhmouse
在 5/15/21 1:27 AM, Jacek Caban 写道: > > I think that the decision was unfortunate on GCC side, but there is little we > can do. We will > probably need to provide it in msvcrt importlibs. Please try the attached > patch, it should help. > > Doesn't GCC transform such pair of calls to `sincos()

Re: [Mingw-w64-public] wine FTBFS with mingw64 gcc 11: undefined reference to `sincos'

2021-05-14 Thread Jacek Caban
Hi Alex, On 5/14/21 3:01 AM, Alex Xu (Hello71) wrote: Hi, I tried building wine 6.8 with mingw. All fine, just one problem, it reports error "undefined reference to `sincos'". Why, you may ask, since wine never calls sincos function? Well, it seems to be because mingw gcc 11 enables sincos opti

[Mingw-w64-public] [PATCH] include/{guiddef, _mingw}: Implement `__uuidof` with overloading instead of specialization

2021-05-14 Thread Liu Hao
It may fix issues about specializations outside their namespaces, but is otherwise totally untested. -- Best regards, Liu Hao From 429d462b97e8980d89ba4dc6c14de051e408c9d9 Mon Sep 17 00:00:00 2001 From: Liu Hao Date: Fri, 14 May 2021 21:46:49 +0800 Subject: [PATCH] include/{guiddef,_mingw}: I

Re: [Mingw-w64-public] [PATCH] headers: Add more constants to STORAGE_BUS_TYPE.

2021-05-14 Thread JonY via Mingw-w64-public
On 5/14/21 12:35 PM, Christian Franke wrote: ... in particular BusTypeNvme. Patch OK, will push soon if no objections. OpenPGP_signature Description: OpenPGP digital signature ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.ne

[Mingw-w64-public] [PATCH] headers: Add more constants to STORAGE_BUS_TYPE.

2021-05-14 Thread Christian Franke
... in particular BusTypeNvme. From 26b61d33a96e4cede27e2ebf8e3e1b535df7b9f5 Mon Sep 17 00:00:00 2001 From: Christian Franke Date: Fri, 14 May 2021 14:12:05 +0200 Subject: [PATCH] headers: Add more constants to STORAGE_BUS_TYPE. Signed-off-by: Christian Franke --- mingw-w64-headers/include/wi

Re: [Mingw-w64-public] [PATCH] headers: Add wmsdk.h

2021-05-14 Thread JonY via Mingw-w64-public
On 5/13/21 3:31 PM, Biswapriyo Nath wrote: Patch OK, will commit soon if nobody has objections. OpenPGP_signature Description: OpenPGP digital signature ___ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.source

[Mingw-w64-public] __CRT_UUID_DECL in namespace causes error

2021-05-14 Thread Biswapriyo Nath
If an interface declaration is moved inside a namespace __CRT_UUID_DECL produces error. The error is: explicit specialization of 'template const GUID& __mingw_uuidof()' outside its namespace must use a nested-name-specifier [-fpermissive]. A simple reproducible code is attached (test.cpp). The sam