Am Mittwoch, 9. Februar 2005 17:16 schrieb Paul Vriens:
> On Wed, 2005-02-09 at 16:59, Paul Millar wrote:
[snip]
>
> Hi Paul,
>
> I've included wine-devel again as this must touch others as well.
>
> I wasn't able to run the shlwapi tests on my win98 box, by itself.
> Running this gives an error box:
>
> The SHLWAPI_.EXE file is
> linked to missing export SHLWAPI.DLL:PathIsValidCharA
>
> and just for completeness sake:
>
> dsound:
>
> ...
> linked to missing export DSOUND.DLL:DirectSoundCreate8
>
> mlang:
>
> ...
> linked to missing export NTDLL.DLL:atoi
>
> msvcrtd:
>
> A required .DLL, MSVCRTD.DLL, was not found
>
> ole32:
>
> ...
> linked to missing export NTDLL.DLL:atoi
>
> Cheers,
>
> Paul Vriens.

Hello,

mlang.dll and ole32.dll can be linked against msvcrt.dll insted of ntdll (like 
in the attached patch). Will this cause problems?

Bye Stefan

PS: Is someone working on a fix for the missing import of shlwapi.dll? If 
nobody 'complains' I will make a patch tomorrow evening
--- ../wine/dlls/mlang/tests/Makefile.in	2004-08-04 20:33:06.000000000 +0200
+++ dlls/mlang/tests/Makefile.in	2005-02-09 22:37:02.000000000 +0100
@@ -3,7 +3,7 @@
 SRCDIR    = @srcdir@
 VPATH     = @srcdir@
 TESTDLL   = mlang.dll
-IMPORTS   = ole32 gdi32 kernel32 ntdll
+IMPORTS   = ole32 gdi32 kernel32 msvcrt
 EXTRALIBS = -luuid
 
 CTESTS = \
--- ../wine/dlls/ole32/tests/Makefile.in	2004-12-21 15:51:27.000000000 +0100
+++ dlls/ole32/tests/Makefile.in	2005-02-09 22:36:41.000000000 +0100
@@ -3,7 +3,7 @@
 SRCDIR    = @srcdir@
 VPATH     = @srcdir@
 TESTDLL   = ole32.dll
-IMPORTS   = oleaut32 ole32 user32 kernel32 ntdll
+IMPORTS   = oleaut32 ole32 user32 kernel32 msvcrt
 EXTRALIBS = -luuid
 
 CTESTS = \

Reply via email to