From c327246af333c77d1a7abd8059bbaed8b4c909ef Mon Sep 17 00:00:00 2001 From: Jeff Smith Date: Sun, 15 Dec 2002 03:00:40 +0000 Subject: [PATCH] Updated winemaker to account for change in wine's linking method. --- tools/winemaker | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/winemaker b/tools/winemaker index 6df8cc7cbc5..bc6116cdbc7 100755 --- a/tools/winemaker +++ b/tools/winemaker @@ -795,10 +795,10 @@ sub source_scan_directory($$$$) my $basename=$target_name; $basename=~ s/\.(dll|exe)$//i; # This is the default link list of Visual Studio, except odbccp32 - # which we don't have in Wine. - my @std_dlls=qw(advapi32.dll comdlg32.dll gdi32.dll kernel32.dll odbc32.dll ole32.dll oleaut32.dll shell32.dll user32.dll winspool.drv); + # and uuid which we don't have in Wine. + my @std_imports=qw(advapi32 comdlg32 gdi32 kernel32 odbc32 ole32 oleaut32 shell32 user32 winspool); if ((@$target[$T_FLAGS] & $TF_NODLLS) == 0) { - @$target[$T_DLLS]=\@std_dlls; + @$target[$T_DLLS]=\@std_imports; } else { @$target[$T_DLLS]=[]; }