PATCH - import lib name when building a *.dll

Steven Edwards steven_ed4153 at yahoo.com
Thu Jun 13 21:55:58 CDT 2002


Changelog: Give the import libs a proper name so the
compiler can use them if the standard ones are broken.
(Save the trouble of renaming them)


cvs diff -u Makedll.rules.in 
Index: Makedll.rules.in
===================================================================
RCS file: /home/wine/wine/dlls/Makedll.rules.in,v
retrieving revision 1.28
diff -u -r1.28 Makedll.rules.in
--- Makedll.rules.in	1 Jun 2002 02:55:49 -0000	1.28
+++ Makedll.rules.in	14 Jun 2002 02:54:35 -0000
@@ -35,7 +35,7 @@
 # Rules for .dll files
 
 $(MODULE): $(OBJS) $(MODULE).dbg.o $(SPEC_DEF)
Makefile.in
-	$(DLLWRAP) $(DLLWRAPFLAGS) --def $(SPEC_DEF)
--implib $(MODULE:.dll=.a) -o $@ $(OBJS)
$(MODULE).dbg.o -L$(DLLDIR) $(DELAYIMPORTS:%=-l%)
$(IMPORTS:%=-l%) $(ALL_LIBS)
+	$(DLLWRAP) $(DLLWRAPFLAGS) --def $(SPEC_DEF)
--implib lib$(MODULE:.dll=.a) -o $@ $(OBJS)
$(MODULE).dbg.o -L$(DLLDIR) $(DELAYIMPORTS:%=-l%)
$(IMPORTS:%=-l%) $(ALL_LIBS)
 
 $(SPEC_DEF): $(WINEBUILD)


__________________________________________________
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com



More information about the wine-patches mailing list