From 97b0433a7b90d3c6631756d579b87f46b6e608dae8cd758207d96c70894519d8 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Wed, 28 Aug 2024 12:23:12 +0000 Subject: [PATCH 1/4] [info=9cf3f461f4f434535cc2754d17a3910c2d8532590fc18da9e2a4f2b8bb7ec0bc] OBS-URL: https://build.opensuse.org/package/show/windows:mingw:win32/mingw32-headers?expand=0&rev=56 --- .gitattributes | 23 +++ .gitignore | 1 + _scmsync.obsinfo | 4 + build.specials.obscpio | 3 + ...v11.0.1-fix-undefined-interface-type.patch | 14 ++ mingw-w64-v11.0.1.tar.bz2 | 3 + mingw-w64-v9.0.0-strnlen_s.patch | 14 ++ mingw32-headers-rpmlintrc | 2 + mingw32-headers.changes | 141 ++++++++++++++++++ mingw32-headers.spec | 73 +++++++++ 10 files changed, 278 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 _scmsync.obsinfo create mode 100644 build.specials.obscpio create mode 100644 mingw-w64-v11.0.1-fix-undefined-interface-type.patch create mode 100644 mingw-w64-v11.0.1.tar.bz2 create mode 100644 mingw-w64-v9.0.0-strnlen_s.patch create mode 100644 mingw32-headers-rpmlintrc create mode 100644 mingw32-headers.changes create mode 100644 mingw32-headers.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/_scmsync.obsinfo b/_scmsync.obsinfo new file mode 100644 index 0000000..d10fc6b --- /dev/null +++ b/_scmsync.obsinfo @@ -0,0 +1,4 @@ +mtime: 1699910305 +commit: 9cf3f461f4f434535cc2754d17a3910c2d8532590fc18da9e2a4f2b8bb7ec0bc +url: https://src.opensuse.org/mingw/mingw32-headers +revision: master diff --git a/build.specials.obscpio b/build.specials.obscpio new file mode 100644 index 0000000..e163308 --- /dev/null +++ b/build.specials.obscpio @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a28df3004357e4cda09f9cc81fd72ab577a6b4612415deed3eebb4af2897bf17 +size 256 diff --git a/mingw-w64-v11.0.1-fix-undefined-interface-type.patch b/mingw-w64-v11.0.1-fix-undefined-interface-type.patch new file mode 100644 index 0000000..c46a588 --- /dev/null +++ b/mingw-w64-v11.0.1-fix-undefined-interface-type.patch @@ -0,0 +1,14 @@ +diff -ur mingw-w64-v11.0.1.orig/mingw-w64-headers/include/msxml.h mingw-w64-v11.0.1/mingw-w64-headers/include/msxml.h +--- mingw-w64-v11.0.1.orig/mingw-w64-headers/include/msxml.h 2023-04-29 11:15:30.000000000 +0200 ++++ mingw-w64-v11.0.1/mingw-w64-headers/include/msxml.h 2023-11-11 15:16:47.191637105 +0100 +@@ -820,6 +820,10 @@ + END_INTERFACE + } IXMLDOMNodeVtbl; + ++#if defined(_WIN32) && !defined(interface) ++#define interface struct ++#endif ++ + interface IXMLDOMNode { + CONST_VTBL IXMLDOMNodeVtbl* lpVtbl; + }; diff --git a/mingw-w64-v11.0.1.tar.bz2 b/mingw-w64-v11.0.1.tar.bz2 new file mode 100644 index 0000000..db3662b --- /dev/null +++ b/mingw-w64-v11.0.1.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f66bce069ee8bed7439a1a13da7cb91a5e67ea6170f21317ac7f5794625ee10 +size 10057401 diff --git a/mingw-w64-v9.0.0-strnlen_s.patch b/mingw-w64-v9.0.0-strnlen_s.patch new file mode 100644 index 0000000..01cdfca --- /dev/null +++ b/mingw-w64-v9.0.0-strnlen_s.patch @@ -0,0 +1,14 @@ +--- mingw-w64-v9.0.0/mingw-w64-headers/crt/sec_api/string_s.h 2021-05-22 14:34:25.000000000 +0200 ++++ mingw-w64-v9.0.0/mingw-w64-headers/crt/sec_api/string_s.h 2021-07-08 09:10:48.082143084 +0200 +@@ -43,9 +43,11 @@ + _CRTIMP errno_t __cdecl strcat_s(char *_Dst, rsize_t _SizeInBytes, const char * _Src); + __DEFINE_CPP_OVERLOAD_SECURE_FUNC_0_1(errno_t, strcat_s, char, _Dest, const char *, _Source) + ++#ifdef _NEEDS_STRNLEN_S + __forceinline size_t __cdecl strnlen_s(const char * _src, size_t _count) { + return _src ? strnlen(_src, _count) : 0; + } ++#endif + + _SECIMP errno_t __cdecl memmove_s(void *_dest,size_t _numberOfElements,const void *_src,size_t _count); + #ifndef _WSTRING_S_DEFINED diff --git a/mingw32-headers-rpmlintrc b/mingw32-headers-rpmlintrc new file mode 100644 index 0000000..ac46eac --- /dev/null +++ b/mingw32-headers-rpmlintrc @@ -0,0 +1,2 @@ +addFilter("devel-file-in-non-devel-package") +addFilter("spurious-executable-perm") diff --git a/mingw32-headers.changes b/mingw32-headers.changes new file mode 100644 index 0000000..3719418 --- /dev/null +++ b/mingw32-headers.changes @@ -0,0 +1,141 @@ +------------------------------------------------------------------- +Sat Nov 11 14:18:28 UTC 2023 - Ralf Habacker + +- Added patch: + * mingw-w64-v11.0.1-fix-undefined-interface-type.patch + + fix build issue with gcc13: type 'interface' is undefined + +------------------------------------------------------------------- +Fri Nov 3 12:33:16 UTC 2023 - Jan Engelhardt + +- Update to release 11.0.1 + * New Hyper-V APIs + * Updates to DX12 headers and much more from Wine + * Many other new Win32 APIs + +------------------------------------------------------------------- +Mon Jun 27 16:37:24 UTC 2022 - Jan Engelhardt + +- Update to release 10 + * New msvcrt10, 20, 40, 70 and 71 import libraries. + * Updated wine imports + * Fix intrin.h compatibility with GCC-11 + +------------------------------------------------------------------- +Thu Jul 8 07:13:22 UTC 2021 - Fridrich Strba + +- Added patch: + * mingw-w64-v9.0.0-strnlen_s.patch + + work around the "multiple definition of `strnlen_s'" error + + the function still accessible by defining _NEEDS_STRNLEN_S + before inclusion of the header + +------------------------------------------------------------------- +Fri Jul 2 12:34:00 UTC 2021 - Jan Engelhardt + +- Update to release 9.0.0 + * Various new and updated API headers + * at_quick_exit implementation + * dism API + +------------------------------------------------------------------- +Thu Dec 3 12:18:00 UTC 2020 - Tobias Klausmann + +- Update to new upstream release 8.0.0 + * New Hyper-V headers and libraries by Biswapriyo Nath + * Many headers updated from Wine by Jacek Caban. + * ARM math improvements by Martin Storsjö + * floating point fixes by Liu Hao + * many *printf compatibility fixes by Liu Hao and Martin Storsjö + * massive Windows App Store API updates by Steve Lhomme + * winstorecompat library updates by Martin Storsjö + * __USE_MINGW_ANSI_STDIO now automatically enabled in C99 and C11 mode when + not using UCRT by Pali Rohár + * wdm and ddk updates by Zebediah Figura + * UCRT for Windows Store Apps (-lucrtapp) by Martin Storsjö + * Audioclient and ActivateAudioInterfaceAsync API updates by Liu Hao + * DirectX SDKs are now always installed + +------------------------------------------------------------------- +Sat Nov 23 14:44:49 UTC 2019 - Ismail Dönmez + +- Update to new upstream release 7.0.0 + * _FORTIFY_SOURCE support thanks to Christian Franke. + * Lots of math fixes from Martin Storsjö. + * Many headers updated from Wine by Jacek Caban. + * UCRT support by Martin Storsjö. + +------------------------------------------------------------------- +Wed Oct 17 18:50:03 UTC 2018 - Jan Engelhardt + +- Update to new upstream release 6.0.0 + * C++ __cxa_atexit + * Massive additions to support UCRT + * Sync COM interface headers with Wine development + * WinRT additions + * ARM32 and ARM64 additions + * CRT library api-ms-win-core additions + * CRT library def file reorganization +- Removed popcnt.patch, 0001-Add-missing-D3D_CS_-variables.patch + (no longer needed; included upstream) + +------------------------------------------------------------------- +Wed Nov 22 09:46:44 UTC 2017 - idonmez@suse.com + +- Update to version 5.0.3 + +------------------------------------------------------------------- +Thu Apr 20 08:26:10 UTC 2017 - idonmez@suse.com + +- Add popcnt.patch + +------------------------------------------------------------------- +Tue Mar 28 11:40:03 UTC 2017 - idonmez@suse.com + +- Update to version 5.0.2 + * RegSetKeyValueW now has proper wide arguments. + * Fix pdh.h function calls to have proper stdcall decorators. + +------------------------------------------------------------------- +Sat Jan 14 20:48:05 UTC 2017 - idonmez@suse.com + +- Update to version 5.0.1 + +------------------------------------------------------------------- +Wed Mar 23 21:07:00 UTC 2016 - jengelh@inai.de + +- Update to new upstream release 5.0~rc1 +* Basic ARM support +* gcc-5 support + +------------------------------------------------------------------- +Fri Sep 4 11:50:23 UTC 2015 - idonmez@suse.com + +- Update to version 4.0.4 + * Fixes to tchar.h +- Remove order.diff, upstream + +------------------------------------------------------------------- +Tue Apr 21 09:00:58 UTC 2015 - jengelh@inai.de + +- Update to new upstream release 4.0.2 +* Fix PdhValidatePathExW declaration. +* Fix WAVE_FORMAT_POLYCOM_G729_A typo in mmreg.h. +* Fix missing newlines separating define macros in commctrl.h. + +------------------------------------------------------------------- +Thu Mar 26 10:19:04 UTC 2015 - jengelh@inai.de + +- Add order.diff to fix SHGetFolderPathW compile errors in code + using shlobj.h. + +------------------------------------------------------------------- +Wed Mar 25 10:48:30 UTC 2015 - jengelh@inai.de + +- Update to mingw-w64-4.0.1 +* 32-bit ARM thumb software math +* Improved DirectX 11, OpenGL 4.5/GLES 3.1 support +* added POSIX.1-2008 ftw.h +* more secure functions: qsort_s, gmtime64_s, time_s.h, ... +* added to stat.h: S_IRGRP, S_IRWXG, ... +* added to unistd.h: SHUT_* diff --git a/mingw32-headers.spec b/mingw32-headers.spec new file mode 100644 index 0000000..cea7cec --- /dev/null +++ b/mingw32-headers.spec @@ -0,0 +1,73 @@ +# +# spec file for package mingw32-headers +# +# Copyright (c) 2023 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +Name: mingw32-headers +Version: 11.0.1 +Release: 0 +Summary: MinGW-w64 headers for Win32 and Win64 +License: SUSE-Public-Domain +Group: Development/Libraries/C and C++ +URL: http://mingw-w64.sf.net/ +Source: http://downloads.sf.net/mingw-w64/mingw-w64-v%version.tar.bz2 +Source1000: %name-rpmlintrc +Patch0: mingw-w64-v9.0.0-strnlen_s.patch +Patch1: mingw-w64-v11.0.1-fix-undefined-interface-type.patch +BuildRequires: mingw32-filesystem +BuildRequires: xz +#!BuildIgnore: post-build-checks +Requires: mingw32-unistd-pthread-devel +BuildArch: noarch + +%description +MinGW-w64 delivers runtime, headers and libs for developing both 64 +bit (x64) and 32 bit (x86) windows applications using GCC and other +free software compilers. + +This subpackage contains the header files. + +%package dummy-pthread +Summary: Stub pthread header files for MinGW +Group: Development/Libraries/C and C++ +Provides: mingw32-unistd-pthread-devel + +%description dummy-pthread +This subpackage contains stub pthread header files that are empty +and only exist to satisfy dependencies in MinGW's unistd.h until +an actual pthread implementation (like winpthreads) is installed. + +%prep +%autosetup -n mingw-w64-v%version/mingw-w64-headers -p2 + +%build +%_mingw32_configure \ + --enable-sdk=all \ + --enable-secure-api +%make_build + +%install +%make_install + +%files +%_mingw32_includedir/ +%exclude %_mingw32_includedir/pthread_*.h + +%files dummy-pthread +%dir %_mingw32_includedir +%_mingw32_includedir/pthread_*.h + +%changelog From 2fea505cb1567e761bba5794ba7dc857bc22751d3b3c17769576f23a9ba30457 Mon Sep 17 00:00:00 2001 From: OBS User unknown Date: Sat, 28 Sep 2024 14:02:20 +0000 Subject: [PATCH 2/4] [info=7a86c7df9ba798ffe9cafcff8fb10c5b135102d75aea6cb210beca2ddd1febc8] OBS-URL: https://build.opensuse.org/package/show/windows:mingw:win32/mingw32-headers?expand=0&rev=57 --- _scmsync.obsinfo | 4 ++-- build.specials.obscpio | 2 +- mingw-w64-v11.0.1.tar.bz2 | 3 --- mingw-w64-v12.0.0.tar.bz2 | 3 +++ mingw32-headers.changes | 11 +++++++++++ mingw32-headers.spec | 4 ++-- 6 files changed, 19 insertions(+), 8 deletions(-) delete mode 100644 mingw-w64-v11.0.1.tar.bz2 create mode 100644 mingw-w64-v12.0.0.tar.bz2 diff --git a/_scmsync.obsinfo b/_scmsync.obsinfo index d10fc6b..62e759d 100644 --- a/_scmsync.obsinfo +++ b/_scmsync.obsinfo @@ -1,4 +1,4 @@ -mtime: 1699910305 -commit: 9cf3f461f4f434535cc2754d17a3910c2d8532590fc18da9e2a4f2b8bb7ec0bc +mtime: 1727532108 +commit: 7a86c7df9ba798ffe9cafcff8fb10c5b135102d75aea6cb210beca2ddd1febc8 url: https://src.opensuse.org/mingw/mingw32-headers revision: master diff --git a/build.specials.obscpio b/build.specials.obscpio index e163308..581bf86 100644 --- a/build.specials.obscpio +++ b/build.specials.obscpio @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a28df3004357e4cda09f9cc81fd72ab577a6b4612415deed3eebb4af2897bf17 +oid sha256:4a901398cd3c49cc3e9bbf8ae984f15ca463d22c7c32bb365b45784be42f6088 size 256 diff --git a/mingw-w64-v11.0.1.tar.bz2 b/mingw-w64-v11.0.1.tar.bz2 deleted file mode 100644 index db3662b..0000000 --- a/mingw-w64-v11.0.1.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3f66bce069ee8bed7439a1a13da7cb91a5e67ea6170f21317ac7f5794625ee10 -size 10057401 diff --git a/mingw-w64-v12.0.0.tar.bz2 b/mingw-w64-v12.0.0.tar.bz2 new file mode 100644 index 0000000..31f35d2 --- /dev/null +++ b/mingw-w64-v12.0.0.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc41898aac4b6e8dd5cffd7331b9d9515b912df4420a3a612b5ea2955bbeed2f +size 10474283 diff --git a/mingw32-headers.changes b/mingw32-headers.changes index 3719418..6d61934 100644 --- a/mingw32-headers.changes +++ b/mingw32-headers.changes @@ -1,3 +1,14 @@ +------------------------------------------------------------------- +Wed Aug 28 10:45:16 UTC 2024 - Jan Engelhardt + +- Update to release 12 + * C++ overloads for _strdate_s and _strtime_s, _makepath_s, + wcsncat_s. + * Updated wine header imports. + * Many other new win32 APIs. + * UCRT configurations now primarily use (faster) math functions + from UCRT, rather than libmingwex. + ------------------------------------------------------------------- Sat Nov 11 14:18:28 UTC 2023 - Ralf Habacker diff --git a/mingw32-headers.spec b/mingw32-headers.spec index cea7cec..0f95d3f 100644 --- a/mingw32-headers.spec +++ b/mingw32-headers.spec @@ -1,7 +1,7 @@ # # spec file for package mingw32-headers # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: mingw32-headers -Version: 11.0.1 +Version: 12.0.0 Release: 0 Summary: MinGW-w64 headers for Win32 and Win64 License: SUSE-Public-Domain From 14dd974f507880ea5bc4f9d2e1aa4d32d5fa94d09ab1872cc8362dad6c5a6a6d Mon Sep 17 00:00:00 2001 From: OBS User unknown Date: Mon, 7 Oct 2024 07:02:53 +0000 Subject: [PATCH 3/4] [info=8f884be2a9f0580168481d78abdac282df07e1d602a2a2f8c3264e31081ec27a] OBS-URL: https://build.opensuse.org/package/show/windows:mingw:win32/mingw32-headers?expand=0&rev=58 --- _scmsync.obsinfo | 4 ++-- build.specials.obscpio | 2 +- mingw32-headers.changes | 8 ++++++++ mingw32-headers.spec | 3 ++- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/_scmsync.obsinfo b/_scmsync.obsinfo index 62e759d..16175d4 100644 --- a/_scmsync.obsinfo +++ b/_scmsync.obsinfo @@ -1,4 +1,4 @@ -mtime: 1727532108 -commit: 7a86c7df9ba798ffe9cafcff8fb10c5b135102d75aea6cb210beca2ddd1febc8 +mtime: 1728284531 +commit: 8f884be2a9f0580168481d78abdac282df07e1d602a2a2f8c3264e31081ec27a url: https://src.opensuse.org/mingw/mingw32-headers revision: master diff --git a/build.specials.obscpio b/build.specials.obscpio index 581bf86..b9922e0 100644 --- a/build.specials.obscpio +++ b/build.specials.obscpio @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4a901398cd3c49cc3e9bbf8ae984f15ca463d22c7c32bb365b45784be42f6088 +oid sha256:9e03c3b7ed40df06fbcb0ab3360b7efe12473ccec1625f58c9efbb319349714c size 256 diff --git a/mingw32-headers.changes b/mingw32-headers.changes index 6d61934..e7228f6 100644 --- a/mingw32-headers.changes +++ b/mingw32-headers.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Sun Oct 6 22:13:26 UTC 2024 - Ralf Habacker + +- Fixes build errors in other packages due to undefined + references of "_imp____sys_nerr" and others caused by + this package not being synchronized with the mingw32-runtime + package (--with-default-msvcrt=msvcrt must be used). + ------------------------------------------------------------------- Wed Aug 28 10:45:16 UTC 2024 - Jan Engelhardt diff --git a/mingw32-headers.spec b/mingw32-headers.spec index 0f95d3f..e8a2fa5 100644 --- a/mingw32-headers.spec +++ b/mingw32-headers.spec @@ -56,7 +56,8 @@ an actual pthread implementation (like winpthreads) is installed. %build %_mingw32_configure \ --enable-sdk=all \ - --enable-secure-api + --enable-secure-api \ + --with-default-msvcrt=msvcrt %make_build %install From adf132e0550622f51b35425ce7b1f137e470f9932680b983920233549f31f282 Mon Sep 17 00:00:00 2001 From: OBS User unknown Date: Mon, 7 Oct 2024 10:24:53 +0000 Subject: [PATCH 4/4] [info=0652256b7d487d755e67db88dae4155f2e58797802835769dbe32a1725582ded] OBS-URL: https://build.opensuse.org/package/show/windows:mingw:win32/mingw32-headers?expand=0&rev=59 --- _scmsync.obsinfo | 4 ++-- build.specials.obscpio | 2 +- mingw32-headers.changes | 5 +++++ mingw32-headers.spec | 5 +---- 4 files changed, 9 insertions(+), 7 deletions(-) diff --git a/_scmsync.obsinfo b/_scmsync.obsinfo index 16175d4..25f495e 100644 --- a/_scmsync.obsinfo +++ b/_scmsync.obsinfo @@ -1,4 +1,4 @@ -mtime: 1728284531 -commit: 8f884be2a9f0580168481d78abdac282df07e1d602a2a2f8c3264e31081ec27a +mtime: 1728296627 +commit: 0652256b7d487d755e67db88dae4155f2e58797802835769dbe32a1725582ded url: https://src.opensuse.org/mingw/mingw32-headers revision: master diff --git a/build.specials.obscpio b/build.specials.obscpio index b9922e0..a390318 100644 --- a/build.specials.obscpio +++ b/build.specials.obscpio @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9e03c3b7ed40df06fbcb0ab3360b7efe12473ccec1625f58c9efbb319349714c +oid sha256:44b43fe0111dbd6c4398bda76cd460743a6b69a5d2233e915838d3b6ce181687 size 256 diff --git a/mingw32-headers.changes b/mingw32-headers.changes index e7228f6..36a4030 100644 --- a/mingw32-headers.changes +++ b/mingw32-headers.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Oct 7 10:21:51 UTC 2024 - Jan Engelhardt + +- Delete --enable-secure-api, this is gone since mingw 7. + ------------------------------------------------------------------- Sun Oct 6 22:13:26 UTC 2024 - Ralf Habacker diff --git a/mingw32-headers.spec b/mingw32-headers.spec index e8a2fa5..00e191d 100644 --- a/mingw32-headers.spec +++ b/mingw32-headers.spec @@ -54,10 +54,7 @@ an actual pthread implementation (like winpthreads) is installed. %autosetup -n mingw-w64-v%version/mingw-w64-headers -p2 %build -%_mingw32_configure \ - --enable-sdk=all \ - --enable-secure-api \ - --with-default-msvcrt=msvcrt +%_mingw32_configure --enable-sdk=all --with-default-msvcrt=msvcrt %make_build %install