Winemaker with imports

Jeff Smith whydoubt at hotmail.com
Sat Dec 14 01:16:34 CST 2002


Changelog:
Updated winemaker to account for change in wine's linking method.

-- Jeff S

_________________________________________________________________
Add photos to your messages with MSN 8. Get 2 months FREE*. 
http://join.msn.com/?page=features/featuredemail
-------------- next part --------------
Index: tools/winemaker
===================================================================
RCS file: /home/wine/wine/tools/winemaker,v
retrieving revision 1.58
diff -u -r1.58 winemaker
--- tools/winemaker	12 Dec 2002 22:26:18 -0000	1.58
+++ tools/winemaker	14 Dec 2002 07:02:31 -0000
@@ -795,10 +795,10 @@
     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]=[];
     }



More information about the wine-patches mailing list