26 Sep
2023
26 Sep
'23
6:28 p.m.
From: Francois Gouget <fgouget(a)codeweavers.com> On Windows 8 kernelbase is missing FindResourceW() which prevents the test from running. --- dlls/windows.applicationmodel/tests/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/windows.applicationmodel/tests/Makefile.in b/dlls/windows.applicationmodel/tests/Makefile.in index 9289fe0bc8c..dafe28e9407 100644 --- a/dlls/windows.applicationmodel/tests/Makefile.in +++ b/dlls/windows.applicationmodel/tests/Makefile.in @@ -1,5 +1,5 @@ TESTDLL = windows.applicationmodel.dll -IMPORTS = combase advapi32 kernelbase +IMPORTS = combase advapi32 kernel32 application_EXTRADLLFLAGS = -mconsole -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/3958