diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-10-29 14:56:43 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2024-10-29 14:56:43 +0100 |
commit | 32743f1e117055de5388eddac65505eef4218aae (patch) | |
tree | e6d9bda0b04645ca9864bce6d113da9f0f2217df /contrib | |
parent | cd4528ae07da53abeb0c0b349634edb508b6d28e (diff) | |
download | sciteco-32743f1e117055de5388eddac65505eef4218aae.tar.gz |
mingw-bundledlls: blacklist additional DLLs
* I am not entirely sure whether it would be safe to bundle
api-ms-win-core-synch-l1-2-0.dll or bcryptprimitives.dll,
so I won't upstream this change yet.
* Should fix GTK/Win32 nightly builds.
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/mingw-bundledlls | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/mingw-bundledlls b/contrib/mingw-bundledlls index cd26f77..fdee6a1 100755 --- a/contrib/mingw-bundledlls +++ b/contrib/mingw-bundledlls @@ -52,9 +52,10 @@ blacklist = [ "opengl32.dll", "dwmapi.dll", "uxtheme.dll", "secur32.dll", "gdiplus.dll", "usp10.dll", "comctl32.dll", "wsock32.dll", "netapi32.dll", "userenv.dll", "avicap32.dll", "avrt.dll", "psapi.dll", "mswsock.dll", "glu32.dll", - "bcrypt.dll", "rpcrt4.dll", "hid.dll", + "bcrypt.dll", "bcryptprimitives.dll", "rpcrt4.dll", "hid.dll", # directx 3d 11 - "d3d11.dll", "dxgi.dll", "dwrite.dll" + "d3d11.dll", "dxgi.dll", "dwrite.dll", + "api-ms-win-core-synch-l1-2-0.dll", ] |