From: Bernhard Übelacker <bernhardu@mailbox.org> Otherwise the executable gets linked to some functions available in Wine's kernelbase like FindResourceW, which are not available in kernelbase in Windows 8.1. Followup of e438931e48. --- dlls/mfplat/tests/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mfplat/tests/Makefile.in b/dlls/mfplat/tests/Makefile.in index 898420268e3..6caf83ab971 100644 --- a/dlls/mfplat/tests/Makefile.in +++ b/dlls/mfplat/tests/Makefile.in @@ -1,5 +1,5 @@ TESTDLL = mfplat.dll -IMPORTS = ole32 mfplat user32 d3d9 dxva2 mfuuid propsys uuid strmiids kernelbase +IMPORTS = ole32 mfplat user32 d3d9 dxva2 mfuuid propsys uuid strmiids kernel32 kernelbase SOURCES = \ mfplat.c \ -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/11142