mirror of
https://git.freebsd.org/ports.git
synced 2025-07-15 08:19:13 -04:00
- Support for tiff file output is now provided using the libtiff implementation rather than our more limited native code as in previous releases. There is also a new 'tiffsep1' output device which produces halftoned separations at 1 bit-per-pixel, in contrast to the 'tiffsep' device which produces 8 bit-per-pixel plates. - The graphics library has been updated to provide more accurate scan conversion of vector art including fixes to dash behavior, transparent stroked paths, thick stroked paths, radial shadings, xps cap handling, "pie" joins, degenerate beziers, improved handling of dropouts in thin strokes and better thin axis-aligned strokes. * Fix cairo support. GS_cairo is added to the drivers list (this is disabled by default). When WITH_CAIRO is defined, GS_cairo will be set by default.[2] PR: ports/144111[1] PR: ports/137634[2] PR: ports/145248[2]
17 lines
673 B
Makefile
17 lines
673 B
Makefile
--- base/unix-dll.mak.orig 2009-10-20 05:24:53.000000000 +0900
|
|
+++ base/unix-dll.mak 2010-04-03 12:22:35.000000000 +0900
|
|
@@ -79,12 +79,11 @@
|
|
# Build the small Ghostscript loaders, with Gtk+ and without
|
|
|
|
$(GSSOC_XE): $(GS_SO) $(PSSRC)$(SOC_LOADER)
|
|
- $(GLCC) -g -o $(GSSOC_XE) $(PSSRC)dxmainc.c \
|
|
- $(LDFLAGS) -L$(BINDIR) -l$(GS)
|
|
+ $(GLCC) -g -o $(GSSOC_XE) $(PSSRC)dxmainc.c -L$(BINDIR) -l$(GS)
|
|
|
|
$(GSSOX_XE): $(GS_SO) $(PSSRC)$(SOC_LOADER)
|
|
$(GLCC) -g $(SOC_CFLAGS) -o $(GSSOX_XE) $(PSSRC)$(SOC_LOADER) \
|
|
- $(LDFLAGS) -L$(BINDIR) -l$(GS) $(SOC_LIBS)
|
|
+ -L$(BINDIR) -l$(GS) $(SOC_LIBS)
|
|
|
|
# ------------------------- Recursive make targets ------------------------- #
|
|
|