diff options
author | Hiroki Sato <hrs@FreeBSD.org> | 2013-04-29 20:12:16 +0000 |
---|---|---|
committer | Hiroki Sato <hrs@FreeBSD.org> | 2013-04-29 20:12:16 +0000 |
commit | 045633a1b8b9a93da39276c44d8313ec66a07545 (patch) | |
tree | b668622bec03cea02602798988a5ed72533143b2 /print/ghostscript7/files/patch-src-lib.mak | |
parent | Update to 3.6.3 (diff) |
Resurrect print/ghostscript7*. Ghostscript 7.x is incompatible with 8.x
and 9.x in terms of CJK character support and they are still in demand.
While I am here, the following changes have been added:
- Add LICENSE.
- Use OPTIONS_DEFINE for ghostscript drivers.
- Add MAKE_JOBS_SAFE=yes.
Discussed with: bapt
Notes
Notes:
svn path=/head/; revision=316845
Diffstat (limited to 'print/ghostscript7/files/patch-src-lib.mak')
-rw-r--r-- | print/ghostscript7/files/patch-src-lib.mak | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/print/ghostscript7/files/patch-src-lib.mak b/print/ghostscript7/files/patch-src-lib.mak new file mode 100644 index 000000000000..3a6cc661f187 --- /dev/null +++ b/print/ghostscript7/files/patch-src-lib.mak @@ -0,0 +1,29 @@ +--- src/lib.mak.orig 2013-04-30 02:52:53.000000000 +0900 ++++ src/lib.mak 2013-04-30 02:53:40.000000000 +0900 +@@ -187,22 +187,22 @@ + $(GLD)gsnogc.dev : $(LIB_MAK) $(ECHOGS_XE) $(gsnogc_) + $(SETMOD) $(GLD)gsnogc $(gsnogc_) + +-$(GLOBJ)gsnogc.$(OBJ) : $(GLSRC)gsnogc.c $(GX)\ ++$(GLOBJ)gsnogc.$(OBJ) : $(arch_h) $(GLSRC)gsnogc.c $(GX)\ + $(gsmdebug_h) $(gsnogc_h) $(gsstruct_h) $(gxalloc_h) + $(GLCC) $(GLO_)gsnogc.$(OBJ) $(C_) $(GLSRC)gsnogc.c + + ### Bitmap processing + +-$(GLOBJ)gsbitcom.$(OBJ) : $(GLSRC)gsbitcom.c $(AK) $(std_h)\ ++$(GLOBJ)gsbitcom.$(OBJ) : $(arch_h) $(GLSRC)gsbitcom.c $(AK) $(std_h)\ + $(gdebug_h) $(gsbitops_h) $(gstypes_h) + $(GLCC) $(GLO_)gsbitcom.$(OBJ) $(C_) $(GLSRC)gsbitcom.c + +-$(GLOBJ)gsbitops.$(OBJ) : $(GLSRC)gsbitops.c $(AK) $(memory__h) $(stdio__h)\ ++$(GLOBJ)gsbitops.$(OBJ) : $(arch_h) $(GLSRC)gsbitops.c $(AK) $(memory__h) $(stdio__h)\ + $(gdebug_h) $(gsbittab_h) $(gserror_h) $(gserrors_h) $(gstypes_h)\ + $(gxbitops_h) + $(GLCC) $(GLO_)gsbitops.$(OBJ) $(C_) $(GLSRC)gsbitops.c + +-$(GLOBJ)gsbittab.$(OBJ) : $(GLSRC)gsbittab.c $(AK) $(stdpre_h) $(gsbittab_h) ++$(GLOBJ)gsbittab.$(OBJ) : $(arch_h) $(GLSRC)gsbittab.c $(AK) $(stdpre_h) $(gsbittab_h) + $(GLCC) $(GLO_)gsbittab.$(OBJ) $(C_) $(GLSRC)gsbittab.c + + # gsflip is not part of the standard configuration: it's rather large, |