[gs-cvs] rev 9761 - trunk/ghostpdl/main

henrys at ghostscript.com henrys at ghostscript.com
Sun May 24 13:07:36 PDT 2009


Author: henrys
Date: 2009-05-24 13:07:36 -0700 (Sun, 24 May 2009)
New Revision: 9761

Modified:
   trunk/ghostpdl/main/pcl6_gcc.mak
Log:
Use conditional assignment (assign if not set) for variables that
control which devices are included in the system.


Modified: trunk/ghostpdl/main/pcl6_gcc.mak
===================================================================
--- trunk/ghostpdl/main/pcl6_gcc.mak	2009-05-24 10:16:57 UTC (rev 9760)
+++ trunk/ghostpdl/main/pcl6_gcc.mak	2009-05-24 20:07:36 UTC (rev 9761)
@@ -195,7 +195,7 @@
 
 CCLD?=gcc
 
-DD=$(GLGENDIR)/
+DD?=$(GLGENDIR)/
 
 
 DEVICES_DEVS?=$(DD)ljet4.dev $(DD)djet500.dev $(DD)cljet5pr.dev $(DD)cljet5c.dev\
@@ -223,14 +223,14 @@
 SYNC=nosync
 CFLAGS+=-DHAVE_STDINT_H
 STDLIBS=-lm
-DEVICE_DEVS=$(DEVICES_DEVS)
+DEVICE_DEVS?=$(DEVICES_DEVS)
 
 else
 
 SYNC=posync
 # some systems may need -ldl as well as pthread
 STDLIBS=-lm -lpthread -ldl
-DEVICE_DEVS=$(DD)x11.dev $(DD)x11alpha.dev $(DD)x11mono.dev $(DD)x11cmyk.dev $(DEVICES_DEVS)
+DEVICE_DEVS?=$(DD)x11.dev $(DD)x11alpha.dev $(DD)x11mono.dev $(DD)x11cmyk.dev $(DEVICES_DEVS)
 endif
 
 #miscellaneous



More information about the gs-cvs mailing list