[gs-cvs] gs/src

Ray Johnston ray at ghostscript.com
Mon Jan 31 07:39:39 PST 2005


Update of /cvs/ghostscript/gs/src
In directory casper2:/tmp/cvs-serv21436/src

Modified Files:
	devs.mak zlib.mak 
Log Message:
Some dependencies were missing that caused the build to fail when a subset
of DEVICE_DEVS were included. Specifically, zlib and the 'display' device
were problems. Bug 687920 for customer #580.

DETAILS:

Apparently the needed modules for zlib have changed, but when a 'png'
device was included, the crc32 module was included anyway.

The display device didn't include several dependencies for the new DeviceN
and Spot Color support: gdevdevn.obj gsequivc.obj gdevdcrd.obj


Index: devs.mak
===================================================================
RCS file: /cvs/ghostscript/gs/src/devs.mak,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -d -r1.121 -r1.122
--- devs.mak	28 Jan 2005 19:11:07 -0000	1.121
+++ devs.mak	31 Jan 2005 15:39:37 -0000	1.122
@@ -385,7 +385,8 @@
 
 ### ------------------ Display device for DLL platforms ----------------- ###
 
-display_=$(GLOBJ)gdevdsp.$(OBJ) $(GLOBJ)gdevpccm.$(OBJ)
+display_=$(GLOBJ)gdevdsp.$(OBJ) $(GLOBJ)gdevpccm.$(OBJ) $(GLOBJ)gdevdevn.$(OBJ) \
+	 $(GLOBJ)gsequivc.$(OBJ) $(GLOBJ)gdevdcrd.$(OBJ)
 $(DD)display.dev : $(display_)
 	$(SETDEV) $(DD)display $(display_)
 

Index: zlib.mak
===================================================================
RCS file: /cvs/ghostscript/gs/src/zlib.mak,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- zlib.mak	16 Feb 2004 15:06:52 -0000	1.8
+++ zlib.mak	31 Jan 2005 15:39:37 -0000	1.9
@@ -86,7 +86,7 @@
 	$(SETMOD) $(ZGEN)zlibe_1 -lib $(ZLIB_NAME)
 
 zlibe_=$(ZOBJ)adler32.$(OBJ) $(ZOBJ)deflate.$(OBJ) \
-	$(ZOBJ)compress.$(OBJ) $(ZOBJ)trees.$(OBJ)
+	$(ZOBJ)compress.$(OBJ) $(ZOBJ)trees.$(OBJ) $(ZOBJ)crc32.$(OBJ)
 $(ZGEN)zlibe_0.dev : $(ZLIB_MAK) $(ECHOGS_XE) $(ZGEN)zlibc.dev $(zlibe_)
 	$(SETMOD) $(ZGEN)zlibe_0 $(zlibe_)
 	$(ADDMOD) $(ZGEN)zlibe_0 -include $(ZGEN)zlibc.dev
@@ -131,7 +131,7 @@
 
 # zlibd[12]_ list the decompression source files for zlib 1.4.x
 zlibd1_=$(ZOBJ)infblock.$(OBJ) $(ZOBJ)infcodes.$(OBJ) $(ZOBJ)inffast.$(OBJ)
-zlibd2_=$(ZOBJ)inflate.$(OBJ) $(ZOBJ)inftrees.$(OBJ) $(ZOBJ)infutil.$(OBJ)
+zlibd2_=$(ZOBJ)inflate.$(OBJ) $(ZOBJ)inftrees.$(OBJ) $(ZOBJ)infutil.$(OBJ) $(ZOBJ)crc32.$(OBJ)
 
 # shorter list of files for zlib 1.2.x
 zlibd_=$(ZOBJ)inffast.$(OBJ) $(ZOBJ)inflate.$(OBJ) $(ZOBJ)inftrees.$(OBJ)



More information about the gs-cvs mailing list