> I tried to change dlls/Makefile.in and dlls/winspool/Makefile.in
> according to what I thought was characterictic in
> dlls/winmm/mciavi/Makefile.in but didn't get make to work without
> errors. Obvious I missed something.
tha attached patch should solve the winspool(.drv) issue

A+
-- 
---------------
Eric Pouech (http://perso.wanadoo.fr/eric.pouech/)
"The future will be better tomorrow", Vice President Dan Quayle
Name: wnmk
ChangeLog: made winspool link in libwinspool.drv.so
GenDate: 2000/04/25 21:57:58 UTC
ModifiedFiles: Make.rules.in dlls/Makefile.in dlls/commdlg/Makefile.in 
dlls/winspool/Makefile.in
AddedFiles: 
===================================================================
RCS file: /home/cvs/cvsroot/wine/wine/Make.rules.in,v
retrieving revision 1.37
diff -u -u -r1.37 Make.rules.in
--- Make.rules.in       2000/04/24 17:17:49     1.37
+++ Make.rules.in       2000/04/25 20:49:24
@@ -136,7 +136,7 @@
        wing \
        wininet \
        winmm \
-       winspool \
+       winspool.drv \
        wnaspi32 \
        wsock32 \
        x11drv
Index: dlls/Makefile.in
===================================================================
RCS file: /home/cvs/cvsroot/wine/wine/dlls/Makefile.in,v
retrieving revision 1.33
diff -u -u -r1.33 Makefile.in
--- dlls/Makefile.in    2000/04/24 17:17:50     1.33
+++ dlls/Makefile.in    2000/04/25 20:52:35
@@ -57,7 +57,7 @@
        winmm/wavemap/libmsacm.drv.@LIBEXT@ \
        winmm/wineoss/libwineoss.drv.@LIBEXT@ \
        winsock/libwsock32.@LIBEXT@ \
-       winspool/libwinspool.@LIBEXT@ \
+       winspool/libwinspool.drv.@LIBEXT@ \
        x11drv/libx11drv.@LIBEXT@
 
 # extra names for dlls containing multiple spec files
@@ -293,8 +293,8 @@
 libwinmm.@LIBEXT@ libmmsystem.@LIBEXT@: winmm/libwinmm.@LIBEXT@
        $(RM) $@ && $(LN_S) winmm/libwinmm.@LIBEXT@ $@
 
-libwinspool.@LIBEXT@: winspool/libwinspool.@LIBEXT@
-       $(RM) $@ && $(LN_S) winspool/libwinspool.@LIBEXT@ $@
+libwinspool.drv.@LIBEXT@: winspool/libwinspool.drv.@LIBEXT@
+       $(RM) $@ && $(LN_S) winspool/libwinspool.drv.@LIBEXT@ $@
 
 libwnaspi32.@LIBEXT@ libwinaspi.@LIBEXT@: winaspi/libwnaspi32.@LIBEXT@
        $(RM) $@ && $(LN_S) winaspi/libwnaspi32.@LIBEXT@ $@
@@ -308,7 +308,7 @@
 # Inter-dll dependencies (only necessary for .so)
 
 avifil32/libavifil32.so: libmsvfw32.so libwinmm.so
-commdlg/libcomdlg32.so: libwinspool.so
+commdlg/libcomdlg32.so: libwinspool.drv.so
 ddraw/libddraw.so: libx11drv.so
 dplayx/libdplayx.so: libole32.so
 msvideo/libmsvfw32.so: libwinmm.so
Index: dlls/commdlg/Makefile.in
===================================================================
RCS file: /home/cvs/cvsroot/wine/wine/dlls/commdlg/Makefile.in,v
retrieving revision 1.11
diff -u -u -r1.11 Makefile.in
--- dlls/commdlg/Makefile.in    2000/04/23 20:40:23     1.11
+++ dlls/commdlg/Makefile.in    2000/04/25 20:53:23
@@ -5,7 +5,7 @@
 MODULE    = comdlg32
 SOVERSION = 1.0
 ALTNAMES  = commdlg
-IMPORTS   = winspool
+IMPORTS   = winspool.drv
 WRCEXTRA  = -s -pcomdlg32
 
 SPEC_SRCS = commdlg.spec comdlg32.spec
Index: dlls/winspool/Makefile.in
===================================================================
RCS file: /home/cvs/cvsroot/wine/wine/dlls/winspool/Makefile.in,v
retrieving revision 1.5
diff -u -u -r1.5 Makefile.in
--- dlls/winspool/Makefile.in   2000/03/04 22:31:32     1.5
+++ dlls/winspool/Makefile.in   2000/04/25 20:46:24
@@ -2,7 +2,7 @@
 TOPOBJDIR = ../..
 SRCDIR    = @srcdir@
 VPATH     = @srcdir@
-MODULE    = winspool
+MODULE    = winspool.drv
 SOVERSION = 1.0
 
 SPEC_SRCS = winspool.spec

Reply via email to