[gs-cvs] rev 7986 - branches/gs-esp-gpl-merger/src
till at ghostscript.com
till at ghostscript.com
Fri May 18 07:50:42 PDT 2007
Author: till
Date: 2007-05-18 07:50:42 -0700 (Fri, 18 May 2007)
New Revision: 7986
Modified:
branches/gs-esp-gpl-merger/src/configure.ac
Log:
Let the configure script also support the following new output devices
bitrgbtags, imdi, jpegcmyk, ps2write, tiff32nc, tiffgray, tiffsep, wtscmyk,
wtsimdi, x11rg16x, x11rg32x
They can be selected now with the "--with-drivers" option and get included
automatically when using "--with-drivers=ALL".
Modified: branches/gs-esp-gpl-merger/src/configure.ac
===================================================================
--- branches/gs-esp-gpl-merger/src/configure.ac 2007-05-18 11:56:47 UTC (rev 7985)
+++ branches/gs-esp-gpl-merger/src/configure.ac 2007-05-18 14:50:42 UTC (rev 7986)
@@ -586,12 +586,12 @@
BMP = Output to bmp files
FAX = Output to fax files
JPEG = Output to JPEG files
- JPEG2000 = Output to JPEG 2000 files
PBM = Output to PBM/PNM
PCX = Output to PCX
PNG = Output to PNG
PS = Output to PostScript/PDF
TIFF = Output to TIFF
+ WTS = WTS Halftoning devices
You can mix both variants, e.g.
--with-drivers=HP,stcolor would build HP drivers and
the Epson stcolor driver.
@@ -629,14 +629,14 @@
dnl Known file formats
BMP_DEVS="bmpmono bmpgray bmpsep1 bmpsep8 bmp16 bmp256 bmp16m bmp32b bmpa16 bmpa16m bmpa256 bmpa32b bmpamono bmpasep1 bmpasep8"
FAX_DEVS="cfax dfaxlow dfaxhigh fax tfax tiffg3 tiffg32d tiffg4 faxg3 faxg32d faxg4"
-JPEG_DEVS="jpeg jpeggray"
-JPEG2000_DEVS="jpx"
+JPEG_DEVS="jpeg jpeggray jpegcmyk"
PNG_DEVS="png16 png16m png256 pngalpha pnggray pngmono"
-TIFF_DEVS="tiffs tiff12nc tiff24nc tiffcrle tifflzw tiffpack"
+TIFF_DEVS="tiffs tiff12nc tiff24nc tiff32nc tiffcrle tifflzw tiffpack tiffgray tiffsep"
PCX_DEVS="pcxmono pcxgray pcx16 pcx256 pcx24b pcxcmyk pcx2up"
PBM_DEVS="pbm pbmraw pgm pgmraw pgnm pgnmraw pnm pnmraw ppm ppmraw pkm pkmraw pksm pksmraw pam"
-PS_DEVS="psdf psdcmyk psdrgb pdfwrite pswrite epswrite psgray psmono psrgb bbox"
-MISC_FDEVS="ccr cgm24 cgm8 cgmmono cif inferno mag16 mag256 mgr4 mgr8 mgrgray2 mgrgray4 mgrgray8 mgrmono miff24 plan9bm sgirgb sunhmono bit bitrgb bitcmyk devicen spotcmyk xcf"
+PS_DEVS="psdf psdcmyk psdrgb pdfwrite pswrite ps2write epswrite psgray psmono psrgb bbox"
+WTS_HALFTONING_DEVS="imdi simdi wtsimdi wtscmyk"
+MISC_FDEVS="ccr cgm24 cgm8 cgmmono cif inferno mag16 mag256 mgr4 mgr8 mgrgray2 mgrgray4 mgrgray8 mgrmono miff24 plan9bm sgirgb sunhmono bit bitrgb bitrgbtags bitcmyk devicen spotcmyk xcf"
while test -n "$drivers"; do
if echo $drivers |grep "," >/dev/null; then
@@ -659,7 +659,7 @@
P_DEVS="$P_DEVS $CANON_DEVS $EPSON_DEVS $HP_DEVS $LEXMARK_DEVS $BROTHER_DEVS $APPLE_DEVS $IBM_DEVS $OKI_DEVS $JAPAN_DEVS $MISC_PDEVS $OPVP_DEVS"
;;
FILES)
- F_DEVS="$F_DEVS $BMP_DEVS $FAX_DEVS $JPEG_DEVS $JPEG2000_DEVS $PNG_DEVS $TIFF_DEVS $PCX_DEVS $PBM_DEVS $PS_DEVS $MISC_FDEVS"
+ F_DEVS="$F_DEVS $BMP_DEVS $FAX_DEVS $JPEG_DEVS $PNG_DEVS $TIFF_DEVS $PCX_DEVS $PBM_DEVS $PS_DEVS $WTS_HALFTONING_DEVS $MISC_FDEVS"
;;
APPLE)
# All Apple printers
@@ -685,10 +685,6 @@
# Jpeg file formats
F_DEVS="$F_DEVS $JPEG_DEVS"
;;
- JPEG2000)
- # Jpeg file formats
- F_DEVS="$F_DEVS $JPEG2000_DEVS"
- ;;
PNG)
# PNG file formats
F_DEVS="$F_DEVS $PNG_DEVS"
@@ -737,6 +733,10 @@
# PostScript/PDF writing
F_DEVS="$F_DEVS $PS_DEVS"
;;
+ WTS)
+ # WTS Halftoning devices
+ F_DEVS="$F_DEVS $WTS_HALFTONING_DEVS"
+ ;;
opvp)
# Open Vector Printing driver...
if test x$ac_cv_lib_dl_dlopen != xno -a x$found_iconv != xno; then
More information about the gs-cvs
mailing list