forked from Lainports/freebsd-ports
|Approximately 238 bugs have been fixed since version 8.62. Of particular note |are robustness and performance improvements with large files, invalid PDF, and |font handling. | |The major new feature of this release is multithreaded rendering. This can be |requested by passing -dNumRenderingThreads=n on the command line. The input |document is first parsed, and then each page is split into n bands which are |rendered concurrently. This can provide a significant reduction in processing |time on multi-core systems. | |Images are now always interpolated in their source colorspace. This improves |correctness for XPS documents and avoids bypassing the custom color management |callbacks for interpolated images. Interpolation and color management are both |expensive operations, so this affects performance with large images. The effect |can be positive or negative depending on the file and the target resolution. If |performance is a problem, we suggest running with -dNOINTERPOLATION. | |Support for OpenPrinting Vector devices has been upgraded to version 1.0. | |There are two new devices in this release, both experimental. Behdad Esfahbod |has contributed a cairo output device which uses the cairo graphics library to |generate PDF, SVG, EPS, or PNG files, based on the requested filename |extension. The svgwrite device directly outputs Scalable Vector Graphics, the |W3C XML vector graphics format. Both support only vector art at this point; |text and images will not be represented efficiently. | |Incompatible changes | |The maximum number of color components has been reduced to 8 (from 252) as a |performance improvement. Eight is the largest number commonly used and the |largest number for which we support continuous tone images. Users with special |needs can restore the previous behavior by setting the |GS_CLIENT_COLOR_MAX_COMPONENTS preprocessor symbol to the required number of |components at compile time. | |The -Z: debugging option now uses 'realtime' instead of 'usertime' when |reporting timing information on unix-like systems. This has always been the |case on windows-like systems. | |Obsolete makefiles for the DesqView environment have been removed.
75 lines
2.2 KiB
Text
75 lines
2.2 KiB
Text
--- src/Makefile.in.orig 2008-06-22 15:43:28.000000000 +0900
|
|
+++ src/Makefile.in 2008-11-03 00:09:12.000000000 +0900
|
|
@@ -46,9 +46,8 @@
|
|
# the directories also define the default search path for the
|
|
# initialization files (gs_*.ps) and the fonts.
|
|
|
|
-INSTALL = $(GLSRCDIR)/instcopy -c
|
|
-INSTALL_PROGRAM = $(INSTALL) -m 755
|
|
-INSTALL_DATA = $(INSTALL) -m 644
|
|
+INSTALL_PROGRAM = ${BSD_INSTALL_SCRIPT}
|
|
+INSTALL_DATA = ${BSD_INSTALL_DATA}
|
|
INSTALL_SHARED = @INSTALL_SHARED@
|
|
|
|
prefix = @prefix@
|
|
@@ -164,7 +163,7 @@
|
|
# some older JPEG streams that violate the standard. If the JPEG
|
|
# library built from local sources, the patch will be applied.
|
|
|
|
-SHARE_JPEG=@SHARE_LIBJPEG@
|
|
+SHARE_JPEG=1
|
|
JPEG_NAME=jpeg
|
|
|
|
# Define the directory where the PNG library sources are stored,
|
|
@@ -172,14 +171,14 @@
|
|
# You may need to change this if the libpng version changes.
|
|
# See libpng.mak for more information.
|
|
|
|
-SHARE_LIBPNG=@SHARE_LIBPNG@
|
|
+SHARE_LIBPNG=1
|
|
PNGSRCDIR=@LIBPNGDIR@
|
|
LIBPNG_NAME=png
|
|
|
|
# Define the directory where the zlib sources are stored.
|
|
# See zlib.mak for more information.
|
|
|
|
-SHARE_ZLIB=@SHARE_ZLIB@
|
|
+SHARE_ZLIB=1
|
|
ZSRCDIR=@ZLIBDIR@
|
|
#ZLIB_NAME=gz
|
|
ZLIB_NAME=z
|
|
@@ -250,7 +249,7 @@
|
|
# Define the added flags for standard, debugging, profiling
|
|
# and shared object builds.
|
|
|
|
-CFLAGS_STANDARD=@OPT_CFLAGS@
|
|
+CFLAGS_STANDARD?=@OPT_CFLAGS@
|
|
CFLAGS_DEBUG=-g -O0
|
|
CFLAGS_PROFILE=-pg @OPT_CFLAGS@
|
|
CFLAGS_SO=@DYNAMIC_CFLAGS@
|
|
@@ -295,7 +294,7 @@
|
|
# Solaris may need -lnsl -lsocket -lposix4.
|
|
# (Libraries required by individual drivers are handled automatically.)
|
|
|
|
-EXTRALIBS=@LIBS@ @DYNAMIC_LIBS@ @FONTCONFIG_LIBS@
|
|
+EXTRALIBS=@LIBS@ @DYNAMIC_LIBS@ @FONTCONFIG_LIBS@ -Wl,-export-dynamic
|
|
|
|
# Define the standard libraries to search at the end of linking.
|
|
# Most platforms require -lpthread for the POSIX threads library;
|
|
@@ -339,7 +338,7 @@
|
|
# the pthread library. Otherwise use SYNC=nosync
|
|
#SYNC=posync
|
|
#SYNC=nosync
|
|
-SYNC=@SYNC@
|
|
+SYNC=posync
|
|
|
|
# programs we use
|
|
RM=rm -f
|
|
@@ -498,6 +497,7 @@
|
|
# ---------------- End of platform-specific section ---------------- #
|
|
|
|
INSTALL_CONTRIB=@INSTALL_CONTRIB@
|
|
+include $(GLSRCDIR)/drivers.mak
|
|
include $(GLSRCDIR)/unixhead.mak
|
|
include $(GLSRCDIR)/gs.mak
|
|
# psromfs.mak must precede lib.mak
|