debian/0000755000000000000000000000000013444164331007171 5ustar debian/libgs__VER__-common.prerm.in0000644000000000000000000000035711763726276014427 0ustar #!/bin/sh # prerm script for libgs__ABI__-common set -e if [ "$1" = "remove" ] || [ "$1" = "deconfigure" ] ; then update-alternatives --remove ghostscript-current \ /usr/share/ghostscript/__ABI__ || true fi #DEBHELPER# exit 0 debian/ghostscript-doc.doc-base0000644000000000000000000000042511763726276013723 0ustar Document: ghostscript Title: GPL Ghostscript Manual Author: artofcode LLC. Abstract: This manual describes what GPL Ghostscript is and how it can be used Section: Text Format: HTML Index: /usr/share/doc/ghostscript-doc/index.html Files: /usr/share/doc/ghostscript-doc/*.htm* debian/README.Debian0000644000000000000000000000174411763732104011241 0ustar GPL Ghostscript for Debian ========================== Links against shared JPEG library --------------------------------- GPL Ghostscript is linked against the shared IJG JPEG library (not a statically linked local copy). Some valid PostScript and PDF files will fail to parse due to some (old, presumably?) Adobe interpreters violating the JPEG standard. More info at [bug#582521]. [bug#582521]: DroidSansFallback is default fallback for CJK documents ------------------------------------------------------- GPL Ghostscript uses the DroidSansFallback font from the fonts-droid package to substitute for CID-keyed fonts that are not available (used for East Asian character sets in PDFs). If disk space is scarce, remove the fonts-droid package and the glyphs from missing fonts will be rendered as bullets. See Use.htm#CIDFontSubstitution from the ghostscript-doc package for details. -- Jonas Smedegaard Thu, 01 Mar 2012 21:08:13 +0100 debian/gs-afpl.preinst0000644000000000000000000000066511763726276012155 0ustar #!/bin/sh set -e case "$1" in install|upgrade) # Do away with update-alternative for /usr/bin/gs, we have one # grand unified Ghostscript now! if dpkg --compare-versions "$2" lt-nl "8.63.dfsg.1-1"; then update-alternatives --remove-all gs || true update-alternatives --remove-all gs.1 || true fi ;; abort-upgrade) ;; *) echo "preinst called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER# exit 0 debian/ghostscript-x.install0000644000000000000000000000014011763726276013410 0ustar # Separate the dynamic library for X support into the ghostscript-x package usr/lib/ghostscript debian/ghostscript.preinst0000644000000000000000000000205711763732104013155 0ustar #!/bin/sh set -e case "$1" in install|upgrade) # Do away with update-alternative for /usr/bin/gs, we have one # grand unified Ghostscript now! if dpkg --compare-versions "$2" lt-nl "8.63.dfsg.1-1"; then update-alternatives --remove-all gs || true update-alternatives --remove-all gs.1 || true fi # Do away with update-alternative for /usr/bin/ps2pdf, upstream # provides it as a script if dpkg --compare-versions "$2" lt-nl "8.64~dfsg-1"; then update-alternatives --remove-all ps2pdf || true fi # Remove obsolete defoma files if dpkg --compare-versions "$2" lt-nl "8.71~dfsg2-1"; then rm -rf /var/lib/defoma/gs.d rm -f /etc/defoma/ghostscript.subst-rule rm -f /etc/defoma/ghostscript.subst-rule~ rm -f /var/lib/defoma/ghostscript.subst-cache fi # Purge obsolete defoma cruft to silence warnings if dpkg --compare-versions "$2" lt-nl "8.71.dfsg.2-1"; then defoma-app purge gs 2>/dev/null || true fi ;; abort-upgrade) ;; *) echo "preinst called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER# exit 0 debian/rules0000755000000000000000000002125613353161155010257 0ustar #!/usr/bin/make -f # -*- mode: makefile; coding: utf-8 -*- # Copyright © 2004-2009, Masayuki Hatta (mhatta) # Copyright © 2009-2011, Jonas Smedegaard # Description: Main Debian packaging script for GPL Ghostscript # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2, or (at # your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # This needs to run before cdbs auto-update debian/control:: debian/control.in DEB_PHONY_RULES += debian/control.in debian/control.in:: sed $(SEDRULE_CONTENT) debian/control.in #DEB_BUILD_PARALLEL = yes DEB_AUTO_UPDATE_AUTOCONF = 2.67 include /usr/share/cdbs/1/rules/upstream-tarball.mk include /usr/share/cdbs/1/class/autotools.mk include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/rules/utils.mk # ABI by default follows upstream version (without repackaging suffix) abi = $(shell echo $(DEB_UPSTREAM_TARBALL_VERSION) | sed 's/[\~\+].*$$//') major := $(shell echo $(DEB_UPSTREAM_VERSION) | sed 's/\..*$$//') libname = libgs libpkgname = $(libname)$(major) datapkgname = $(libname)$(major)-common DEB_UPSTREAM_URL = http://downloads.ghostscript.com/public DEB_UPSTREAM_TARBALL_MD5 = 57ebf17c5abcf0fc95a386bfff08c1a4 # Sources unavailable # (PDFs kept commented out as reminder, in case jasper is included) #DEB_UPSTREAM_REPACKAGE_EXCLUDES += ./jasper/doc/*.pdf # convenience libraries cluttering authorship/licensing tracking # * jpeg would enable old non-standard option (see bug#582521) # * jpegxr would enable patented controversial JPEG XR format # We use Ghostscript's convenience libraries openjpeg and lcms2 for # the time being as they contain API changes which did not make it # upstream yet. So they do not get removed in the repackaging. DEB_UPSTREAM_REPACKAGE_EXCLUDES += \ ./cups/libs/ \ ./expat/ \ ./freetype/ \ ./icclib \ ./ijs/ \ ./jasper/ \ ./jbig2dec/ \ ./jpeg/ \ ./jpegxr/ \ ./lcms/ \ ./lcms2/ \ ./libpng/ \ ./tiff/ \ ./zlib/ DEB_COPYRIGHT_CHECK_IGNORE_REGEX = ^(examples/.*\.pdf|iccprofiles/.*\.icc|toolbin/.*/.*\.icc|Resource/Font/.*|debian/(changelog|copyright(|_hints|_newhints)))$ # put aside upstream-shipped temp files during build but after copyright-check upstreamtmpfiles = configure pre-build:: debian/stamp-upstreamtmpstuff debian/stamp-upstreamtmpstuff: debian/stamp-copyright-check for file in $(upstreamtmpfiles); do \ [ ! -e $$file ] || [ -e $$file.upstream ] || cp -a $$file $$file.upstream; \ done touch $@ clean:: for file in $(upstreamtmpfiles); do \ [ ! -e $$file.upstream ] || mv -f $$file.upstream $$file; \ done rm -f debian/stamp-upstreamtmpstuff # workaround for autotools-resolved paths ignored in base/unix-auth.mak export DEB_HOST_MULTIARCH # Use system libraries # (listed in order of appearance) gs_opts = \ SHARE_JPEG=1 \ SHARE_LIBPNG=1 \ SHARE_LIBTIFF=1 \ SHARE_ZLIB=1 \ SHARE_JBIG2=1 \ SHARE_IJS=1 \ SHARE_EXPAT=1 DEB_CONFIGURE_EXTRA_FLAGS = \ --with-ijs --with-jbig2dec --with-system-libtiff \ --with-x --disable-gtk \ --enable-dynamic --disable-compile-inits \ --with-drivers=ALL \ --with-fontpath=/var/lib/ghostscript/fonts:/usr/share/cups/fonts:/usr/share/ghostscript/fonts:/usr/local/lib/ghostscript/fonts:/usr/share/fonts # We use Ghostscript's own LCMS2 as the upstream one does not yet contain # the API changes needed for GS 9.07 gs_opts += WHICH_CMS=lcms2mt SHARE_LCMS=0 #LCMS2DIR=/usr #gs_opts += WHICH_CMS=lcms2 SHARE_LCMS=0 LCMS2DIR=/usr #gs_opts += WHICH_CMS=lcms2 SHARE_LCMS=1 LCMS2DIR=/usr #CDBS_BUILD_DEPENDS += , liblcms2-dev # openjpeg requires patching for ICC and CMYK support gs_opts += SHARE_JPX=0 #gs_opts += SHARE_JPX=1 DEB_CONFIGURE_EXTRA_FLAGS += --enable-openjpeg --without-jasper #CDBS_BUILD_DEPENDS += , libopenjeg-dev gs_opts += SHARE_FT=1 DEB_CONFIGURE_EXTRA_FLAGS += --enable-freetype CDBS_BUILD_DEPENDS += , libfreetype6-dev gs_opts += SHARE_LCUPS=1 SHARE_LCUPSI=1 gs_opts += CUPSDATA=/usr/share/ppd/ghostscript DEB_CONFIGURE_EXTRA_FLAGS += --enable-cups --enable-dbus CDBS_BUILD_DEPENDS += , libcups2-dev (>= 1.3.7), libcupsimage2-dev (>= 1.1.20final+rc1-4) CDBS_BUILD_DEPENDS += , libdbus-1-dev DEB_MAKE_BUILD_TARGET = so $(gs_opts) DEB_MAKE_INSTALL_TARGET = soinstall DESTDIR=$(DEB_DESTDIR) $(gs_opts) DEB_DH_MAKESHLIBS_ARGS_ghostscript-x = -n SEDRULE_CONTENT = 's/__ABI__/$(abi)/g;s/__VER__/$(major)/g' pre-build:: debian/control.in.in echo "sed $(SEDRULE_CONTENT) <$< | diff -u debian/control.in -" @sed $(SEDRULE_CONTENT) <$< | diff -u debian/control.in - || ( \ echo; \ echo "Upstream version has changed (or debian/control.in.in is out of sync)"; \ echo "Edit debian/control manually, or use the following command:"; \ echo " DEB_AUTO_UPDATE_DEBIAN_CONTROL=yes fakeroot debian/rules clean"; \ exit 1) # Generate (and cleanup) files containing variables static per build infiles = $(filter-out debian/control.in debian/control.in.in, $(wildcard debian/*.in)) outfiles = $(subst $(libname)__VER__,$(libpkgname),$(basename $(infiles))) pre-build:: $(outfiles) $(outfiles): update-config debian/stamp-copyright-check sed $(SEDRULE_CONTENT) <$(subst $(libpkgname),$(libname)__VER__,$@).in >$@ clean:: rm -f $(outfiles) pre-build clean:: fail-source-not-repackaged clean:: [ ! -f Makefile ] || $(MAKE) soclean [ ! -f Makefile ] || $(MAKE) distclean # These are somehow left... rm -rf sobin soobj install/ghostscript:: # Remove some of the scripts rm -f $(DEB_DESTDIR)/usr/bin/unix-lpr.sh $(DEB_DESTDIR)/usr/bin/lprsetup.sh $(DEB_DESTDIR)/usr/bin/pv.sh $(DEB_DESTDIR)/usr/bin/fixmswrd.pl # Do not include the Ghostscript loader executable with GTK support rm -f $(DEB_DESTDIR)/usr/bin/gsx # Rename /usr/bin/gsc, to not conflict with gambc mv $(DEB_DESTDIR)/usr/bin/gsc $(DEB_DESTDIR)/usr/bin/gs mkdir -p $(DEB_DESTDIR)/usr/sbin/ install -m 755 debian/update-gsfontmap $(DEB_DESTDIR)/usr/sbin # Install Apport hook (Ubuntu only) if dpkg-vendor --is ubuntu; then \ install -D -m 644 debian/ubuntu/apport-hook.py $(CURDIR)/debian/ghostscript/usr/share/apport/package-hooks/source_ghostscript.py; \ fi install/$(datapkgname):: # Strip CMap files (shipped separately, registered with DeFoMa) rm -rf $(DEB_DESTDIR)/usr/share/ghostscript/$(abi)/Resource/CMap # Suggest fonts-droid (not ship DroidSansFallback.ttf) CDBS_SUGGESTS_$(datapkgname) += , fonts-droid #install/$(datapkgname):: #rm -f $(DEB_DESTDIR)/usr/share/ghostscript/$(abi)/Resource/CIDFSubst/DroidSansFallback.ttf install/libgs-dev:: mkdir -p $(DEB_DESTDIR)/usr/lib/ clean:: rm -f debian/stamp-local-shlibs-$(libname) binary-post-install/$(datapkgname):: file='debian/$(datapkgname)/usr/share/ghostscript/$(abi)/Resource/Init/cidfmap'; \ ! egrep -v '^(%([^%].*)?)?$$' "$$file" && rm "$$file" || ( \ echo; \ echo 'ERROR: cidfmap not virtually empty as expected,'; \ echo ' so some alternative to just dropping that file is required.'; \ echo ' More info at bug#531182.'; \ exit 1 ) # Needed at build time # (separated in core, X11 and autotools dependencies) CDBS_BUILD_DEPENDS += , libjpeg-dev, libpaper-dev, libpng-dev, libz-dev, libfontconfig1-dev, libtiff-dev, libexpat-dev, libjbig2dec-dev, libidn11-dev, libijs-dev CDBS_BUILD_DEPENDS += , freeglut3-dev | libglut-dev, libxt-dev, libxext-dev, libx11-dev, libice-dev, libsm-dev CDBS_BUILD_DEPENDS += , pkg-config # Needed (always, often, sometimes) at runtime # TODO: drop gs-cjk-resource after Wheezy+1 (obsoleted before Wheezy) CDBS_DEPENDS_ghostscript += , gsfonts (>= 6.0-1), debconf | debconf-2.0, debianutils (>= 1.6), $(libpkgname) (= $(DEB_VERSION)) CDBS_DEPENDS_ghostscript-x += , ghostscript (= $(DEB_VERSION)) CDBS_DEPENDS_$(libpkgname) += , poppler-data (>= 0.4.5-3~) | gs-cjk-resource CDBS_DEPENDS_libgs-dev += , $(libpkgname) (= $(DEB_VERSION)) CDBS_SUGGESTS_ghostscript += , ghostscript-x, hpijs CDBS_SUGGESTS_ghostscript-doc += , ghostscript # Public virtual packages CDBS_PROVIDES_ghostscript += , postscript-viewer # Transitional quirk: parts of ghostscript split into ghostscript-x # TODO: drop after Squeeze+1 (was introduced before Squeeze) CDBS_BREAKS_ghostscript += , ghostscript-x (<< 8.64~dfsg-8) # Needed for our packaging # * recent d-shlibs needed to handle unversioned -dev package and # suppress library dependency here declared indirectly using CDBS CDBS_BUILD_DEPENDS += , d-shlibs (>= 0.45~) debian/gs-esp.preinst0000644000000000000000000000066511763726276012022 0ustar #!/bin/sh set -e case "$1" in install|upgrade) # Do away with update-alternative for /usr/bin/gs, we have one # grand unified Ghostscript now! if dpkg --compare-versions "$2" lt-nl "8.63.dfsg.1-1"; then update-alternatives --remove-all gs || true update-alternatives --remove-all gs.1 || true fi ;; abort-upgrade) ;; *) echo "preinst called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER# exit 0 debian/control0000644000000000000000000001275213372346421010605 0ustar Source: ghostscript Section: text Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian Printing Team Build-Depends: cdbs (>= 0.4.72~), autoconf, debhelper, dh-buildinfo, devscripts, libfreetype6-dev, libcups2-dev (>= 1.3.7), libcupsimage2-dev (>= 1.1.20final+rc1-4), libdbus-1-dev, libjpeg-dev, libpaper-dev, libpng-dev, libz-dev, libfontconfig1-dev, libtiff-dev, libexpat-dev, libjbig2dec-dev, libidn11-dev, libijs-dev, freeglut3-dev | libglut-dev, libxt-dev, libxext-dev, libx11-dev, libice-dev, libsm-dev, liblcms2-dev, pkg-config, d-shlibs (>= 0.45~) Standards-Version: 3.9.3 Uploaders: Jonas Smedegaard , Michael Gilbert Homepage: http://www.ghostscript.com/ Vcs-Git: git://git.debian.org/git/collab-maint/ghostscript.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/ghostscript.git Package: ghostscript Architecture: any Multi-Arch: foreign Conflicts: ${cdbs:Conflicts} Replaces: ${cdbs:Replaces} Provides: ${cdbs:Provides} Recommends: ${cdbs:Recommends} Suggests: ${cdbs:Suggests} Depends: ${shlibs:Depends}, ${cdbs:Depends}, libgs9 (= ${binary:Version}), ${misc:Depends} Breaks: ${cdbs:Breaks} Description: interpreter for the PostScript language and for PDF GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . Furthermore, it can render PostScript and PDF files as graphics to be printed on non-PostScript printers. Supported printers include common dot-matrix, inkjet and laser models. Package: ghostscript-x Architecture: any Depends: ${shlibs:Depends}, ${cdbs:Depends}, ${misc:Depends} Conflicts: ${cdbs:Conflicts} Provides: ${cdbs:Provides} Description: interpreter for the PostScript language and for PDF - X11 support GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . This package contains the GPL Ghostscript output device for X11. Package: ghostscript-doc Section: doc Architecture: all Depends: ${shlibs:Depends}, ${cdbs:Depends}, ${misc:Depends} Suggests: ${cdbs:Suggests} Conflicts: ${cdbs:Conflicts} Description: interpreter for the PostScript language and for PDF - Documentation GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . This package contains documentation for GPL Ghostscript, mainly targeted developers and advanced users. Package: libgs9 Section: libs Architecture: any Depends: ${shlibs:Depends}, ${cdbs:Depends}, ${misc:Depends}, libgs9-common (= ${source:Version}) Description: interpreter for the PostScript language and for PDF - Library GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . This package provides the Ghostscript library which makes the facilities of GPL Ghostscript available to applications. Package: libgs9-common Section: libs Architecture: all Depends: ${misc:Depends} Replaces: ${cdbs:Replaces} Recommends: ${cdbs:Recommends} Suggests: ${cdbs:Suggests} Description: interpreter for the PostScript language and for PDF - common files GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . This package provides common architecture-independent files needed by the GPL Ghostscript library. . By default, GPL Ghostscript uses a font from the fonts-droid package to approximate glyphs in PDFs for which the requested CJK TrueType font is missing. If the fonts-droid package is not installed, these glyphs will be rendered as bullets. Package: libgs-dev Section: libdevel Architecture: any Depends: libgs9 (= ${binary:Version}), libc6-dev, libcups2-dev, libcupsimage2-dev, libfontconfig1-dev, libidn11-dev, libijs-dev, libjbig2dec0-dev, libjpeg-dev, libpaper-dev, libpng12-0-dev, libtiff5-dev, zlib1g-dev, ${cdbs:Depends}, ${misc:Depends} Conflicts: ${cdbs:Conflicts} Replaces: ${cdbs:Replaces} Provides: ${cdbs:Provides} Description: interpreter for the PostScript language and for PDF - Development Files GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . This package provides the development files for the GPL Ghostscript library which makes the facilities of GPL Ghostscript available to applications. Package: ghostscript-dbg Architecture: any Section: debug Priority: extra Depends: ${shlibs:Depends}, ${cdbs:Depends}, libgs9 (= ${binary:Version}) | ghostscript (= ${binary:Version}) | ghostcript-cups (= ${binary:Version}) | ghostcript-x (= ${binary:Version}), ${misc:Depends} Description: interpreter for the PostScript language and for PDF - Debug symbols GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . This package contains the debugging symbols for ghostscript, ghostscript-x, ghostscript-cups and libgs9. debian/watch0000644000000000000000000000027011763732104010222 0ustar # Run the "uscan" command to check for upstream updates and more. version=3 opts=dversionmangle=s/\~dfsg.*// \ http://downloads.ghostscript.com/public/ghostscript-(\d+[^-]+)\.tar\.gz debian/ghostscript.prerm0000644000000000000000000000044311763726276012630 0ustar #! /bin/sh set -e case "$1" in remove) rm -f /var/lib/ghostscript/fonts/cidfmap \ /var/lib/ghostscript/fonts/Fontmap ;; upgrade) ;; deconfigure) ;; failed-upgrade) ;; *) echo "prerm called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER# exit 0 debian/ubuntu/0000755000000000000000000000000011764412724010520 5ustar debian/ubuntu/apport-hook.py0000644000000000000000000000033311763726276013345 0ustar '''apport package hook for ghostscript (c) 2009 Canonical Ltd. Author: Brian Murray ''' from apport.hookutils import * def add_info(report): attach_hardware(report) attach_printing(report) debian/gbp.conf0000644000000000000000000000014611763726276010627 0ustar # Configuration file for git-buildpackage and friends [DEFAULT] pristine-tar = True sign-tags = True debian/patches/0000755000000000000000000000000013444164352010623 5ustar debian/patches/CVE-2019-6116.patch0000644000000000000000000006164713417651677013276 0ustar From d3537a54740d78c5895ec83694a07b3e4f616f61 Mon Sep 17 00:00:00 2001 From: Chris Liddell Date: Wed, 5 Dec 2018 12:22:13 +0000 Subject: [PATCH] Bug700317: Address .force* operators exposure Fix logic for an older change: unlike almost every other function in gs, dict_find_string() returns 1 on success 0 or <0 on failure. The logic for this case was wrong. Sanitize op stack for error conditions We save the stacks to an array and store the array for the error handler to access. For SAFER, we traverse the array, and deep copy any op arrays (procedures). As we make these copies, we check for operators that do *not* exist in systemdict, when we find one, we replace the operator with a name object (of the form "/--opname--"). Any transient procedures that call .force* operators (i.e. for conditionals or loops) make them executeonly. Harden some uses of .force* operators by adding a few immediate evalutions CVE-2019-6116 --- Resource/Init/gs_diskn.ps | 2 +- Resource/Init/gs_dps1.ps | 8 ++-- Resource/Init/gs_fntem.ps | 4 +- Resource/Init/gs_fonts.ps | 34 ++++++++--------- Resource/Init/gs_init.ps | 10 ++--- Resource/Init/gs_lev2.ps | 11 +++--- Resource/Init/gs_pdfwr.ps | 2 +- Resource/Init/gs_res.ps | 4 +- Resource/Init/gs_setpd.ps | 2 +- Resource/Init/pdf_base.ps | 13 ++++--- Resource/Init/pdf_draw.ps | 16 ++++---- Resource/Init/pdf_font.ps | 6 +-- Resource/Init/pdf_main.ps | 4 +- Resource/Init/pdf_ops.ps | 7 ++-- psi/int.mak | 3 +- psi/interp.c | 10 ++++- psi/istack.c | 78 +++++++++++++++++++++++++++++++++++++++ psi/istack.h | 3 ++ 18 files changed, 157 insertions(+), 60 deletions(-) diff --git a/Resource/Init/gs_diskn.ps b/Resource/Init/gs_diskn.ps index fd694bc44..8bf205420 100644 --- a/Resource/Init/gs_diskn.ps +++ b/Resource/Init/gs_diskn.ps @@ -51,7 +51,7 @@ systemdict begin mark 5 1 roll ] mark exch { { } forall } forall ] //systemdict /.searchabledevs 2 index .forceput exch .setglobal - } + } executeonly if } .bind executeonly odef % must be bound and hidden for .forceput diff --git a/Resource/Init/gs_dps1.ps b/Resource/Init/gs_dps1.ps index ec5db61b9..b75ea14e7 100644 --- a/Resource/Init/gs_dps1.ps +++ b/Resource/Init/gs_dps1.ps @@ -74,18 +74,18 @@ level2dict begin } odef % undefinefont has to take local/global VM into account. /undefinefont % undefinefont - - { .FontDirectory 1 .argindex .forceundef % FontDirectory is readonly + { //.FontDirectory 1 .argindex .forceundef % FontDirectory is readonly .currentglobal { % Current mode is global; delete from local directory too. //systemdict /LocalFontDirectory .knownget - { 1 index .forceundef } % LocalFontDirectory is readonly + { 1 index .forceundef } executeonly % LocalFontDirectory is readonly if } { % Current mode is local; if there was a shadowed global % definition, copy it into the local directory. //systemdict /SharedFontDirectory .knownget { 1 index .knownget - { .FontDirectory 2 index 3 -1 roll { put } systemdict /superexec known {//superexec}{1183615869 internaldict /superexec get exec} ifelse } % readonly + { //.FontDirectory 2 index 3 -1 roll { put } systemdict /superexec known {//superexec}{1183615869 internaldict /superexec get exec} ifelse } % readonly if } if @@ -126,7 +126,7 @@ level2dict begin } ifelse } forall - pop counttomark 2 idiv { .forceundef } repeat pop % readonly + pop counttomark 2 idiv { .forceundef } executeonly repeat pop % readonly } if //SharedFontDirectory exch .forcecopynew pop diff --git a/Resource/Init/gs_fntem.ps b/Resource/Init/gs_fntem.ps index c1f7651f1..6eb672a68 100644 --- a/Resource/Init/gs_fntem.ps +++ b/Resource/Init/gs_fntem.ps @@ -401,12 +401,12 @@ currentdict end def .forceput % FontInfo can be read-only. pop % bool exit - } if + } executeonly if dup /FontInfo get % bool /GlyphNames2Unicode /Unicode /Decoding findresource .forceput % FontInfo can be read-only. exit - } loop + } executeonly loop exch setglobal } .bind executeonly odef % must be bound and hidden for .forceput diff --git a/Resource/Init/gs_fonts.ps b/Resource/Init/gs_fonts.ps index 803faca49..27f4135f6 100644 --- a/Resource/Init/gs_fonts.ps +++ b/Resource/Init/gs_fonts.ps @@ -374,7 +374,7 @@ FONTPATH length 0 eq { (%END FONTPATH) .skipeof } if /.setnativefontmapbuilt { % set whether we've been run dup type /booleantype eq { systemdict exch /.nativefontmapbuilt exch .forceput - } + } executeonly {pop} ifelse } .bind executeonly odef @@ -516,7 +516,7 @@ buildfontdict 3 /.buildfont3 cvx put if } if - dup .FontDirectory 4 -2 roll { .growput } systemdict /superexec known {//superexec}{1183615869 internaldict /superexec get exec} ifelse % readonly + dup //.FontDirectory 4 -2 roll { .growput } systemdict /superexec known {//superexec}{1183615869 internaldict /superexec get exec} ifelse % readonly % If the font originated as a resource, register it. currentfile .currentresourcefile eq { dup .registerfont } if readonly @@ -943,7 +943,7 @@ $error /SubstituteFont { } put % Try to find a font using only the present contents of Fontmap. /.tryfindfont { % .tryfindfont true % .tryfindfont false - .FontDirectory 1 index .fontknownget + //.FontDirectory 1 index .fontknownget { % Already loaded exch pop //true } @@ -975,7 +975,7 @@ $error /SubstituteFont { } put { % Font with a procedural definition exec % The procedure will load the font. % Check to make sure this really happened. - .FontDirectory 1 index .knownget + //.FontDirectory 1 index .knownget { exch pop //true exit } if } @@ -1007,11 +1007,11 @@ $error /SubstituteFont { } put { 2 index gcheck currentglobal 2 copy eq { pop pop .forceput - } { + } executeonly { 5 1 roll setglobal dup length string copy .forceput setglobal - } ifelse + } executeonly ifelse } .bind executeonly odef % must be bound and hidden for .forceput % Attempt to load a font from a file. @@ -1081,11 +1081,11 @@ $error /SubstituteFont { } put % because it's different depending on language level. .currentglobal exch /.setglobal .systemvar exec % Remove the fake definition, if any. - .FontDirectory 3 index .forceundef % readonly - 1 index (r) file .loadfont .FontDirectory exch + //.FontDirectory 3 index .forceundef % readonly + 1 index (r) file .loadfont //.FontDirectory exch /.setglobal .systemvar exec - } - { .loadfont .FontDirectory + } executeonly + { .loadfont //.FontDirectory } ifelse % Stack: fontname fontfilename fontdirectory @@ -1105,7 +1105,7 @@ $error /SubstituteFont { } put dup 3 index .fontknownget { dup /PathLoad 4 index .putgstringcopy 4 1 roll pop pop pop //true exit - } if + } executeonly if % Maybe the file had a different FontName. % See if we can get a FontName from the file, and if so, @@ -1119,8 +1119,8 @@ $error /SubstituteFont { } put % Stack: origfontname fontdirectory filefontname fontdict 3 -1 roll pop % Stack: origfontname filefontname fontdict - dup /FontName get dup FontDirectory exch .forceundef - GlobalFontDirectory exch .forceundef + dup /FontName get dup //.FontDirectory exch .forceundef + /GlobalFontDirectory .systemvar exch .forceundef dup length dict .copydict dup 3 index /FontName exch put 2 index exch definefont exch @@ -1134,9 +1134,9 @@ $error /SubstituteFont { } put ifelse % Stack: origfontname fontdict exch pop //true exit % Stack: fontdict - } + } executeonly if pop % Stack: origfontname fontdirectory path - } + } executeonly if pop pop % Stack: origfontname % The font definitely did not load correctly. @@ -1176,10 +1176,10 @@ currentdict /.putgstringcopy .undef { { pop dup type /stringtype eq { cvn } if - .FontDirectory 1 index known not { + //.FontDirectory 1 index known not { 2 dict dup /FontName 3 index put dup /FontType 1 put - .FontDirectory 3 1 roll { put } systemdict /superexec known {//superexec}{1183615869 internaldict /superexec get exec} ifelse % readonly + //.FontDirectory 3 1 roll { put } systemdict /superexec known {//superexec}{1183615869 internaldict /superexec get exec} ifelse % readonly } { pop } ifelse diff --git a/Resource/Init/gs_init.ps b/Resource/Init/gs_init.ps index d733124b9..d9a0829f7 100644 --- a/Resource/Init/gs_init.ps +++ b/Resource/Init/gs_init.ps @@ -1168,8 +1168,8 @@ errordict /unknownerror .undef }ifelse }forall noaccess pop - systemdict /.setsafeerrors .forceundef - systemdict /.SAFERERRORLIST .forceundef + //systemdict /.setsafeerrors .forceundef + //systemdict /.SAFERERRORLIST .forceundef } bind executeonly odef SAFERERRORS {.setsafererrors} if @@ -2114,7 +2114,7 @@ currentdict /tempfilepaths undef /.locksafe { .locksafe_userparams - systemdict /getenv {pop //false} .forceput + //systemdict /getenv {pop //false} .forceput % setpagedevice has the side effect of clearing the page, but % we will just document that. Using setpagedevice keeps the device % properties and pagedevice .LockSafetyParams in agreement even @@ -2357,7 +2357,7 @@ SAFER { .setsafeglobal } if % Update the copy of the user parameters. mark .currentuserparams counttomark 2 idiv { userparams 3 1 roll .forceput % userparams is read-only - } repeat pop + } executeonly repeat pop % Turn on idiom recognition, if available. currentuserparams /IdiomRecognition known { /IdiomRecognition //true .definepsuserparam @@ -2376,7 +2376,7 @@ SAFER { .setsafeglobal } if % Remove real system params from pssystemparams. mark .currentsystemparams counttomark 2 idiv { pop pssystemparams exch .forceundef - } repeat pop + } executeonly repeat pop } if % Set up AlignToPixels : diff --git a/Resource/Init/gs_lev2.ps b/Resource/Init/gs_lev2.ps index 44fe61956..0f0d57331 100644 --- a/Resource/Init/gs_lev2.ps +++ b/Resource/Init/gs_lev2.ps @@ -154,7 +154,8 @@ end % protect top level of parameters that we copied dup type dup /arraytype eq exch /stringtype eq or { readonly } if /userparams .systemvar 3 1 roll .forceput % userparams is read-only - } { + } executeonly + { pop pop } ifelse } forall @@ -224,7 +225,7 @@ end % protect top level parameters that we copied dup type dup /arraytype eq exch /stringtype eq or { readonly } if //pssystemparams 3 1 roll .forceput % pssystemparams is read-only - } + } executeonly { pop pop } ifelse @@ -934,7 +935,7 @@ mark dup /PaintProc get 1 index /Implementation known not { 1 index dup /Implementation //null .forceput readonly pop - } if + } executeonly if exec }.bind odef @@ -958,7 +959,7 @@ mark dup /PaintProc get 1 index /Implementation known not { 1 index dup /Implementation //null .forceput readonly pop - } if + } executeonly if /UNROLLFORMS where {/UNROLLFORMS get}{false}ifelse not %% [CTM] <
> PaintProc .beginform - { @@ -1005,7 +1006,7 @@ mark %% Form dictioanry using the /Implementation key). 1 dict dup /FormID 4 -1 roll put 1 index exch /Implementation exch .forceput readonly pop - } + } executeonly ifelse } { diff --git a/Resource/Init/gs_pdfwr.ps b/Resource/Init/gs_pdfwr.ps index 58e75d3a4..b425103d1 100644 --- a/Resource/Init/gs_pdfwr.ps +++ b/Resource/Init/gs_pdfwr.ps @@ -650,7 +650,7 @@ currentdict /.pdfmarkparams .undef } ifelse } bind .makeoperator .forceput systemdict /.pdf_hooked_DSC_Creator //true .forceput - } if + } executeonly if pop } if } { diff --git a/Resource/Init/gs_res.ps b/Resource/Init/gs_res.ps index 8eb8bb0e5..d9b34599e 100644 --- a/Resource/Init/gs_res.ps +++ b/Resource/Init/gs_res.ps @@ -152,7 +152,7 @@ setglobal % use .forceput / .forcedef later to replace the dummy, % empty .Instances dictionary with the real one later. readonly - } { + }{ /defineresource cvx /typecheck signaloperror } ifelse } bind executeonly odef @@ -424,7 +424,7 @@ status { % As noted above, Category dictionaries are read-only, % so we have to use .forcedef here. /.Instances 1 index .forcedef % Category dict is read-only - } if + } executeonly if } { .LocalInstances dup //.emptydict eq { pop 3 dict localinstancedict Category 2 index put diff --git a/Resource/Init/gs_setpd.ps b/Resource/Init/gs_setpd.ps index e22597ebb..7875d1f2f 100644 --- a/Resource/Init/gs_setpd.ps +++ b/Resource/Init/gs_setpd.ps @@ -634,7 +634,7 @@ NOMEDIAATTRS { SETPDDEBUG { (Rolling back.) = pstack flush } if 3 index 2 index 3 -1 roll .forceput 4 index 1 index .knownget - { 4 index 3 1 roll .forceput } + { 4 index 3 1 roll .forceput } executeonly { 3 index exch .undef } ifelse } bind executeonly odef diff --git a/Resource/Init/pdf_base.ps b/Resource/Init/pdf_base.ps index b45e98031..73127296c 100644 --- a/Resource/Init/pdf_base.ps +++ b/Resource/Init/pdf_base.ps @@ -130,26 +130,29 @@ currentdict /num-chars-dict .undef /.pdfexectoken { % .pdfexectoken ? PDFDEBUG { - pdfdict /PDFSTEPcount known not { pdfdict /PDFSTEPcount 1 .forceput } if + pdfdict /PDFSTEPcount known not { pdfdict /PDFSTEPcount 1 .forceput } executeonly if PDFSTEP { pdfdict /PDFtokencount 2 copy .knownget { 1 add } { 1 } ifelse .forceput PDFSTEPcount 1 gt { pdfdict /PDFSTEPcount PDFSTEPcount 1 sub .forceput - } { + } executeonly + { dup ==only ( step # ) print PDFtokencount =only ( ? ) print flush 1 //false .outputpage (%stdin) (r) file 255 string readline { token { exch pop pdfdict /PDFSTEPcount 3 -1 roll .forceput - } { + } executeonly + { pdfdict /PDFSTEPcount 1 .forceput - } ifelse % token + } executeonly ifelse % token } { pop /PDFSTEP //false def % EOF on stdin } ifelse % readline } ifelse % PDFSTEPcount > 1 - } { + } executeonly + { dup ==only () = flush } ifelse % PDFSTEP } if % PDFDEBUG diff --git a/Resource/Init/pdf_draw.ps b/Resource/Init/pdf_draw.ps index 6b0ba93e1..40c6ac80a 100644 --- a/Resource/Init/pdf_draw.ps +++ b/Resource/Init/pdf_draw.ps @@ -1118,14 +1118,14 @@ currentdict end readonly def pdfdict /.Qqwarning_issued //true .forceput .setglobal pdfformaterror - } ifelse + } executeonly ifelse } { currentglobal pdfdict gcheck .setglobal pdfdict /.Qqwarning_issued //true .forceput .setglobal pdfformaterror - } ifelse + } executeonly ifelse end } ifelse } loop @@ -1141,14 +1141,14 @@ currentdict end readonly def pdfdict /.Qqwarning_issued //true .forceput .setglobal pdfformaterror - } ifelse + } executeonly ifelse } { currentglobal pdfdict gcheck .setglobal pdfdict /.Qqwarning_issued //true .forceput .setglobal pdfformaterror - } ifelse + } executeonly ifelse } if pop @@ -2350,9 +2350,10 @@ currentdict /last-ditch-bpc-csp undef /IncrementAppearanceNumber { pdfdict /AppearanceNumber .knownget { 1 add pdfdict /AppearanceNumber 3 -1 roll .forceput - }{ + } executeonly + { pdfdict /AppearanceNumber 0 .forceput - } ifelse + } executeonly ifelse }bind executeonly odef /MakeAppearanceName { @@ -2510,7 +2511,8 @@ currentdict /last-ditch-bpc-csp undef %% want to preserve it. pdfdict /.PreservePDFForm false .forceput /q cvx /execform cvx 5 -2 roll - }{ + } executeonly + { /q cvx /PDFexecform cvx 5 -2 roll } ifelse diff --git a/Resource/Init/pdf_font.ps b/Resource/Init/pdf_font.ps index bea9ea95a..4cd62b9d9 100644 --- a/Resource/Init/pdf_font.ps +++ b/Resource/Init/pdf_font.ps @@ -714,7 +714,7 @@ currentdict end readonly def pop pop pop currentdict /.stackdepth .forceundef currentdict /.dstackdepth .forceundef - } + } executeonly {pop pop pop} ifelse @@ -1232,7 +1232,7 @@ currentdict /eexec_pdf_param_dict .undef (\n **** Warning: Type 3 glyph has unbalanced q/Q operators \(too many q's\)\n Output may be incorrect.\n) pdfformatwarning pdfdict /.Qqwarning_issued //true .forceput - } if + } executeonly if Q } repeat Q @@ -2016,7 +2016,7 @@ currentdict /CMap_read_dict undef /CIDFallBack /CIDFont findresource } if exit - } if + } executeonly if } if } if diff --git a/Resource/Init/pdf_main.ps b/Resource/Init/pdf_main.ps index 00da47a48..37e69b39a 100644 --- a/Resource/Init/pdf_main.ps +++ b/Resource/Init/pdf_main.ps @@ -2701,14 +2701,14 @@ currentdict /PDF2PS_matrix_key undef pdfdict /.Qqwarning_issued //true .forceput .setglobal pdfformaterror - } ifelse + } executeonly ifelse } { currentglobal pdfdict gcheck .setglobal pdfdict /.Qqwarning_issued //true .forceput .setglobal pdfformaterror - } ifelse + } executeonly ifelse } if } if pop diff --git a/Resource/Init/pdf_ops.ps b/Resource/Init/pdf_ops.ps index 8672d617f..aa0964139 100644 --- a/Resource/Init/pdf_ops.ps +++ b/Resource/Init/pdf_ops.ps @@ -184,14 +184,14 @@ currentdict /gput_always_allow .undef pdfdict /.Qqwarning_issued //true .forceput .setglobal pdfformaterror - } ifelse + } executeonly ifelse } { currentglobal pdfdict gcheck .setglobal pdfdict /.Qqwarning_issued //true .forceput .setglobal pdfformaterror - } ifelse + } executeonly ifelse } if } bind executeonly odef @@ -439,7 +439,8 @@ currentdict /gput_always_allow .undef dup type /booleantype eq { .currentSMask type /dicttype eq { .currentSMask /Processed 2 index .forceput - } { + } executeonly + { .setSMask }ifelse }{ diff --git a/psi/int.mak b/psi/int.mak index 6ab5bf006..6b349cb04 100644 --- a/psi/int.mak +++ b/psi/int.mak @@ -204,7 +204,8 @@ $(PSOBJ)iparam.$(OBJ) : $(PSSRC)iparam.c $(GH)\ $(PSOBJ)istack.$(OBJ) : $(PSSRC)istack.c $(GH) $(memory__h)\ $(ierrors_h) $(gsstruct_h) $(gsutil_h)\ $(ialloc_h) $(istack_h) $(istkparm_h) $(istruct_h) $(iutil_h) $(ivmspace_h)\ - $(store_h) $(INT_MAK) $(MAKEDIRS) + $(store_h) $(icstate_h) $(iname_h) $(dstack_h) $(idict_h) \ + $(INT_MAK) $(MAKEDIRS) $(PSCC) $(PSO_)istack.$(OBJ) $(C_) $(PSSRC)istack.c $(PSOBJ)iutil.$(OBJ) : $(PSSRC)iutil.c $(GH) $(math__h) $(memory__h) $(string__h)\ diff --git a/psi/interp.c b/psi/interp.c index 6dc0ddae1..f6c45bbe2 100644 --- a/psi/interp.c +++ b/psi/interp.c @@ -703,7 +703,7 @@ again: * i.e. it's an internal operator we have hidden */ code = dict_find_string(systemdict, (const char *)bufptr, &tobj); - if (code < 0) { + if (code <= 0) { buf[0] = buf[1] = buf[rlen + 2] = buf[rlen + 3] = '-'; rlen += 4; bufptr = buf; @@ -761,6 +761,7 @@ copy_stack(i_ctx_t *i_ctx_p, const ref_stack_t * pstack, int skip, ref * arr) uint size = ref_stack_count(pstack) - skip; uint save_space = ialloc_space(idmemory); int code, i; + ref *safety, *safe; if (size > 65535) size = 65535; @@ -778,6 +779,13 @@ copy_stack(i_ctx_t *i_ctx_p, const ref_stack_t * pstack, int skip, ref * arr) make_null(&arr->value.refs[i]); } } + if (pstack == &o_stack && dict_find_string(systemdict, "SAFETY", &safety) > 0 && + dict_find_string(safety, "safe", &safe) > 0 && r_has_type(safe, t_boolean) && + safe->value.boolval == true) { + code = ref_stack_array_sanitize(i_ctx_p, arr, arr); + if (code < 0) + return code; + } ialloc_set_space(idmemory, save_space); return code; } diff --git a/psi/istack.c b/psi/istack.c index 8fe151fa5..f1a3e5115 100644 --- a/psi/istack.c +++ b/psi/istack.c @@ -27,6 +27,10 @@ #include "iutil.h" #include "ivmspace.h" /* for local/global test */ #include "store.h" +#include "icstate.h" +#include "iname.h" +#include "dstack.h" +#include "idict.h" /* Forward references */ static void init_block(ref_stack_t *pstack, const ref *pblock_array, @@ -294,6 +298,80 @@ ref_stack_store_check(const ref_stack_t *pstack, ref *parray, uint count, return 0; } +int +ref_stack_array_sanitize(i_ctx_t *i_ctx_p, ref *sarr, ref *darr) +{ + int i, code; + ref obj, arr2; + ref *pobj2; + gs_memory_t *mem = (gs_memory_t *)idmemory->current; + + if (!r_is_array(sarr) || !r_has_type(darr, t_array)) + return_error(gs_error_typecheck); + + for (i = 0; i < r_size(sarr); i++) { + code = array_get(mem, sarr, i, &obj); + if (code < 0) + make_null(&obj); + switch(r_type(&obj)) { + case t_operator: + { + int index = op_index(&obj); + + if (index > 0 && index < op_def_count) { + const byte *data = (const byte *)(op_index_def(index)->oname + 1); + if (dict_find_string(systemdict, (const char *)data, &pobj2) <= 0) { + byte *s = gs_alloc_bytes(mem, strlen((char *)data) + 5, "ref_stack_array_sanitize"); + if (s) { + s[0] = '\0'; + strcpy((char *)s, "--"); + strcpy((char *)s + 2, (char *)data); + strcpy((char *)s + strlen((char *)data) + 2, "--"); + } + else { + s = (byte *)data; + } + code = name_ref(imemory, s, strlen((char *)s), &obj, 1); + if (code < 0) make_null(&obj); + if (s != data) + gs_free_object(mem, s, "ref_stack_array_sanitize"); + } + } + else { + make_null(&obj); + } + ref_assign(darr->value.refs + i, &obj); + break; + } + case t_array: + case t_shortarray: + case t_mixedarray: + { + int attrs = r_type_attrs(&obj) & (a_write | a_read | a_execute | a_executable); + /* We only want to copy executable arrays */ + if (attrs & (a_execute | a_executable)) { + code = ialloc_ref_array(&arr2, attrs, r_size(&obj), "ref_stack_array_sanitize"); + if (code < 0) { + make_null(&arr2); + } + else { + code = ref_stack_array_sanitize(i_ctx_p, &obj, &arr2); + } + ref_assign(darr->value.refs + i, &arr2); + } + else { + ref_assign(darr->value.refs + i, &obj); + } + break; + } + default: + ref_assign(darr->value.refs + i, &obj); + } + } + return 0; +} + + /* * Store the top 'count' elements of a stack, starting 'skip' elements below * the top, into an array, with or without store/undo checking. age=-1 for diff --git a/psi/istack.h b/psi/istack.h index 051dcbe21..54be405ad 100644 --- a/psi/istack.h +++ b/psi/istack.h @@ -129,6 +129,9 @@ int ref_stack_store(const ref_stack_t *pstack, ref *parray, uint count, uint skip, int age, bool check, gs_dual_memory_t *idmem, client_name_t cname); +int +ref_stack_array_sanitize(i_ctx_t *i_ctx_p, ref *sarr, ref *darr); + /* * Pop the top N elements off a stack. * The number must not exceed the number of elements in use. -- 2.17.1 debian/patches/020181126-96c381c-ps2write-move-the-page-level-save-restore-wrapper.patch0000644000000000000000000000260513402211606025227 0ustar Description: ps2write - move the page level save/restore wrapper Author: Ken Sharp Last-Update: 2018-11-26 Bug: https://bugs.ghostscript.com/show_bug.cgi?id=700232 --- a/devices/vector/gdevpdf.c +++ b/devices/vector/gdevpdf.c @@ -2907,12 +2907,10 @@ pdf_write_page(pdev, pagecount++); stream_puts(pdev->strm, "%%EndPageSetup\n"); - stream_puts(pdev->strm, "/pagesave save def\n"); pprintld1(pdev->strm, "%ld 0 obj\n", pres->object->id); code = cos_write(pres->object, pdev, pres->object->id); stream_puts(pdev->strm, "endobj\n"); pres->object->written = true; - stream_puts(pdev->strm, "pagesave restore\n%%PageTrailer\n"); } } code1 = pdf_free_resource_objects(pdev, resourcePage); --- a/devices/vector/opdfread.ps +++ b/devices/vector/opdfread.ps @@ -748,6 +748,7 @@ } repeat } if EPS2Write not {showpage} if + pagesave restore } if } bind def @@ -999,6 +1000,8 @@ dup /ImmediateExec true put dup /IsPage true put SetPageSize {dup /Context get //SetupPageView exec} if + % This gets restored at the end of ExecuteStream if IsPage is true. + /pagesave save def } bind def /FontFileDaemon % FontFileDaemon debian/patches/series0000644000000000000000000000125613444164352012044 0ustar 2001_docdir_fix_for_debian.patch 2002_gs_man_fix_debian.patch 2003_support_multiarch.patch 2004_remove_non-Debian_paths_from_docs.patch 2005_fix_Debian_paths_in_docs.patch 2006_suggest_install_ghostscript-doc_in_docs.patch 2007_suggest_install_ghostscript-doc_in_code.patch 2008_mention_ghostscript-x_in_docs.patch 2010_add_build_timestamp_setting.patch 020181126-96c381c-ps2write-move-the-page-level-save-restore-wrapper.patch 020181205-fae21f16-subclassing-devices-fix-put-image-method.patch CVE-2019-6116.patch lp1815339.patch lp1815339-2.patch CVE-2019-3835-pre1.patch CVE-2019-3835-pre2.patch CVE-2019-3835-1.patch CVE-2019-3835-2.patch CVE-2019-3838-1.patch CVE-2019-3838-2.patch debian/patches/2001_docdir_fix_for_debian.patch0000644000000000000000000000144513332552041016564 0ustar Description: Set docdir appropriately for Debian Author: Masayuki Hatta Last-Update: 2009-04-15 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ --- a/Makefile.in +++ b/Makefile.in @@ -92,7 +92,7 @@ man1ext = 1 man1dir = $(mandir)/man$(man1ext) datadir = @datadir@ -docdir = @docdir@@VERSIONED_PATH@ +docdir = $(prefix)/share/doc/ghostscript # The following must be substituted using @datadir@ and @libdir@ # to avoid adding RPM generation paths (CUPS STR #1112) @@ -101,7 +101,7 @@ gssharedir = @libdir@/ghostscript@VERSIONED_PATH@ gsincludedir = @includedir@/ghostscript/ -exdir=$(gsdatadir)/examples +exdir=$(prefix)/share/doc/ghostscript/examples GS_DOCDIR=$(docdir) # Choose whether to compile the .ps initialization files into the executable. debian/patches/CVE-2019-3835-2.patch0000644000000000000000000001467413444156425013427 0ustar Backport of: From d683d1e6450d74619e6277efeebfc222d9a5cb91 Mon Sep 17 00:00:00 2001 From: Ray Johnston Date: Sun, 24 Feb 2019 22:01:04 -0800 Subject: [PATCH] Bug 700585: Obliterate "superexec". We don't need it, nor do any known apps. We were under the impression that the Windows driver 'PScript5.dll' used superexec, but after testing with our extensive suite of PostScript file, and analysis of the PScript5 "Adobe CoolType ProcSet, it does not appear that this operator is needed anymore. Get rid of superexec and all of the references to it, since it is a potential security hole. --- Resource/Init/gs_init.ps | 18 ------------------ psi/icontext.c | 1 - psi/icstate.h | 1 - psi/zcontrol.c | 30 ------------------------------ psi/zdict.c | 6 ++---- psi/zgeneric.c | 3 +-- 6 files changed, 3 insertions(+), 56 deletions(-) Index: ghostscript-9.26~dfsg+0/Resource/Init/gs_init.ps =================================================================== --- ghostscript-9.26~dfsg+0.orig/Resource/Init/gs_init.ps 2019-03-19 08:13:17.207883787 -0400 +++ ghostscript-9.26~dfsg+0/Resource/Init/gs_init.ps 2019-03-19 08:13:17.199883818 -0400 @@ -2478,24 +2478,6 @@ DELAYBIND not { systemdict /.forceundef .undef % ditto } if -% Move superexec to internaldict if superexec is defined. (Level 2 or later) -systemdict /superexec known { - % restrict superexec to single known use by PScript5.dll - % We could do this only for SAFER mode, but internaldict and superexec are - % not very well documented, and we don't want them to be used. - 1183615869 internaldict /superexec { - 2 index /Private eq % first check for typical use in PScript5.dll - 1 index length 1 eq and % expected usage is: dict /Private {put} superexec - 1 index 0 get systemdict /put get eq and - { - //superexec exec % the only usage we allow - } { - /superexec load /invalidaccess signalerror - } ifelse - } bind cvx executeonly put - systemdict /superexec .undef % get rid of the dangerous (unrestricted) operator -} if - % Can't remove this one until the last minute :-) DELAYBIND not { systemdict /.undef .undef Index: ghostscript-9.26~dfsg+0/psi/icontext.c =================================================================== --- ghostscript-9.26~dfsg+0.orig/psi/icontext.c 2019-03-19 08:13:17.207883787 -0400 +++ ghostscript-9.26~dfsg+0/psi/icontext.c 2019-03-19 08:13:34.351818800 -0400 @@ -151,7 +151,6 @@ context_state_alloc(gs_context_state_t * pcst->rand_state = rand_state_initial; pcst->usertime_total = 0; pcst->keep_usertime = false; - pcst->in_superexec = 0; pcst->plugin_list = 0; make_t(&pcst->error_object, t__invalid); { /* Index: ghostscript-9.26~dfsg+0/psi/icstate.h =================================================================== --- ghostscript-9.26~dfsg+0.orig/psi/icstate.h 2019-03-19 08:13:17.207883787 -0400 +++ ghostscript-9.26~dfsg+0/psi/icstate.h 2019-03-19 08:13:42.971786546 -0400 @@ -54,7 +54,6 @@ struct gs_context_state_s { long usertime_total; /* total accumulated usertime, */ /* not counting current time if running */ bool keep_usertime; /* true if context ever executed usertime */ - int in_superexec; /* # of levels of superexec */ /* View clipping is handled in the graphics state. */ ref error_object; /* t__invalid or error object from operator */ ref userparams; /* t_dictionary */ Index: ghostscript-9.26~dfsg+0/psi/zcontrol.c =================================================================== --- ghostscript-9.26~dfsg+0.orig/psi/zcontrol.c 2019-03-19 08:13:17.207883787 -0400 +++ ghostscript-9.26~dfsg+0/psi/zcontrol.c 2019-03-19 08:13:17.199883818 -0400 @@ -158,34 +158,6 @@ zexecn(i_ctx_t *i_ctx_p) return o_push_estack; } -/* superexec - */ -static int end_superexec(i_ctx_t *); -static int -zsuperexec(i_ctx_t *i_ctx_p) -{ - os_ptr op = osp; - es_ptr ep; - - check_op(1); - if (!r_has_attr(op, a_executable)) - return 0; /* literal object just gets pushed back */ - check_estack(2); - ep = esp += 3; - make_mark_estack(ep - 2, es_other, end_superexec); /* error case */ - make_op_estack(ep - 1, end_superexec); /* normal case */ - ref_assign(ep, op); - esfile_check_cache(); - pop(1); - i_ctx_p->in_superexec++; - return o_push_estack; -} -static int -end_superexec(i_ctx_t *i_ctx_p) -{ - i_ctx_p->in_superexec--; - return 0; -} - /* .runandhide */ /* before executing , is been removed from */ /* the operand stack and placed on the execstack with attributes */ @@ -971,8 +943,6 @@ const op_def zcontrol3_op_defs[] = { {"0%loop_continue", loop_continue}, {"0%repeat_continue", repeat_continue}, {"0%stopped_push", stopped_push}, - {"1superexec", zsuperexec}, - {"0%end_superexec", end_superexec}, {"2.runandhide", zrunandhide}, {"0%end_runandhide", end_runandhide}, op_def_end(0) Index: ghostscript-9.26~dfsg+0/psi/zdict.c =================================================================== --- ghostscript-9.26~dfsg+0.orig/psi/zdict.c 2019-03-19 08:13:17.207883787 -0400 +++ ghostscript-9.26~dfsg+0/psi/zdict.c 2019-03-19 08:13:17.199883818 -0400 @@ -212,8 +212,7 @@ zundef(i_ctx_t *i_ctx_p) int code; check_type(*op1, t_dictionary); - if (i_ctx_p->in_superexec == 0) - check_dict_write(*op1); + check_dict_write(*op1); code = idict_undef(op1, op); if (code < 0 && code != gs_error_undefined) /* ignore undefined error */ return code; @@ -504,8 +503,7 @@ zsetmaxlength(i_ctx_t *i_ctx_p) int code; check_type(*op1, t_dictionary); - if (i_ctx_p->in_superexec == 0) - check_dict_write(*op1); + check_dict_write(*op1); check_type(*op, t_integer); if (op->value.intval < 0) return_error(gs_error_rangecheck); Index: ghostscript-9.26~dfsg+0/psi/zgeneric.c =================================================================== --- ghostscript-9.26~dfsg+0.orig/psi/zgeneric.c 2019-03-19 08:13:17.207883787 -0400 +++ ghostscript-9.26~dfsg+0/psi/zgeneric.c 2019-03-19 08:13:17.199883818 -0400 @@ -204,8 +204,7 @@ zput(i_ctx_t *i_ctx_p) switch (r_type(op2)) { case t_dictionary: - if (i_ctx_p->in_superexec == 0) - check_dict_write(*op2); + check_dict_write(*op2); { int code = idict_put(op2, op1, op); debian/patches/CVE-2019-3835-pre1.patch0000644000000000000000000000646013444155612014124 0ustar From 779664d79f0dca77dbdd66b753679bfd12dcbbad Mon Sep 17 00:00:00 2001 From: Chris Liddell Date: Mon, 26 Nov 2018 18:01:25 +0000 Subject: [PATCH] Have gs_cet.ps run from gs_init.ps Previously gs_cet.ps was run on the command line, to set up the interpreter state so our output more closely matches the example output for the QL CET tests. Allow a -dCETMODE command line switch, which will cause gs_init.ps to run the file directly. This works better for gpdl as it means the changes are made in the intial interpreter state, rather than after initialisation is complete. This also means adding a definition of the default procedure for black generation and under color removal (rather it being defined in-line in .setdefaultbgucr Also, add a check so gs_cet.ps only runs once - if we try to run it a second time, we'll just skip over the file, flushing through to the end. --- Resource/Init/gs_cet.ps | 11 ++++++++++- Resource/Init/gs_init.ps | 13 ++++++++++++- 2 files changed, 22 insertions(+), 2 deletions(-) Index: ghostscript-9.26~dfsg+0/Resource/Init/gs_cet.ps =================================================================== --- ghostscript-9.26~dfsg+0.orig/Resource/Init/gs_cet.ps 2019-03-19 08:07:35.905477321 -0400 +++ ghostscript-9.26~dfsg+0/Resource/Init/gs_cet.ps 2019-03-19 08:07:35.905477321 -0400 @@ -1,6 +1,11 @@ %!PS % Set defaults for Ghostscript to match Adobe CPSI behaviour for CET +systemdict /product get (PhotoPRINT SE 5.0v2) readonly eq +{ + (%END GS_CET) .skipeof +} if + % do this in the server level so it is persistent across jobs //true 0 startjob not { (*** Warning: CET startup is not in server default) = flush @@ -25,7 +30,9 @@ currentglobal //true setglobal /UNROLLFORMS true def -{ } bind dup +(%.defaultbgrucrproc) cvn { } bind def + +(%.defaultbgrucrproc) cvn load dup setblackgeneration setundercolorremoval 0 array cvx readonly dup dup dup setcolortransfer @@ -109,3 +116,5 @@ userdict /.smoothness currentsmoothness % end of slightly nasty hack to give consistent cluster results //false 0 startjob pop % re-enter encapsulated mode + +%END GS_CET Index: ghostscript-9.26~dfsg+0/Resource/Init/gs_init.ps =================================================================== --- ghostscript-9.26~dfsg+0.orig/Resource/Init/gs_init.ps 2019-03-19 08:07:35.905477321 -0400 +++ ghostscript-9.26~dfsg+0/Resource/Init/gs_init.ps 2019-03-19 08:07:35.905477321 -0400 @@ -1544,10 +1544,18 @@ setpacking % any-part-of-pixel rule. 0.5 .setfilladjust } bind def + % Set the default screen and BG/UCR. +% We define the proc here, rather than inline in .setdefaultbgucr +% for the benefit of gs_cet.ps so jobs that do anything that causes +% .setdefaultbgucr to be called will still get the redefined proc +% in gs_cet.ps +(%.defaultbgrucrproc) cvn { pop 0 } def + /.setdefaultbgucr { systemdict /setblackgeneration known { - { pop 0 } dup setblackgeneration setundercolorremoval + (%.defaultbgrucrproc) cvn load dup + setblackgeneration setundercolorremoval } if } bind def /.useloresscreen { % - .useloresscreen @@ -2499,4 +2507,7 @@ WRITESYSTEMDICT { % be 'true' in some cases. userdict /AGM_preserve_spots //false put +systemdict /CETMODE .knownget +{ { (gs_cet.ps) runlibfile } if } if + % The interpreter will run the initial procedure (start). debian/patches/CVE-2019-3835-1.patch0000644000000000000000000003014113444156314013406 0ustar Backport of: From 205591753126802da850ada6511a0ff8411aa287 Mon Sep 17 00:00:00 2001 From: Ray Johnston Date: Thu, 14 Feb 2019 10:20:03 -0800 Subject: [PATCH] Fix bug 700585: Restrict superexec and remove it from internals and gs_cet.ps Also while changing things, restructure the CETMODE so that it will work with -dSAFER. The gs_cet.ps is now run when we are still at save level 0 with systemdict writeable. Allows us to undefine .makeoperator and .setCPSImode internal operators after CETMODE is handled. Change previous uses of superexec to using .forceput (with the usual .bind executeonly to hide it). --- Resource/Init/gs_cet.ps | 37 ++++++++++++++----------------------- Resource/Init/gs_dps1.ps | 2 +- Resource/Init/gs_fonts.ps | 8 ++++---- Resource/Init/gs_init.ps | 38 +++++++++++++++++++++++++++----------- Resource/Init/gs_ttf.ps | 8 ++++---- Resource/Init/gs_type1.ps | 6 +++--- 6 files changed, 53 insertions(+), 46 deletions(-) Index: ghostscript-9.26~dfsg+0/Resource/Init/gs_cet.ps =================================================================== --- ghostscript-9.26~dfsg+0.orig/Resource/Init/gs_cet.ps 2019-03-19 08:09:48.204781423 -0400 +++ ghostscript-9.26~dfsg+0/Resource/Init/gs_cet.ps 2019-03-19 08:12:07.628159771 -0400 @@ -1,36 +1,28 @@ -%!PS % Set defaults for Ghostscript to match Adobe CPSI behaviour for CET -/.odef { % odef - - 1 index exch .makeoperator def -} bind def - +% skip if we've already run this -- based on fake "product" systemdict /product get (PhotoPRINT SE 5.0v2) readonly eq { (%END GS_CET) .skipeof } if -% do this in the server level so it is persistent across jobs -//true 0 startjob not { - (*** Warning: CET startup is not in server default) = flush -} if +% Note: this must be run at save level 0 and when systemdict is writeable +currentglobal //true setglobal +systemdict dup dup dup +/version (3017.102) readonly .forceput % match CPSI 3017.102 +/product (PhotoPRINT SE 5.0v2) readonly .forceput % match CPSI 3017.102 +/revision 0 put % match CPSI 3017.103 Tek shows revision 5 +/serialnumber dup {233640} readonly .makeoperator .forceput % match CPSI 3017.102 Tek shows serialnumber 1401788461 + +systemdict /.odef { % odef - + 1 index exch //.makeoperator def +} .bind .forceput % this will be undefined at the end 300 .sethiresscreen % needed for language switch build since it % processes gs_init.ps BEFORE setting the resolution 0 array 0 setdash % CET 09-08 wants local setdash -currentglobal //true setglobal - -{ - systemdict dup dup dup - /version (3017.102) readonly put % match CPSI 3017.102 - /product (PhotoPRINT SE 5.0v2) readonly put % match CPSI 3017.102 - /revision 0 put % match CPSI 3017.103 Tek shows revision 5 - /serialnumber dup {233640} readonly .makeoperator put % match CPSI 3017.102 Tek shows serialnumber 1401788461 - systemdict /deviceinfo undef % for CET 20-23-1 -% /UNROLLFORMS true put % CET files do unreasonable things inside forms -} 1183615869 internaldict /superexec get exec /UNROLLFORMS true def @@ -118,9 +110,7 @@ userdict /.smoothness currentsmoothness ofnfa } bind def -currentdict /.odef undef -% end of slightly nasty hack to give consistent cluster results - -//false 0 startjob pop % re-enter encapsulated mode +systemdict /.odef .undef +% end of slightly nasty hack to give consistent cluster results %END GS_CET Index: ghostscript-9.26~dfsg+0/Resource/Init/gs_dps1.ps =================================================================== --- ghostscript-9.26~dfsg+0.orig/Resource/Init/gs_dps1.ps 2019-03-19 08:09:48.204781423 -0400 +++ ghostscript-9.26~dfsg+0/Resource/Init/gs_dps1.ps 2019-03-19 08:09:48.200781443 -0400 @@ -85,7 +85,7 @@ level2dict begin % definition, copy it into the local directory. //systemdict /SharedFontDirectory .knownget { 1 index .knownget - { //.FontDirectory 2 index 3 -1 roll { put } systemdict /superexec known {//superexec}{1183615869 internaldict /superexec get exec} ifelse } % readonly + { //.FontDirectory 2 index 3 -1 roll .forceput } % readonly if } if Index: ghostscript-9.26~dfsg+0/Resource/Init/gs_fonts.ps =================================================================== --- ghostscript-9.26~dfsg+0.orig/Resource/Init/gs_fonts.ps 2019-03-19 08:09:48.204781423 -0400 +++ ghostscript-9.26~dfsg+0/Resource/Init/gs_fonts.ps 2019-03-19 08:09:48.200781443 -0400 @@ -512,11 +512,11 @@ buildfontdict 3 /.buildfont3 cvx put % the font in LocalFontDirectory. .currentglobal { //systemdict /LocalFontDirectory .knownget - { 2 index 2 index { .growput } systemdict /superexec known {//superexec}{1183615869 internaldict /superexec get exec} ifelse } % readonly + { 2 index 2 index .forceput } % readonly if } if - dup //.FontDirectory 4 -2 roll { .growput } systemdict /superexec known {//superexec}{1183615869 internaldict /superexec get exec} ifelse % readonly + dup //.FontDirectory 4 -2 roll .forceput % readonly % If the font originated as a resource, register it. currentfile .currentresourcefile eq { dup .registerfont } if readonly @@ -1179,13 +1179,13 @@ currentdict /.putgstringcopy .undef //.FontDirectory 1 index known not { 2 dict dup /FontName 3 index put dup /FontType 1 put - //.FontDirectory 3 1 roll { put } systemdict /superexec known {//superexec}{1183615869 internaldict /superexec get exec} ifelse % readonly + //.FontDirectory 3 1 roll //.forceput exec % readonly } { pop } ifelse } forall } forall - } + } executeonly % hide .forceput FAKEFONTS { exch } if pop def % don't bind, .current/setglobal get redefined % Install initial fonts from Fontmap. Index: ghostscript-9.26~dfsg+0/Resource/Init/gs_init.ps =================================================================== --- ghostscript-9.26~dfsg+0.orig/Resource/Init/gs_init.ps 2019-03-19 08:09:48.204781423 -0400 +++ ghostscript-9.26~dfsg+0/Resource/Init/gs_init.ps 2019-03-19 08:09:48.200781443 -0400 @@ -2194,9 +2194,6 @@ SAFER { .setsafeglobal } if /.endtransparencygroup % transparency-example.ps /.setdotlength % Bug687720.ps /.sort /.setdebug /.mementolistnewblocks /getenv - - /.makeoperator /.setCPSImode % gs_cet.ps, this won't work on cluster with -dSAFER - /unread ] {systemdict exch .forceundef} forall @@ -2276,7 +2273,6 @@ SAFER { .setsafeglobal } if % Used by our own test suite files %/.fileposition %image-qa.ps - %/.makeoperator /.setCPSImode % gs_cet.ps % Either our code uses these in ways which mean they can't be undefined, or they are used directly by % test files/utilities, or engineers expressed a desire to keep them visible. @@ -2464,6 +2460,16 @@ end /vmreclaim where { pop NOGC not { 2 .vmreclaim 0 vmreclaim } if } if + +% Do this before systemdict is locked (see below for additional CETMODE setup using gs_cet.ps) +systemdict /CETMODE .knownget { + { + (gs_cet.ps) runlibfile + } if +} if +systemdict /.makeoperator .undef % must be after gs_cet.ps +systemdict /.setCPSImode .undef % must be after gs_cet.ps + DELAYBIND not { systemdict /.bindnow .undef % We only need this for DELAYBIND systemdict /.forcecopynew .undef % remove temptation @@ -2472,16 +2478,29 @@ DELAYBIND not { systemdict /.forceundef .undef % ditto } if -% Move superexec to internaldict if superexec is defined. -systemdict /superexec .knownget { - 1183615869 internaldict /superexec 3 -1 roll put - systemdict /superexec .undef +% Move superexec to internaldict if superexec is defined. (Level 2 or later) +systemdict /superexec known { + % restrict superexec to single known use by PScript5.dll + % We could do this only for SAFER mode, but internaldict and superexec are + % not very well documented, and we don't want them to be used. + 1183615869 internaldict /superexec { + 2 index /Private eq % first check for typical use in PScript5.dll + 1 index length 1 eq and % expected usage is: dict /Private {put} superexec + 1 index 0 get systemdict /put get eq and + { + //superexec exec % the only usage we allow + } { + /superexec load /invalidaccess signalerror + } ifelse + } bind cvx executeonly put + systemdict /superexec .undef % get rid of the dangerous (unrestricted) operator } if % Can't remove this one until the last minute :-) DELAYBIND not { systemdict /.undef .undef } if + WRITESYSTEMDICT { SAFER { (\n *** WARNING - you have selected SAFER, indicating you want Ghostscript\n) print @@ -2508,7 +2527,4 @@ WRITESYSTEMDICT { % be 'true' in some cases. userdict /AGM_preserve_spots //false put -systemdict /CETMODE .knownget -{ { (gs_cet.ps) runlibfile } if } if - % The interpreter will run the initial procedure (start). Index: ghostscript-9.26~dfsg+0/Resource/Init/gs_ttf.ps =================================================================== --- ghostscript-9.26~dfsg+0.orig/Resource/Init/gs_ttf.ps 2019-03-19 08:09:48.204781423 -0400 +++ ghostscript-9.26~dfsg+0/Resource/Init/gs_ttf.ps 2019-03-19 08:09:48.200781443 -0400 @@ -1421,7 +1421,7 @@ mark TTFDEBUG { (\n1 setting alias: ) print dup ==only ( to be the same as ) print 2 index //== exec } if - 7 index 2 index 3 -1 roll exch //.growput systemdict /superexec known {//superexec}{1183615869 internaldict /superexec get exec} ifelse + 7 index 2 index 3 -1 roll exch .forceput } forall pop pop pop } @@ -1439,7 +1439,7 @@ mark exch pop TTFDEBUG { (\n2 setting alias: ) print 1 index ==only ( to use glyph index: ) print dup //== exec } if - 5 index 3 1 roll //.growput systemdict /superexec known {//superexec}{1183615869 internaldict /superexec get exec} ifelse + 5 index 3 1 roll .forceput //false } { @@ -1456,7 +1456,7 @@ mark { % CharStrings(dict) isunicode(boolean) cmap(dict) RAGL(dict) gname(name) codep(integer) gindex(integer) TTFDEBUG { (\3 nsetting alias: ) print 1 index ==only ( to be index: ) print dup //== exec } if - exch pop 5 index 3 1 roll //.growput systemdict /superexec known {//superexec}{1183615869 internaldict /superexec get exec} ifelse + exch pop 5 index 3 1 roll .forceput } { pop pop Index: ghostscript-9.26~dfsg+0/Resource/Init/gs_type1.ps =================================================================== --- ghostscript-9.26~dfsg+0.orig/Resource/Init/gs_type1.ps 2019-03-19 08:09:48.204781423 -0400 +++ ghostscript-9.26~dfsg+0/Resource/Init/gs_type1.ps 2019-03-19 08:09:48.200781443 -0400 @@ -116,7 +116,7 @@ { % scratch(string) RAGL(dict) AGL(dict) CharStrings(dict) cstring gname aglname CFFDEBUG { (\nsetting alias: ) print dup ==only ( to be the same as glyph: ) print 1 index //== exec } if - 3 index exch 3 index //.growput systemdict /superexec known {//superexec}{1183615869 internaldict /superexec get exec} ifelse + 3 index exch 3 index .forceput % scratch(string) RAGL(dict) AGL(dict) CharStrings(dict) cstring gname } {pop} ifelse @@ -135,7 +135,7 @@ 3 1 roll pop pop } if pop - dup /.AGLprocessed~GS //true //.growput systemdict /superexec known {//superexec}{1183615869 internaldict /superexec get exec} ifelse + dup /.AGLprocessed~GS //true .forceput } if %% We need to excute the C .buildfont1 in a stopped context so that, if there @@ -148,7 +148,7 @@ {//.buildfont1} stopped 4 3 roll .setglobal {//.buildfont1 $error /errorname get signalerror} if - } bind def + } .bind executeonly def % hide .forceput % If the diskfont feature isn't included, define a dummy .loadfontdict. /.loadfontdict where debian/patches/lp1815339-2.patch0000644000000000000000000000300513434777224013201 0ustar From 1bc4205dca71ca075af6ca95aa53a33f5a724586 Mon Sep 17 00:00:00 2001 From: Michael Vrhel Date: Fri, 22 Feb 2019 13:43:15 -0800 Subject: [PATCH] Bug 700584 Cups device The RGBW color space needs to have the white value mapped properly during the encode process. --- cups/gdevcups.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/cups/gdevcups.c b/cups/gdevcups.c index 52d93d1..f08a215 100644 --- a/cups/gdevcups.c +++ b/cups/gdevcups.c @@ -667,6 +667,20 @@ cups_encode_color(gx_device *pdev, ci = 0x06; /* == light cyan + yellow */ } + /* The entire manner that cups does its color mapping needs some serious + rework. In the case of the output RGBW color space, it takes a source + CMYK value which gs maps to RGB, cups then maps the RGB to CMYK and then + from there to RGBW and finally it does an encode. Unfortunately, the + number of color values for RGBW is 3 since it is using an RGB ICC profile + this means that the W mapping value from cups is lost in cmap_rgb_direct + So here we ensure that the W is always set to on (else we end up with a + blue background cast). The ideal way + to fix this is to move some of these odd color spaces of cups to the + separation device model ensuring that things are handled properly. */ + if (cups->header.cupsColorSpace == CUPS_CSPACE_RGBW) { + ci = (ci << shift) | cups->EncodeLUT[gx_max_color_value]; + } + /* * Range check the return value... */ -- 2.9.1 debian/patches/2006_suggest_install_ghostscript-doc_in_docs.patch0000644000000000000000000000120713332552041022404 0ustar Description: Suggest install of ghostscript-doc in documentation Author: Bastien ROUCARIÈS Last-Update: 2012-07-24 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ --- a/man/gs.1 +++ b/man/gs.1 @@ -428,7 +428,9 @@ % xrdb \-merge ~/.Xresources .fi .SH SEE ALSO -The various Ghostscript document files (above), especially \fBUse.htm\fR. +The various Ghostscript document files (above), especially \fBUse.htm\fR. +On Debian you may need to install ghostscript-doc before +reading the documentation. .SH BUGS See http://bugs.ghostscript.com/ and the Usenet news group comp.lang.postscript. debian/patches/2004_remove_non-Debian_paths_from_docs.patch0000644000000000000000000000513313332552041021064 0ustar Description: Remove non-Debian paths from documentation Author: Bastien ROUCARIÈS Last-Update: 2012-07-24 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ --- a/man/gs.1 +++ b/man/gs.1 @@ -2,20 +2,14 @@ .SH NAME gs \- Ghostscript (PostScript and PDF language interpreter and previewer) .SH SYNOPSIS -\fBgs\fR [ \fIoptions\fR ] [ \fIfiles\fR ] ... \fB(Unix, VMS)\fR -.br -\fBgswin32c\fR [ \fIoptions\fR ] [ \fIfiles\fR ] ... \fB(MS Windows)\fR -.br -\fBgswin32\fR [ \fIoptions\fR ] [ \fIfiles\fR ] ... \fB(MS Windows 3.1)\fR -.br -\fBgsos2\fR [ \fIoptions\fR ] [ \fIfiles\fR ] ... \fB(OS/2)\fR +\fBgs\fR [ \fIoptions\fR ] [ \fIfiles\fR ] ... .de TQ .br .ns .TP \\$1 .. .SH DESCRIPTION -The \fBgs\fR (\fBgswin32c\fR, \fBgswin32\fR, \fBgsos2\fR) +The \fBgs\fR command invokes \fBGhostscript\fR, an interpreter of Adobe Systems' \fBPostScript\fR(tm) and \fBPortable Document Format\fR (PDF) languages. \fBgs\fR reads "files" in sequence and executes them as Ghostscript @@ -124,7 +118,7 @@ in sequence. "%d" is a printf format specification; you can also use a variant like "%02d". .PP -On Unix and MS Windows systems you can also send output to a pipe. For example, to +You can also send output to a pipe. For example, to pipe output to the "\fBlpr\fR" command (which, on many Unix systems, directs it to a printer), use the option .PP @@ -132,9 +126,6 @@ \-sOutputFile=%pipe%lpr .fi .PP -Note that the '%' characters need to be doubled on MS Windows to avoid -mangling by the command interpreter. -.PP You can also send output to standard output: .PP .nf @@ -336,9 +327,8 @@ .PP The locations of many Ghostscript run-time files are compiled into the executable when it is built. On Unix these are typically based in -\fB/usr/local\fR, but this may be different on your system. Under DOS they -are typically based in \fBC:\\GS\fR, but may be elsewhere, especially if -you install Ghostscript with \fBGSview\fR. Run "\fBgs -h\fR" to find the +\fB/usr/local\fR, but this may be different on your system. +Run "\fBgs -h\fR" to find the location of Ghostscript documentation on your system, from which you can get more details. On a Debian system they are in \fB/usr\fR. .TP @@ -359,7 +349,7 @@ the file with the name as given, using the current working directory if no directory is specified. If this fails, and the file name doesn't specify an explicit directory or drive (for instance, doesn't contain "/" on Unix -systems or "\\" on MS Windows systems), Ghostscript tries directories in this +systems), Ghostscript tries directories in this order: .TP 4 1. debian/patches/README0000644000000000000000000000021111763726276011510 0ustar 0xxx: Grabbed from upstream development. 1xxx: Possibly relevant for upstream adoption. 2xxx: Only relevant for official Debian release. debian/patches/2002_gs_man_fix_debian.patch0000644000000000000000000000324613332552041015720 0ustar Description: Fixes for gs.1 (Debian specific path adjustments) Author: Masayuki Hatta Last-Update: 2009-04-15 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ --- a/man/gs.1 +++ b/man/gs.1 @@ -340,18 +340,18 @@ are typically based in \fBC:\\GS\fR, but may be elsewhere, especially if you install Ghostscript with \fBGSview\fR. Run "\fBgs -h\fR" to find the location of Ghostscript documentation on your system, from which you can -get more details. +get more details. On a Debian system they are in \fB/usr\fR. .TP -.B /usr/local/share/ghostscript/#.##/* +.B /usr/share/gs-gpl/#.##/*/* Startup files, utilities, and basic font definitions .TP -.B /usr/local/share/ghostscript/fonts/* -More font definitions +.B /usr/share/fonts/type1/gsfonts/* +More font definitions from the gsfonts package .TP -.B /usr/local/share/ghostscript/#.##/examples/* +.B /usr/share/doc/gs-gpl/examples/* Ghostscript demonstration files .TP -.B /usr/local/share/ghostscript/#.##/doc/* +.B /usr/share/doc/gs-gpl/* Diverse document files .SH "INITIALIZATION FILES" When looking for the initialization files "gs_*.ps", the files related to @@ -375,7 +375,8 @@ Ghostscript makefile when the executable was built. When \fBgs\fR is built on Unix, \fBGS_LIB_DEFAULT\fR is usually "/usr/local/share/ghostscript/#.##:/usr/local/share/ghostscript/fonts" -where "#.##" represents the Ghostscript version number. +where "#.##" represents the Ghostscript version number. They are +"/usr/share/gs-gpl/#.## on a Debian system". .PP Each of these (\fBGS_LIB_DEFAULT\fR, \fBGS_LIB\fR, and \fB\-I\fR parameter) may be either a single directory or a list of directories separated by debian/patches/2005_fix_Debian_paths_in_docs.patch0000644000000000000000000000435713332552041017240 0ustar Description: Fix Debian paths in documentation Author: Bastien ROUCARIÈS Last-Update: 2012-07-24 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ --- a/man/gs.1 +++ b/man/gs.1 @@ -326,23 +326,23 @@ .SH FILES .PP The locations of many Ghostscript run-time files are compiled into the -executable when it is built. On Unix these are typically based in -\fB/usr/local\fR, but this may be different on your system. +executable when it is built. Run "\fBgs -h\fR" to find the location of Ghostscript documentation on your system, from which you can get more details. On a Debian system they are in \fB/usr\fR. .TP -.B /usr/share/gs-gpl/#.##/*/* -Startup files, utilities, and basic font definitions +.B /usr/share/ghostscript/[0-9]*.[0.9]*/* +Startup files, utilities, and basic font definitions (where [0-9]*.[0.9]* is +the ghostscript version) .TP .B /usr/share/fonts/type1/gsfonts/* More font definitions from the gsfonts package .TP -.B /usr/share/doc/gs-gpl/examples/* -Ghostscript demonstration files +.B /usr/share/doc/ghostscript/examples/* +Ghostscript demonstration files (if ghostscript-doc package is installed) .TP -.B /usr/share/doc/gs-gpl/* -Diverse document files +.B /usr/share/doc/ghostscript/* +Diverse document files (may need to install ghostscript-doc package) .SH "INITIALIZATION FILES" When looking for the initialization files "gs_*.ps", the files related to fonts, or the file for the "run" operator, Ghostscript first tries to open @@ -362,11 +362,11 @@ .TP 3. the directories specified by the \fBGS_LIB_DEFAULT\fR macro in the -Ghostscript makefile when the executable was built. When \fBgs\fR is built -on Unix, \fBGS_LIB_DEFAULT\fR is usually -"/usr/local/share/ghostscript/#.##:/usr/local/share/ghostscript/fonts" -where "#.##" represents the Ghostscript version number. They are -"/usr/share/gs-gpl/#.## on a Debian system". +Ghostscript makefile when the executable was built. +\fBGS_LIB_DEFAULT\fR is +"/usr/share/ghostscript/[0-9]*.[0-9]*/lib" +on a Debian system where +"[0-9]*.[0-9]*" represents the Ghostscript version number .PP Each of these (\fBGS_LIB_DEFAULT\fR, \fBGS_LIB\fR, and \fB\-I\fR parameter) may be either a single directory or a list of directories separated by debian/patches/lp1815339.patch0000644000000000000000000000521113433230032013017 0ustar From ba2043a548559d184cbfe90ca9884734dba6efdc Mon Sep 17 00:00:00 2001 From: Michael Vrhel Date: Wed, 13 Feb 2019 12:01:54 -0800 Subject: [PATCH] Bug 700584: cups device The cups device has a pile of different color spaces. It is up to the cups device to ensure that the color is handled properly for these. RGBA should certainly be treated as a 32 3 component color similar to our pngalpha device. RGBW will be treated the same way. Note that I looked at the output using Mike Sweet's rasterview program. I suspect there probably is some work that needs to be done on that viewer to ensure proper viewing of this type of data. With this patch gs is doing all it can. --- cups/gdevcups.c | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/cups/gdevcups.c b/cups/gdevcups.c index bd699fc..52d93d1 100644 --- a/cups/gdevcups.c +++ b/cups/gdevcups.c @@ -4147,6 +4147,18 @@ cups_set_color_info(gx_device *pdev) /* I - Device info */ case CUPS_CSPACE_RGBA : case CUPS_CSPACE_RGBW : +#ifdef CUPS_RASTER_SYNCv1 + cups->header.cupsNumColors = 4; +#endif /* CUPS_RASTER_SYNCv1 */ + if (cups->header.cupsColorOrder != CUPS_ORDER_CHUNKED) + cups->header.cupsBitsPerPixel = cups->header.cupsBitsPerColor; + else + cups->header.cupsBitsPerPixel = 4 * cups->header.cupsBitsPerColor; + + cups->color_info.depth = 4 * cups->header.cupsBitsPerColor; + cups->color_info.num_components = 3; + break; + case CUPS_CSPACE_CMYK : case CUPS_CSPACE_YMCK : case CUPS_CSPACE_KCMY : @@ -4156,9 +4168,9 @@ cups_set_color_info(gx_device *pdev) /* I - Device info */ cups->header.cupsNumColors = 4; #endif /* CUPS_RASTER_SYNCv1 */ if (cups->header.cupsColorOrder != CUPS_ORDER_CHUNKED) - cups->header.cupsBitsPerPixel = cups->header.cupsBitsPerColor; - else - cups->header.cupsBitsPerPixel = 4 * cups->header.cupsBitsPerColor; + cups->header.cupsBitsPerPixel = cups->header.cupsBitsPerColor; + else + cups->header.cupsBitsPerPixel = 4 * cups->header.cupsBitsPerColor; cups->color_info.depth = 4 * cups->header.cupsBitsPerColor; cups->color_info.num_components = 4; @@ -5916,12 +5928,6 @@ cups_print_planar(gx_device_printer *pdev, private int cups_spec_op(gx_device *dev_, int op, void *data, int datasize) { - /* Although not strictly DeviceN, the range of color models - this device supports presets similar issues. - */ - if (op == gxdso_supports_devn) { - return true; - } return gx_default_dev_spec_op(dev_, op, data, datasize); } -- 2.9.1 debian/patches/2010_add_build_timestamp_setting.patch0000644000000000000000000000710613344270017020034 0ustar Description: Allow the build timestamp to be externally set In order to make Ghostscript output reproducible, we need a way to set the build timestamp to other values than the current time. We now consistently use gp_get_realtime() instead of directly calling time() or gp_get_usertime() and make gp_get_realtime() use the value found in the SOURCE_DATE_EPOCH environment variable if set. Also, environment timezone is fixed to UTC if SOURCE_DATE_EPOCH is used to avoid variations. Author: Eduard Sanou Author: Peter De Wachter Bug-Debian: http://bugs.debian.org/794004 Last-Update: 2015-07-30 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ --- a/base/gp_unix.c +++ b/base/gp_unix.c @@ -16,6 +16,7 @@ /* Unix-specific routines for Ghostscript */ +#include "errno_.h" #include "pipe_.h" #include "string_.h" #include "time_.h" @@ -145,6 +146,7 @@ gp_get_realtime(long *pdt) { struct timeval tp; + const char *env; #if gettimeofday_no_timezone /* older versions of SVR4 */ { @@ -164,6 +166,26 @@ } #endif + env = getenv("SOURCE_DATE_EPOCH"); + if (env) { + char *end; + long timestamp; + + errno = 0; + timestamp = strtol(env, &end, 10); + if (env == end || *end || errno != 0) { + lprintf("Ghostscript: SOURCE_DATE_EPOCH is not a number!\n"); + timestamp = 0; + } + + tp.tv_sec = timestamp; + tp.tv_usec = 0; + + /* We need to fix the environment timezone to get reproducible */ + /* results when parsing the result of gp_get_realtime. */ + setenv("TZ", "UTC", 1); + } + /* tp.tv_sec is #secs since Jan 1, 1970 */ pdt[0] = tp.tv_sec; --- a/devices/vector/gdevpdf.c +++ b/devices/vector/gdevpdf.c @@ -391,6 +391,9 @@ */ { struct tm tms; +#ifndef CLUSTER + long secs_ns[2]; +#endif time_t t; char buf[1+2+4+2+2+2+2+2+1+2+1+2+1+1+1]; /* (D:yyyymmddhhmmssZhh'mm')\0 */ int timeoffset; @@ -402,7 +405,8 @@ timesign = 'Z'; timeoffset = 0; #else - time(&t); + gp_get_realtime(secs_ns); + t = secs_ns[0]; tms = *gmtime(&t); tms.tm_isdst = -1; timeoffset = (int)difftime(t, mktime(&tms)); /* tz+dst in seconds */ @@ -446,7 +450,7 @@ if (s == NULL) return_error(gs_error_VMerror); pdev->KeyLength = 0; /* Disable encryption. Not so important though. */ - gp_get_usertime(secs_ns); + gp_get_realtime(secs_ns); sputs(s, (byte *)secs_ns, sizeof(secs_ns), &ignore); sputs(s, (const byte *)pdev->fname, strlen(pdev->fname), &ignore); pdev->strm = s; --- a/devices/vector/gdevpdfe.c +++ b/devices/vector/gdevpdfe.c @@ -199,10 +199,12 @@ { /* We don't write a day time because we don't have a time zone. */ struct tm tms; + long secs_ns[2]; time_t t; char buf1[4+1+2+1+2+1]; /* yyyy-mm-dd\0 */ - time(&t); + gp_get_realtime(secs_ns); + t = secs_ns[0]; tms = *localtime(&t); gs_sprintf(buf1, "%04d-%02d-%02d", --- a/devices/vector/gdevpsu.c +++ b/devices/vector/gdevpsu.c @@ -183,10 +183,12 @@ fprintf(f, "%%%%Creator: %s %ld (%s)\n", gs_product, (long)gs_revision, dev->dname); { + long secs_ns[2]; time_t t; struct tm tms; - time(&t); + gp_get_realtime(secs_ns); + t = secs_ns[0]; tms = *localtime(&t); fprintf(f, "%%%%CreationDate: %d/%02d/%02d %02d:%02d:%02d\n", tms.tm_year + 1900, tms.tm_mon + 1, tms.tm_mday, debian/patches/2003_support_multiarch.patch0000644000000000000000000000621213346525772016105 0ustar Description: Check multiarch paths Author: Jonas Smedegaard Last-Update: 2011-09-19 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ --- a/base/unix-aux.mak +++ b/base/unix-aux.mak @@ -109,37 +109,37 @@ $(ECHOGS_XE) -a $(gconfig__h) $(ECHOGS_XE) -a $(gconfig__h) -x 23 ifndef HAVE_DIRENT_H - if ( test -f $(INCLUDE)/dirent.h ); then $(ECHOGS_XE) -a $(gconfig__h) -x 23 define HAVE_DIRENT_H 1; \ + if ( test -f $(INCLUDE)/dirent.h || test -f $(INCLUDE)/$(DEB_HOST_MULTIARCH)/dirent.h ); then $(ECHOGS_XE) -a $(gconfig__h) -x 23 define HAVE_DIRENT_H 1; \ else $(ECHOGS_XE) -a $(gconfig__h) -x 23 define HAVE_DIRENT_H 0; fi $(ECHOGS_XE) -a $(gconfig__h) -x 23 endif $(ECHOGS_XE) -a $(gconfig__h) $(ECHOGS_XE) -a $(gconfig__h) -x 23 ifndef HAVE_NDIR_H - if ( test -f $(INCLUDE)/ndir.h ); then $(ECHOGS_XE) -a $(gconfig__h) -x 23 define HAVE_NDIR_H 1; \ + if ( test -f $(INCLUDE)/ndir.h || test -f $(INCLUDE)/$(DEB_HOST_MULTIARCH)/ndir.h ); then $(ECHOGS_XE) -a $(gconfig__h) -x 23 define HAVE_NDIR_H 1; \ else $(ECHOGS_XE) -a $(gconfig__h) -x 23 define HAVE_NDIR_H 0; fi $(ECHOGS_XE) -a $(gconfig__h) -x 23 endif $(ECHOGS_XE) -a $(gconfig__h) $(ECHOGS_XE) -a $(gconfig__h) -x 23 ifndef HAVE_SYS_DIR_H - if ( test -f $(INCLUDE)/sys/dir.h ); then $(ECHOGS_XE) -a $(gconfig__h) -x 23 define HAVE_SYS_DIR_H 1; \ + if ( test -f $(INCLUDE)/sys/dir.h || test -f $(INCLUDE)/$(DEB_HOST_MULTIARCH)/sys/dir.h ); then $(ECHOGS_XE) -a $(gconfig__h) -x 23 define HAVE_SYS_DIR_H 1; \ else $(ECHOGS_XE) -a $(gconfig__h) -x 23 define HAVE_SYS_DIR_H 0; fi $(ECHOGS_XE) -a $(gconfig__h) -x 23 endif $(ECHOGS_XE) -a $(gconfig__h) $(ECHOGS_XE) -a $(gconfig__h) -x 23 ifndef HAVE_SYS_NDIR_H - if ( test -f $(INCLUDE)/sys/ndir.h ); then $(ECHOGS_XE) -a $(gconfig__h) -x 23 define HAVE_SYS_NDIR_H 1; \ + if ( test -f $(INCLUDE)/sys/ndir.h || test -f $(INCLUDE)/$(DEB_HOST_MULTIARCH)/sys/ndir.h ); then $(ECHOGS_XE) -a $(gconfig__h) -x 23 define HAVE_SYS_NDIR_H 1; \ else $(ECHOGS_XE) -a $(gconfig__h) -x 23 define HAVE_SYS_NDIR_H 0; fi $(ECHOGS_XE) -a $(gconfig__h) -x 23 endif $(ECHOGS_XE) -a $(gconfig__h) $(ECHOGS_XE) -a $(gconfig__h) -x 23 ifndef HAVE_SYS_TIME_H - if ( test -f $(INCLUDE)/sys/time.h ); then $(ECHOGS_XE) -a $(gconfig__h) -x 23 define HAVE_SYS_TIME_H 1; \ + if ( test -f $(INCLUDE)/sys/time.h || test -f $(INCLUDE)/$(DEB_HOST_MULTIARCH)/sys/time.h ); then $(ECHOGS_XE) -a $(gconfig__h) -x 23 define HAVE_SYS_TIME_H 1; \ else $(ECHOGS_XE) -a $(gconfig__h) -x 23 define HAVE_SYS_TIME_H 0; fi $(ECHOGS_XE) -a $(gconfig__h) -x 23 endif $(ECHOGS_XE) -a $(gconfig__h) $(ECHOGS_XE) -a $(gconfig__h) -x 23 ifndef HAVE_SYS_TIMES_H - if ( test -f $(INCLUDE)/sys/times.h ); then $(ECHOGS_XE) -a $(gconfig__h) -x 23 define HAVE_SYS_TIMES_H 1; \ + if ( test -f $(INCLUDE)/sys/times.h || test -f $(INCLUDE)/$(DEB_HOST_MULTIARCH)/sys/times.h ); then $(ECHOGS_XE) -a $(gconfig__h) -x 23 define HAVE_SYS_TIMES_H 1; \ else $(ECHOGS_XE) -a $(gconfig__h) -x 23 define HAVE_SYS_TIMES_H 0; fi $(ECHOGS_XE) -a $(gconfig__h) -x 23 endif $(ECHOGS_XE) -a $(gconfig__h) debian/patches/CVE-2019-3835-pre2.patch0000644000000000000000000000532213444155775014133 0ustar Backport of: From e8acf6d1aa1fc92f453175509bfdad6f2b12dc73 Mon Sep 17 00:00:00 2001 From: Nancy Durgin Date: Thu, 14 Feb 2019 10:09:00 -0800 Subject: [PATCH] Undef /odef in gs_init.ps Made a new temporary utility function in gs_cet.ps (.odef) to use instead of /odef. This makes it fine to undef odef with all the other operators in gs_init.ps This punts the bigger question of what to do with .makeoperator, but it doesn't make the situation any worse than it already was. --- Resource/Init/gs_cet.ps | 14 ++++++++++---- Resource/Init/gs_init.ps | 1 + 2 files changed, 11 insertions(+), 4 deletions(-) Index: ghostscript-9.26~dfsg+0/Resource/Init/gs_cet.ps =================================================================== --- ghostscript-9.26~dfsg+0.orig/Resource/Init/gs_cet.ps 2019-03-19 08:07:45.769421229 -0400 +++ ghostscript-9.26~dfsg+0/Resource/Init/gs_cet.ps 2019-03-19 08:07:45.765421251 -0400 @@ -1,6 +1,10 @@ %!PS % Set defaults for Ghostscript to match Adobe CPSI behaviour for CET +/.odef { % odef - + 1 index exch .makeoperator def +} bind def + systemdict /product get (PhotoPRINT SE 5.0v2) readonly eq { (%END GS_CET) .skipeof @@ -93,8 +97,8 @@ userdict /.smoothness currentsmoothness } { /setsmoothness .systemvar /typecheck signalerror } ifelse -} bind odef -/currentsmoothness { userdict /.smoothness get } bind odef % for 09-55.PS, 09-57.PS . +} bind //.odef exec +/currentsmoothness { userdict /.smoothness get } bind //.odef exec % for 09-55.PS, 09-57.PS . % slightly nasty hack to give consistent cluster results /ofnfa systemdict /filenameforall get def @@ -113,6 +117,8 @@ userdict /.smoothness currentsmoothness } ifelse ofnfa } bind def + +currentdict /.odef undef % end of slightly nasty hack to give consistent cluster results //false 0 startjob pop % re-enter encapsulated mode Index: ghostscript-9.26~dfsg+0/Resource/Init/gs_init.ps =================================================================== --- ghostscript-9.26~dfsg+0.orig/Resource/Init/gs_init.ps 2019-03-19 08:07:45.769421229 -0400 +++ ghostscript-9.26~dfsg+0/Resource/Init/gs_init.ps 2019-03-19 08:08:51.709064308 -0400 @@ -2263,6 +2263,7 @@ SAFER { .setsafeglobal } if /.systemvmSFD /.settrapparams /.currentsystemparams /.currentuserparams /.getsystemparam /.getuserparam /.setsystemparams /.setuserparams /.checkpassword /.locale_to_utf8 /.currentglobal /.gcheck /.imagepath /.currentoutputdevice /.type /.writecvs /.setSMask /.currentSMask /.needinput /.countexecstack /.execstack /.applypolicies + /odef % Used by a free user in the Library of Congress. Apparently this is used to % draw a partial page, which is then filled in by the results of a barcode debian/patches/020181205-fae21f16-subclassing-devices-fix-put-image-method.patch0000644000000000000000000000163113402247661023722 0ustar Description: subclassing devices - fix put_image method Author: Ken Sharp Last-Update: 2018-12-04 Bug: https://bugs.ghostscript.com/show_bug.cgi?id=700315 Bug-Ubuntu: https://bugs.launchpad.net/bugs/1806517 --- a/base/gdevsclass.c +++ b/base/gdevsclass.c @@ -797,7 +797,10 @@ int alpha_plane_index, int tag_plane_index) { if (dev->child) - return dev_proc(dev->child, put_image)(dev->child, mdev, buffers, num_chan, x, y, width, height, row_stride, alpha_plane_index, tag_plane_index); + if (dev == mdev) + return dev_proc(dev->child, put_image)(dev->child, dev->child, buffers, num_chan, x, y, width, height, row_stride, alpha_plane_index, tag_plane_index); + else + return dev_proc(dev->child, put_image)(dev->child, mdev, buffers, num_chan, x, y, width, height, row_stride, alpha_plane_index, tag_plane_index); return 0; } debian/patches/2008_mention_ghostscript-x_in_docs.patch0000644000000000000000000000127013244071735020362 0ustar Description: Mention ghostscipt-x affect on default device in docs Author: Bastien ROUCARIÈS Last-Update: 2012-07-24 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ --- a/man/gs.1 +++ b/man/gs.1 @@ -36,9 +36,8 @@ specify a particular device, Ghostscript normally opens the first one of those and directs output to it. .PP -If built with X11 support, often +If you have installed the ghostscript-x Debian package and are under X, the default device is an X11 window (previewer), else ghostscript will -typically use the bbox device and print on stdout the dimension of the postscript file. .PP So if the first one in the list is the one debian/patches/CVE-2019-3838-2.patch0000644000000000000000000000170313444156735013423 0ustar From a82601e8f95a2f2147f3b3b9e44ec2b8f3a6be8b Mon Sep 17 00:00:00 2001 From: Chris Liddell Date: Fri, 22 Feb 2019 12:28:23 +0000 Subject: [PATCH] Bug 700576(redux): an extra transient proc needs executeonly'ed. --- Resource/Init/gs_res.ps | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: ghostscript-9.26~dfsg+0/Resource/Init/gs_res.ps =================================================================== --- ghostscript-9.26~dfsg+0.orig/Resource/Init/gs_res.ps 2019-03-19 08:17:30.951021039 -0400 +++ ghostscript-9.26~dfsg+0/Resource/Init/gs_res.ps 2019-03-19 08:17:30.947021052 -0400 @@ -437,7 +437,7 @@ status { % Now make the resource value read-only. 0 2 copy get { readonly } .internalstopped pop dup 4 1 roll put exch pop exch pop - } + } executeonly { /defineresource cvx /typecheck signaloperror } ifelse debian/patches/2007_suggest_install_ghostscript-doc_in_code.patch0000644000000000000000000000112613346525772022407 0ustar Description: Suggest install of ghostscript-doc in code Author: Bastien ROUCARIÈS Last-Update: 2012-07-24 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ --- a/psi/imainarg.c +++ b/psi/imainarg.c @@ -1123,6 +1123,7 @@ #endif static const char help_trailer[] = "\ For more information, see %s.\n\ +On debian system you may need to install ghostscript-doc package.\n\ Please report bugs to bugs.ghostscript.com.\n"; static const char help_devices[] = "Available devices:"; static const char help_default_device[] = "Default output device:"; debian/patches/CVE-2019-3838-1.patch0000644000000000000000000000214513444157446013423 0ustar Backport of: From ed9fcd95bb01f0768bf273b2526732e381202319 Mon Sep 17 00:00:00 2001 From: Chris Liddell Date: Wed, 20 Feb 2019 09:54:28 +0000 Subject: [PATCH] Bug 700576: Make a transient proc executeonly (in DefineResource). This prevents access to .forceput Solution originally suggested by cbuissar@redhat.com. --- Resource/Init/gs_res.ps | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: ghostscript-9.26~dfsg+0/Resource/Init/gs_res.ps =================================================================== --- ghostscript-9.26~dfsg+0.orig/Resource/Init/gs_res.ps 2019-03-19 08:17:24.263041430 -0400 +++ ghostscript-9.26~dfsg+0/Resource/Init/gs_res.ps 2019-03-19 08:17:24.259041442 -0400 @@ -425,7 +425,7 @@ status { % so we have to use .forcedef here. /.Instances 1 index .forcedef % Category dict is read-only } executeonly if - } + } executeonly { .LocalInstances dup //.emptydict eq { pop 3 dict localinstancedict Category 2 index put } debian/libgs__VER__-common.dirs.in0000644000000000000000000000015211763726276014234 0ustar # used only in ghostscript package, but linked from symlink shipped with library var/lib/ghostscript/CMap debian/ghostscript.postinst0000644000000000000000000000034111763726276013363 0ustar #! /bin/sh set -e case "$1" in configure) update-gsfontmap ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER# exit 0 debian/libgs__VER__.symbols.in0000644000000000000000000000056612252054175013470 0ustar libgs.so.__VER__ libgs__VER__ #MINVER# #include "symbols.common" (arch=linux-any)#include "symbols.common_linux" (arch=!any-alpha !any-amd64 !any-arm64 !any-ia64 !any-ppc64 !any-ppc64el !any-s390x !any-sparc64)#include "symbols.common_32bit" (arch=any-alpha any-amd64 any-armel any-arm64 any-i386 any-ia64 any-mipsel any-ppc64el any-sh3 any-sh4)#include "symbols.common_le" debian/libgs__VER__-common.links.in0000644000000000000000000000031012120575070014365 0ustar var/lib/ghostscript/CMap usr/share/ghostscript/__ABI__/Resource/CMap /usr/share/fonts/truetype/droid/DroidSansFallbackFull.ttf /usr/share/ghostscript/__ABI__/Resource/CIDFSubst/DroidSansFallback.ttf debian/README.source0000644000000000000000000000442511763726276011373 0ustar Building this package for Debian -------------------------------- This source package need no special handling for normal package builds. Patching this package for Debian -------------------------------- If you consider doing a non-maintainer update (NMU) then please note that this package is developed at the Alioth collab-maint area for which all Debian Developers have write access. You are encouraged to prepare your NMU there. And please try ping us before final release, in case we have some last minute comments on it. Developing this package for Debian ---------------------------------- The source of this package is developed using git and the helper tool git-buildpackage, with all official releases tagged and signed and binary diffs of tarballs stored using pristine-tar. This is documented below /usr/share/doc/git-buildpackage/manual-html/ . A custom build target shows current upstream and packaging versions: debian/rules print-version Current upstream tarball can be prepared using this other build target: debian/rules get-orig-source To switch to newer upstream source, first add a dummy changelog entry and comment out DEB_UPSTREAM_TARBALL_MD5 before getting the source: dch -v ${new_upstream_version}-1 "Dummy changelog entry" sed -i -e 's/^\(DEB_UPSTREAM_TARBALL_MD5\b\)/#\1/' debian/rules debian/rules get-orig-source Store new md5sum to help ensure identical source is received later. Setting DEB_MAINTAINER_MODE=1 enables additional build routines helpful during development of the package, but unfit for normal builds. This typically includes the CDBS feature of auto-updating debian/control with CDBS-related build-dependencies, which is forbidden by Debian Policy as build environment must not change during automated builds. Maintaining packaging build routines ------------------------------------ This source package wraps debhelper commands and other tedious parts of the build routines using the CDBS framework. Please refer to the actual makefile snippets included from debian/rules for details on their purpose and ways to override defaults. Additionally, makefile snippets included from below /usr/share/cdbs may also be documented in /usr/share/doc/cdbs/cdbs-doc.pdf.gz . -- Jonas Smedegaard Thu, 26 Feb 2009 21:28:29 +0100 debian/ghostscript-doc.install0000644000000000000000000000007211763726276013712 0ustar usr/share/doc/ghostscript/* usr/share/doc/ghostscript-doc debian/ghostscript.dirs0000644000000000000000000000014711763726276012445 0ustar etc/ghostscript/cidfmap.d etc/ghostscript/fontmap.d var/lib/ghostscript/CMap var/lib/ghostscript/fonts debian/libgs__VER__-common.postinst.in0000644000000000000000000000040511763726276015157 0ustar #!/bin/sh # postinst script for libgs__ABI__-common set -e update-alternatives --install /usr/share/ghostscript/current \ ghostscript-current \ /usr/share/ghostscript/__ABI__ \ `echo '__ABI__' | sed -e 's/\.//'` || true #DEBHELPER# exit 0 debian/control.in.in0000644000000000000000000001316712176035603011616 0ustar Source: ghostscript Section: text Priority: optional Maintainer: Debian Printing Team Build-Depends: @cdbs@ Standards-Version: 3.9.3 Uploaders: Jonas Smedegaard , Michael Gilbert Homepage: http://www.ghostscript.com/ Vcs-Git: git://git.debian.org/git/collab-maint/ghostscript.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/ghostscript.git Package: ghostscript Architecture: any Multi-Arch: foreign Conflicts: ${cdbs:Conflicts} Replaces: ${cdbs:Replaces} Provides: ${cdbs:Provides} Recommends: ${cdbs:Recommends} Suggests: ${cdbs:Suggests} Depends: ${shlibs:Depends}, ${cdbs:Depends}, libgs__VER__ (= ${binary:Version}), ${misc:Depends} Breaks: ${cdbs:Breaks} Description: interpreter for the PostScript language and for PDF GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . Furthermore, it can render PostScript and PDF files as graphics to be printed on non-PostScript printers. Supported printers include common dot-matrix, inkjet and laser models. Package: ghostscript-cups Architecture: any Depends: ${shlibs:Depends}, ${cdbs:Depends}, ${misc:Depends} Recommends: ${cdbs:Recommends}, ${cdbs:Recommends} Conflicts: ${cdbs:Conflicts} Replaces: ${cdbs:Replaces} Provides: ${cdbs:Provides} Description: interpreter for the PostScript language and for PDF - CUPS filters GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . This package contains the CUPS filters, drivers, and PPDs which come with GPL Ghostscript. Package: ghostscript-x Architecture: any Depends: ${shlibs:Depends}, ${cdbs:Depends}, ${misc:Depends} Conflicts: ${cdbs:Conflicts} Provides: ${cdbs:Provides} Description: interpreter for the PostScript language and for PDF - X11 support GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . This package contains the GPL Ghostscript output device for X11. Package: ghostscript-doc Section: doc Architecture: all Depends: ${shlibs:Depends}, ${cdbs:Depends}, ${misc:Depends} Suggests: ${cdbs:Suggests} Conflicts: ${cdbs:Conflicts} Description: interpreter for the PostScript language and for PDF - Documentation GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . This package contains documentation for GPL Ghostscript, mainly targeted developers and advanced users. Package: libgs__VER__ Section: libs Architecture: any Depends: ${shlibs:Depends}, ${cdbs:Depends}, ${misc:Depends}, libgs__VER__-common (>= ${source:Upstream-Version}) Description: interpreter for the PostScript language and for PDF - Library GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . This package provides the Ghostscript library which makes the facilities of GPL Ghostscript available to applications. Package: libgs__VER__-common Section: libs Architecture: all Depends: ${misc:Depends} Replaces: ${cdbs:Replaces} Recommends: ${cdbs:Recommends} Suggests: ${cdbs:Suggests} Description: interpreter for the PostScript language and for PDF - common files GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . This package provides common architecture-independent files needed by the GPL Ghostscript library. . By default, GPL Ghostscript uses a font from the fonts-droid package to approximate glyphs in PDFs for which the requested CJK TrueType font is missing. If the fonts-droid package is not installed, these glyphs will be rendered as bullets. Package: libgs-dev Section: libdevel Architecture: any Depends: libgs9 (= ${binary:Version}), libc6-dev, libcups2-dev, libcupsimage2-dev, libfontconfig1-dev, libidn11-dev, libijs-dev, libjasper-dev, libjbig2dec0-dev, libjpeg-dev, liblcms2-dev, libpaper-dev, libpng12-0-dev, libtiff5-dev, zlib1g-dev, ${cdbs:Depends}, ${misc:Depends} Conflicts: ${cdbs:Conflicts} Replaces: ${cdbs:Replaces} Provides: ${cdbs:Provides} Description: interpreter for the PostScript language and for PDF - Development Files GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . This package provides the development files for the GPL Ghostscript library which makes the facilities of GPL Ghostscript available to applications. Package: ghostscript-dbg Architecture: any Section: debug Priority: extra Depends: ${shlibs:Depends}, ${cdbs:Depends}, libgs__VER__ (= ${binary:Version}) | ghostscript (= ${binary:Version}) | ghostcript-cups (= ${binary:Version}) | ghostcript-x (= ${binary:Version}), ${misc:Depends} Description: interpreter for the PostScript language and for PDF - Debug symbols GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . This package contains the debugging symbols for ghostscript, ghostscript-x, ghostscript-cups and libgs__VER__. debian/ghostscript.links0000644000000000000000000000160611763726276012625 0ustar usr/bin/gs usr/bin/ghostscript usr/bin/ps2ascii usr/bin/ps2txt usr/share/man/de/man1/ps2ps.1.gz usr/share/man/de/man1/eps2eps.1.gz usr/share/man/de/man1/ps2pdf.1.gz usr/share/man/de/man1/ps2pdf12.1.gz usr/share/man/de/man1/ps2pdf.1.gz usr/share/man/de/man1/ps2pdf13.1.gz usr/share/man/de/man1/ps2pdf.1.gz usr/share/man/de/man1/ps2pdf14.1.gz usr/share/man/man1/ps2ps.1.gz usr/share/man/man1/eps2eps.1.gz usr/share/man/man1/gs.1 usr/share/man/man1/ghostscript.1 usr/share/man/man1/gslp.1.gz usr/share/man/man1/gsbj.1.gz usr/share/man/man1/gslp.1.gz usr/share/man/man1/gsdj.1.gz usr/share/man/man1/gslp.1.gz usr/share/man/man1/gsdj500.1.gz usr/share/man/man1/gslp.1.gz usr/share/man/man1/gslj.1.gz usr/share/man/man1/ps2pdf.1.gz usr/share/man/man1/ps2pdf12.1.gz usr/share/man/man1/ps2pdf.1.gz usr/share/man/man1/ps2pdf13.1.gz usr/share/man/man1/ps2pdf.1.gz usr/share/man/man1/ps2pdf14.1.gz debian/symbols.common_linux0000644000000000000000000000003511763726276013326 0ustar gs_realloc@Base 8.61.dfsg.1 debian/compat0000644000000000000000000000000211763726276010405 0ustar 7 debian/libgs-dev.install0000644000000000000000000000005113353157320012430 0ustar usr/include/ghostscript usr/lib/libgs.so debian/copyright_hints0000644000000000000000000022261113244071735012340 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: FIXME Upstream-Contact: FIXME Source: FIXME Disclaimer: Autogenerated by CDBS Files: Makefile.in Resource/CIDFont/ArtifexBullet Resource/ColorSpace/DefaultCMYK Resource/ColorSpace/DefaultGray Resource/ColorSpace/DefaultRGB Resource/ColorSpace/TrivialCMYK Resource/ColorSpace/sGray Resource/ColorSpace/sRGB Resource/Decoding/FCO_Dingbats Resource/Decoding/FCO_Wingdings Resource/Decoding/StandardEncoding Resource/Encoding/CEEncoding Resource/Encoding/ExpertEncoding Resource/Encoding/ExpertSubsetEncoding Resource/Encoding/NotDefEncoding Resource/Encoding/Wingdings Resource/Init/FCOfontmap-PCLPS2 Resource/Init/gs_btokn.ps Resource/Init/gs_cff.ps Resource/Init/gs_cidcm.ps Resource/Init/gs_ciddc.ps Resource/Init/gs_cidfm.ps Resource/Init/gs_cidfn.ps Resource/Init/gs_cidtt.ps Resource/Init/gs_cmap.ps Resource/Init/gs_cspace.ps Resource/Init/gs_dbt_e.ps Resource/Init/gs_diskf.ps Resource/Init/gs_diskn.ps Resource/Init/gs_dpnxt.ps Resource/Init/gs_dps.ps Resource/Init/gs_dps1.ps Resource/Init/gs_dps2.ps Resource/Init/gs_dscp.ps Resource/Init/gs_epsf.ps Resource/Init/gs_fapi.ps Resource/Init/gs_fntem.ps Resource/Init/gs_fonts.ps Resource/Init/gs_frsd.ps Resource/Init/gs_icc.ps Resource/Init/gs_il1_e.ps Resource/Init/gs_init.ps Resource/Init/gs_l2img.ps Resource/Init/gs_lev2.ps Resource/Init/gs_ll3.ps Resource/Init/gs_mex_e.ps Resource/Init/gs_mgl_e.ps Resource/Init/gs_mro_e.ps Resource/Init/gs_pdf_e.ps Resource/Init/gs_pdfwr.ps Resource/Init/gs_resmp.ps Resource/Init/gs_setpd.ps Resource/Init/gs_statd.ps Resource/Init/gs_std_e.ps Resource/Init/gs_trap.ps Resource/Init/gs_ttf.ps Resource/Init/gs_typ32.ps Resource/Init/gs_typ42.ps Resource/Init/gs_type1.ps Resource/Init/gs_wan_e.ps Resource/Init/pdf_base.ps Resource/Init/pdf_draw.ps Resource/Init/pdf_font.ps Resource/Init/pdf_main.ps Resource/Init/pdf_ops.ps Resource/Init/pdf_rbld.ps Resource/SubstCID/CNS1-WMode Resource/SubstCID/GB1-WMode Resource/SubstCID/Japan1-WMode Resource/SubstCID/Korea1-WMode arch/arch_autoconf.h.in arch/windows-arm-msvc.h arch/windows-x64-msvc.h arch/windows-x86-msvc.h base/all-arch.mak base/assert_.h base/bobbin.c base/bobbin.h base/ctype_.h base/dirent_.h base/dos_.h base/echogs.c base/errno_.h base/expat.mak base/fapi_bs.mak base/fapi_ft.c base/fapibstm.c base/fapiufst.c base/fcntl_.h base/freetype.mak base/gconf.c base/gconf.h base/gdbflags.h base/gdebug.h base/gdevabuf.c base/gdevbbox.c base/gdevbbox.h base/gdevdbit.c base/gdevdcrd.c base/gdevdcrd.h base/gdevddrw.c base/gdevddrw.h base/gdevdevn.c base/gdevdevn.h base/gdevdevnprn.h base/gdevdflt.c base/gdevdgbr.c base/gdevdrop.c base/gdevdsha.c base/gdevemap.c base/gdevflp.c base/gdevflp.h base/gdevhit.c base/gdevkrnlsclass.h base/gdevm1.c base/gdevm16.c base/gdevm2.c base/gdevm24.c base/gdevm32.c base/gdevm4.c base/gdevm64.c base/gdevm8.c base/gdevmem.c base/gdevmem.h base/gdevmpla.c base/gdevmpla.h base/gdevmplt.c base/gdevmplt.h base/gdevmr1.c base/gdevmr2n.c base/gdevmr8n.c base/gdevmrop.h base/gdevmrun.c base/gdevmrun.h base/gdevmx.c base/gdevnfwd.c base/gdevoflt.c base/gdevoflt.h base/gdevp14.c base/gdevp14.h base/gdevpccm.c base/gdevpccm.h base/gdevpipe.c base/gdevplnx.c base/gdevplnx.h base/gdevppla.c base/gdevppla.h base/gdevprn.c base/gdevprn.h base/gdevpxat.h base/gdevpxen.h base/gdevpxop.h base/gdevrops.c base/gdevsclass.c base/gdevsclass.h base/gdevvec.c base/gdevvec.h base/gen_ordered.c base/gen_ordered.h base/genarch.c base/genconf.c base/gendev.c base/genht.c base/gp.h base/gp_dosfe.c base/gp_dosfs.c base/gp_dvx.c base/gp_getnv.c base/gp_mktmp.c base/gp_msdll.c base/gp_msdos.c base/gp_mshdl.c base/gp_mslib.c base/gp_mspol.c base/gp_msprn.c base/gp_mswin.c base/gp_mswin.h base/gp_nsync.c base/gp_ntfs.c base/gp_nxpsprn.c base/gp_os2.c base/gp_os2.h base/gp_os2fs.c base/gp_os2pr.c base/gp_os9.c base/gp_paper.c base/gp_psync.c base/gp_stdia.c base/gp_stdin.c base/gp_strdl.c base/gp_sysv.c base/gp_unifn.c base/gp_unifs.c base/gp_unix.c base/gp_upapr.c base/gp_vms.c base/gp_wgetv.c base/gp_win32.c base/gp_wpapr.c base/gp_wsync.c base/gp_wutf8.c base/gp_wxpsprn.cpp base/gpcheck.h base/gpgetenv.h base/gpmisc.c base/gpmisc.h base/gpsync.h base/gs.mak base/gs_dll_call.h base/gs_mgl_e.h base/gs_mro_e.h base/gsalloc.c base/gsalloc.h base/gsalpha.c base/gsalpha.h base/gsalphac.c base/gsalphac.h base/gsargs.c base/gsargs.h base/gsbitcom.c base/gsbitmap.h base/gsbitops.c base/gsbitops.h base/gsbittab.c base/gsbittab.h base/gsccode.h base/gsccolor.h base/gscdef.c base/gscdefs.h base/gscdevn.c base/gscdevn.h base/gscedata.h base/gscencs.c base/gscencs.h base/gschar.c base/gschar.h base/gschar0.c base/gscicach.c base/gscicach.h base/gscie.c base/gscie.h base/gsciemap.c base/gscindex.h base/gsclipsr.c base/gsclipsr.h base/gscms.h base/gscolor.c base/gscolor.h base/gscolor1.c base/gscolor1.h base/gscolor2.c base/gscolor2.h base/gscolor3.c base/gscolor3.h base/gscompt.h base/gscoord.c base/gscoord.h base/gscparam.c base/gscpixel.c base/gscpixel.h base/gscpm.h base/gscrd.c base/gscrd.h base/gscrdp.c base/gscrdp.h base/gscrypt1.c base/gscrypt1.h base/gscscie.c base/gscsel.h base/gscsepr.c base/gscsepr.h base/gscspace.c base/gscspace.h base/gscssub.c base/gscssub.h base/gsdcolor.h base/gsdevice.c base/gsdevice.h base/gsdevmem.c base/gsdfilt.c base/gsdfilt.h base/gsdllwin.h base/gsdparam.c base/gsdpnext.h base/gsdps.c base/gsdps.h base/gsdps1.c base/gsdsrc.c base/gsdsrc.h base/gsequivc.c base/gsequivc.h base/gserrors.h base/gsexit.h base/gsfcid.c base/gsfcid2.c base/gsfcmap.c base/gsfcmap.h base/gsfcmap1.c base/gsflip.c base/gsflip.h base/gsfname.c base/gsfname.h base/gsfont.c base/gsfont.h base/gsfont0.c base/gsfont0c.c base/gsform1.h base/gsfunc.c base/gsfunc.h base/gsfunc0.c base/gsfunc0.h base/gsfunc3.c base/gsfunc3.h base/gsfunc4.c base/gsfunc4.h base/gsgc.h base/gsgcache.c base/gsgcache.h base/gsgdata.c base/gsgdata.h base/gsgstate.c base/gshsb.c base/gshsb.h base/gsht.c base/gsht.h base/gsht1.c base/gsht1.h base/gshtscr.c base/gshtx.c base/gshtx.h base/gsicc.c base/gsicc.h base/gsicc_cache.c base/gsicc_cache.h base/gsicc_cms.h base/gsicc_create.h base/gsicc_lcms.c base/gsicc_lcms2.c base/gsicc_manage.c base/gsicc_manage.h base/gsicc_monitorcm.c base/gsicc_nocm.c base/gsicc_profilecache.c base/gsicc_profilecache.h base/gsicc_replacecm.c base/gsimage.c base/gsimage.h base/gsimpath.c base/gsinit.c base/gsio.h base/gsiodev.c base/gsiodevs.c base/gsiodisk.c base/gsioram.c base/gsiorom.c base/gsiorom.h base/gsipar3x.h base/gsiparam.h base/gsiparm2.h base/gsiparm3.h base/gsiparm4.h base/gsjconf.h base/gsjmorec.h base/gslib.c base/gslib.h base/gslibctx.c base/gslibctx.h base/gsline.c base/gsline.h base/gslparam.h base/gsmalloc.c base/gsmalloc.h base/gsmatrix.c base/gsmatrix.h base/gsmchunk.c base/gsmchunk.h base/gsmdebug.h base/gsmemory.c base/gsmemory.h base/gsmemraw.h base/gsmemret.c base/gsmemret.h base/gsmisc.c base/gsnamecl.c base/gsnamecl.h base/gsncdummy.c base/gsncdummy.h base/gsnogc.c base/gsnogc.h base/gsnotify.c base/gsnotify.h base/gsovrc.c base/gsovrc.h base/gspaint.c base/gspaint.h base/gsparam.c base/gsparam.h base/gsparam2.c base/gsparams.c base/gsparams.h base/gsparamx.c base/gsparamx.h base/gspath.c base/gspath.h base/gspath1.c base/gspath2.h base/gspcolor.c base/gspcolor.h base/gspenum.h base/gspmdrv.c base/gspmdrv.h base/gsptype1.c base/gsptype1.h base/gsptype2.c base/gsptype2.h base/gsrect.h base/gsrefct.h base/gsromfs0.c base/gsrop.c base/gsrop.h base/gsroprun.c base/gsroprun1.h base/gsroprun24.h base/gsroprun8.h base/gsropt.h base/gsroptab.c base/gsserial.c base/gsserial.h base/gsshade.c base/gsshade.h base/gssprintf.h base/gsstate.c base/gsstate.h base/gsstrl.h base/gsstrtok.h base/gsstruct.h base/gsstype.h base/gstext.c base/gstext.h base/gstiffio.c base/gstiffio.h base/gstparam.h base/gstrans.c base/gstrans.h base/gstrap.c base/gstrap.h base/gstype1.c base/gstype1.h base/gstype2.c base/gstypes.h base/gsuid.h base/gsutil.c base/gsutil.h base/gswin.rc base/gsxfont.h base/gx.h base/gxacpath.c base/gxalloc.h base/gxalpha.h base/gxarith.h base/gxband.h base/gxbcache.c base/gxbcache.h base/gxbitfmt.h base/gxbitmap.h base/gxbitops.h base/gxblend.c base/gxblend.h base/gxblend1.c base/gxccache.c base/gxccman.c base/gxcdevn.h base/gxchar.c base/gxchar.h base/gxchrout.c base/gxchrout.h base/gxcht.c base/gxcid.h base/gxcie.h base/gxcindex.h base/gxclbits.c base/gxcldev.h base/gxclfile.c base/gxclimag.c base/gxclio.h base/gxclip.c base/gxclip.h base/gxclip2.c base/gxclip2.h base/gxclipm.c base/gxclipm.h base/gxclipsr.h base/gxclist.c base/gxclist.h base/gxcllzw.c base/gxclmem.c base/gxclmem.h base/gxclpage.c base/gxclpage.h base/gxclpath.c base/gxclpath.h base/gxclrast.c base/gxclread.c base/gxclrect.c base/gxclthrd.c base/gxclthrd.h base/gxclutil.c base/gxclzlib.c base/gxcmap.c base/gxcmap.h base/gxcolor2.h base/gxcomp.h base/gxcoord.h base/gxcpath.c base/gxcpath.h base/gxcspace.h base/gxctable.c base/gxctable.h base/gxcvalue.h base/gxdcconv.c base/gxdcconv.h base/gxdcolor.c base/gxdcolor.h base/gxdda.h base/gxdevbuf.h base/gxdevcli.h base/gxdevice.h base/gxdevmem.h base/gxdevndi.c base/gxdevndi.h base/gxdevrop.h base/gxdevsop.h base/gxdht.h base/gxdhtres.h base/gxdhtserial.c base/gxdhtserial.h base/gxdither.h base/gxdownscale.c base/gxdownscale.h base/gxdtfill.h base/gxfapi.c base/gxfapi.h base/gxfapiu.c base/gxfapiu.h base/gxfarith.h base/gxfcache.h base/gxfcid.h base/gxfcmap.h base/gxfcmap1.h base/gxfill.c base/gxfill.h base/gxfillsl.h base/gxfilltr.h base/gxfillts.h base/gxfixed.h base/gxfmap.h base/gxfont.h base/gxfont0.h base/gxfont0c.h base/gxfont1.h base/gxfont42.h base/gxfrac.h base/gxftype.h base/gxfunc.h base/gxgetbit.h base/gxgstate.h base/gxhintn.c base/gxhintn.h base/gxhintn1.c base/gxhldevc.c base/gxhldevc.h base/gxht.c base/gxht.h base/gxht_thresh.c base/gxht_thresh.h base/gxhtbit.c base/gxhttile.h base/gxhttype.h base/gxi12bit.c base/gxi16bit.c base/gxiclass.h base/gxicolor.c base/gxidata.c base/gxifast.c base/gximag3x.c base/gximag3x.h base/gximage.c base/gximage.h base/gximage1.c base/gximage2.c base/gximage3.c base/gximage3.h base/gximage4.c base/gximask.c base/gximask.h base/gximdecode.c base/gximdecode.h base/gximono.c base/gxiodev.h base/gxiparam.h base/gxipixel.c base/gxiscale.c base/gxline.h base/gxlum.h base/gxmatrix.h base/gxmclip.c base/gxmclip.h base/gxobj.h base/gxoprect.c base/gxoprect.h base/gxp1fill.c base/gxp1impl.h base/gxpaint.c base/gxpaint.h base/gxpath.c base/gxpath.h base/gxpath2.c base/gxpcache.h base/gxpcmap.c base/gxpcolor.h base/gxpcopy.c base/gxpdash.c base/gxpflat.c base/gxrplane.h base/gxsample.c base/gxsample.h base/gxsamplp.h base/gxscanc.c base/gxscanc.h base/gxshade.c base/gxshade.h base/gxshade1.c base/gxshade4.c base/gxshade4.h base/gxshade6.c base/gxstate.h base/gxstdio.h base/gxstroke.c base/gxsync.c base/gxsync.h base/gxtext.h base/gxtmap.h base/gxttf.h base/gxttfb.c base/gxttfb.h base/gxtype1.c base/gxtype1.h base/gxxfont.h base/gzacpath.h base/gzcpath.h base/gzht.h base/gzline.h base/gzpath.h base/gzspotan.c base/gzspotan.h base/gzstate.h base/ijs.mak base/instcopy base/jbig2.mak base/jerror_.h base/jmemcust.c base/jmemcust.h base/jpeg.mak base/jpegxr.mak base/lcms2.mak base/lcups.mak base/lcupsi.mak base/ldf_jb2.mak base/lib.mak base/locale_.h base/lwf_jp2.mak base/malloc_.h base/math_.h base/memento.c base/memento.h base/memory_.h base/mkromfs.c base/msvccmd.mak base/msvclib.mak base/msvctail.mak base/openjpeg.mak base/openvms.mak base/openvms.mmk base/pack_ps.c base/pcwin.mak base/pipe_.h base/png.mak base/png_.h base/ramfs.c base/ramfs.h base/sa85d.c base/sa85d.h base/sa85x.h base/saes.c base/saes.h base/sarc4.c base/sarc4.h base/sbcp.c base/sbcp.h base/sbtx.h base/scanchar.h base/scantab.c base/scf.h base/scfd.c base/scfdgen.c base/scfdtab.c base/scfe.c base/scfetab.c base/scfparam.c base/scfx.h base/scommon.h base/sdcparam.c base/sdcparam.h base/sdct.h base/sdctc.c base/sdctd.c base/sdcte.c base/sddparam.c base/sdeparam.c base/seexec.c base/setjmp_.h base/sfilter.h base/sfilter2.c base/sfxboth.c base/sfxcommon.c base/sfxfd.c base/sfxstdio.c base/shc.c base/shc.h base/sidscale.c base/sidscale.h base/siinterp.c base/siinterp.h base/simscale.c base/simscale.h base/siscale.c base/siscale.h base/sisparam.h base/sjbig2.c base/sjbig2.h base/sjbig2_luratech.c base/sjbig2_luratech.h base/sjpeg.h base/sjpegc.c base/sjpegd.c base/sjpege.c base/sjpx_luratech.c base/sjpx_luratech.h base/sjpx_none.c base/sjpx_openjpeg.c base/sjpx_openjpeg.h base/slzwc.c base/slzwd.c base/slzwe.c base/slzwx.h base/smd5.c base/smd5.h base/smtf.h base/spdiff.c base/spdiffx.h base/spngp.c base/spngpx.h base/spprint.c base/spprint.h base/spsdf.c base/spsdf.h base/srdline.h base/srld.c base/srle.c base/srlx.h base/ssha2.c base/ssha2.h base/sstring.c base/sstring.h base/stat_.h base/std.h base/stdint_.h base/stdio_.h base/stream.c base/stream.h base/strimpl.h base/string_.h base/strmio.c base/strmio.h base/stub.mak base/szlibc.c base/szlibd.c base/szlibe.c base/szlibx.h base/szlibxx.h base/tiff.mak base/time_.h base/ttconf.h base/ttfinp.c base/ttfinp.h base/ttfmain.c base/ttfmemd.c base/ttfmemd.h base/ttfoutl.h base/ttmisc.h base/ugcclib.mak base/unistd_.h base/unix-aux.mak base/unix-dll.mak base/unix-end.mak base/unix-gcc.mak base/unixansi.mak base/unixhead.mak base/unixinst.mak base/unixlink.mak base/valgrind.h base/version.mak base/vms_x_fix.h base/vmsmath.h base/windows_.h base/winlib.mak base/winplat.mak base/winrtsup.cpp base/winrtsup.h base/wrfont.c base/wrfont.h base/write_t1.c base/write_t1.h base/write_t2.c base/write_t2.h base/x_.h base/zlib.mak configure.ac devices/contrib.mak devices/devs.mak devices/gdev3852.c devices/gdev4081.c devices/gdev8510.c devices/gdev8bcm.c devices/gdev8bcm.h devices/gdevatx.c devices/gdevbit.c devices/gdevbj10.c devices/gdevbjcl.c devices/gdevbjcl.h devices/gdevbmp.c devices/gdevbmp.h devices/gdevbmpc.c devices/gdevccr.c devices/gdevcfax.c devices/gdevcif.c devices/gdevclj.c devices/gdevcljc.c devices/gdevcmykog.c devices/gdevcp50.c devices/gdevcslw.c devices/gdevdfax.c devices/gdevdjet.c devices/gdevdjtc.c devices/gdevdljm.c devices/gdevdljm.h devices/gdevdm24.c devices/gdevdsp.c devices/gdevdsp.h devices/gdevdsp2.h devices/gdevepsc.c devices/gdevepsn.c devices/gdevescp.c devices/gdevfax.c devices/gdevfax.h devices/gdevfpng.c devices/gdevgprf.c devices/gdevhl7x.c devices/gdevimgn.c devices/gdevjbig2.c devices/gdevjpeg.c devices/gdevjpx.c devices/gdevl31s.c devices/gdevlbp8.c devices/gdevlj56.c devices/gdevlp8k.c devices/gdevlxm.c devices/gdevmeds.c devices/gdevmeds.h devices/gdevmgr.c devices/gdevmgr.h devices/gdevmiff.c devices/gdevn533.c devices/gdevo182.c devices/gdevokii.c devices/gdevpbm.c devices/gdevpcl.c devices/gdevpcl.h devices/gdevpcx.c devices/gdevpe.c devices/gdevperm.c devices/gdevphex.c devices/gdevpjet.c devices/gdevplan.c devices/gdevplib.c devices/gdevplib.h devices/gdevpm.h devices/gdevpng.c devices/gdevpsd.c devices/gdevpsd.h devices/gdevpsim.c devices/gdevpxut.h devices/gdevrinkj.c devices/gdevsj48.c devices/gdevsnfb.c devices/gdevsppr.c devices/gdevstc.c devices/gdevstc.h devices/gdevstc1.c devices/gdevstc2.c devices/gdevstc3.c devices/gdevstc4.c devices/gdevtfax.c devices/gdevtfax.h devices/gdevtfnx.c devices/gdevtifs.c devices/gdevtifs.h devices/gdevtknk.c devices/gdevtrac.c devices/gdevtsep.c devices/gdevupd.c devices/gdevwpr2.c devices/gdevx.c devices/gdevx.h devices/gdevxalt.c devices/gdevxcf.c devices/gdevxcmp.c devices/gdevxcmp.h devices/gdevxini.c devices/gdevxres.c devices/gxfcopy.c devices/gxfcopy.h devices/minftrsz.c devices/minftrsz.h devices/rinkj/evenbetter-rll.c devices/rinkj/evenbetter-rll.h devices/rinkj/rinkj-byte-stream.c devices/rinkj/rinkj-byte-stream.h devices/rinkj/rinkj-config.c devices/rinkj/rinkj-config.h devices/rinkj/rinkj-device.c devices/rinkj/rinkj-device.h devices/rinkj/rinkj-dither.c devices/rinkj/rinkj-dither.h devices/rinkj/rinkj-epson870.c devices/rinkj/rinkj-epson870.h devices/rinkj/rinkj-screen-eb.c devices/rinkj/rinkj-screen-eb.h devices/vector/gdevagl.h devices/vector/gdevpdf.c devices/vector/gdevpdfb.c devices/vector/gdevpdfb.h devices/vector/gdevpdfc.c devices/vector/gdevpdfc.h devices/vector/gdevpdfd.c devices/vector/gdevpdfe.c devices/vector/gdevpdfg.c devices/vector/gdevpdfg.h devices/vector/gdevpdfi.c devices/vector/gdevpdfj.c devices/vector/gdevpdfm.c devices/vector/gdevpdfo.c devices/vector/gdevpdfo.h devices/vector/gdevpdfp.c devices/vector/gdevpdfr.c devices/vector/gdevpdft.c devices/vector/gdevpdfu.c devices/vector/gdevpdfv.c devices/vector/gdevpdfx.h devices/vector/gdevpdt.c devices/vector/gdevpdt.h devices/vector/gdevpdtb.c devices/vector/gdevpdtb.h devices/vector/gdevpdtc.c devices/vector/gdevpdtd.c devices/vector/gdevpdtd.h devices/vector/gdevpdte.c devices/vector/gdevpdtf.c devices/vector/gdevpdtf.h devices/vector/gdevpdti.c devices/vector/gdevpdti.h devices/vector/gdevpdts.c devices/vector/gdevpdts.h devices/vector/gdevpdtt.c devices/vector/gdevpdtt.h devices/vector/gdevpdtv.c devices/vector/gdevpdtv.h devices/vector/gdevpdtw.c devices/vector/gdevpdtw.h devices/vector/gdevpdtx.h devices/vector/gdevpsdf.h devices/vector/gdevpsdi.c devices/vector/gdevpsdp.c devices/vector/gdevpsds.c devices/vector/gdevpsds.h devices/vector/gdevpsdu.c devices/vector/gdevpsf.h devices/vector/gdevpsf2.c devices/vector/gdevpsfm.c devices/vector/gdevpsft.c devices/vector/gdevpsfu.c devices/vector/gdevpsfx.c devices/vector/gdevpsu.h devices/vector/gdevpx.c devices/vector/gdevtxtw.c devices/vector/gdevxps.c devices/vector/opdfread.ps devices/vector/whitelst.c devices/vector/whitelst.h doc/gdevds32.c gpdl/gpdl.mak gpdl/psi/gpdlpsi.mak gpdl/psi/psitop.c gpdl/pspcl6_gcc.mak gpdl/pspcl6_msvc.mak lib/FCOfontmap-PCLPS3 lib/FCOfontmap-PS3 lib/Fontmap.ATB lib/Fontmap.Ult lib/align.ps lib/caption.ps lib/cat.ps lib/cid2code.ps lib/docie.ps lib/gs_ce_e.ps lib/gs_cmdl.ps lib/gs_il2_e.ps lib/gs_kanji.ps lib/gs_ksb_e.ps lib/gs_lgo_e.ps lib/gs_lgx_e.ps lib/gs_wl1_e.ps lib/gs_wl2_e.ps lib/gs_wl5_e.ps lib/gslp.ps lib/gsnup.ps lib/image-qa.ps lib/jispaper.ps lib/lines.ps lib/mkcidfm.ps lib/pfbtopfa.ps lib/ppath.ps lib/pphs.ps lib/ps2epsi.ps lib/rollconv.ps lib/stcinfo.ps lib/stcolor.ps lib/stocht.ps lib/traceimg.ps lib/traceop.ps lib/uninfo.ps lib/viewcmyk.ps lib/viewgif.ps lib/viewmiff.ps lib/viewpbm.ps lib/viewpcx.ps lib/viewps2a.ps lib/viewraw.ps lib/viewrgb.ps lib/winmaps.ps lib/zeroline.ps pcl/pcl/pcbiptrn.c pcl/pcl/pcbiptrn.h pcl/pcl/pccid.c pcl/pcl/pccid.h pcl/pcl/pccolor.c pcl/pcl/pccoord.h pcl/pcl/pccprint.c pcl/pcl/pccsbase.c pcl/pcl/pccsbase.h pcl/pcl/pcdict.h pcl/pcl/pcdither.c pcl/pcl/pcdither.h pcl/pcl/pcdraw.c pcl/pcl/pcdraw.h pcl/pcl/pcfont.c pcl/pcl/pcfontpg.c pcl/pcl/pcfontst.h pcl/pcl/pcfrgrnd.c pcl/pcl/pcfrgrnd.h pcl/pcl/pcfsel.c pcl/pcl/pcfsel.h pcl/pcl/pcht.c pcl/pcl/pcht.h pcl/pcl/pcident.c pcl/pcl/pcident.h pcl/pcl/pcimpl.c pcl/pcl/pcindxed.c pcl/pcl/pcindxed.h pcl/pcl/pcjob.c pcl/pcl/pcl.mak pcl/pcl/pcl_top.mak pcl/pcl/pclookup.c pcl/pcl/pclookup.h pcl/pcl/pcmacros.c pcl/pcl/pcmisc.c pcl/pcl/pcmtx3.c pcl/pcl/pcmtx3.h pcl/pcl/pcommand.c pcl/pcl/pcommand.h pcl/pcl/pcpage.c pcl/pcl/pcpage.h pcl/pcl/pcpalet.c pcl/pcl/pcpalet.h pcl/pcl/pcparam.h pcl/pcl/pcparse.c pcl/pcl/pcparse.h pcl/pcl/pcpatrn.c pcl/pcl/pcpatrn.h pcl/pcl/pcpattyp.h pcl/pcl/pcpatxfm.c pcl/pcl/pcpatxfm.h pcl/pcl/pcrect.c pcl/pcl/pcsfont.c pcl/pcl/pcstate.h pcl/pcl/pcstatus.c pcl/pcl/pcsymbol.c pcl/pcl/pcsymbol.h pcl/pcl/pctext.c pcl/pcl/pctop.c pcl/pcl/pctop.h pcl/pcl/pctpm.h pcl/pcl/pcuptrn.c pcl/pcl/pcuptrn.h pcl/pcl/pcursor.c pcl/pcl/pcursor.h pcl/pcl/pcwhtidx.c pcl/pcl/pcwhtidx.h pcl/pcl/pcxfmst.h pcl/pcl/pgchar.c pcl/pcl/pgcolor.c pcl/pcl/pgconfig.c pcl/pcl/pgdraw.c pcl/pcl/pgdraw.h pcl/pcl/pgfdata.c pcl/pcl/pgfdata.h pcl/pcl/pgfont.c pcl/pcl/pgfont.h pcl/pcl/pgframe.c pcl/pcl/pggeom.c pcl/pcl/pggeom.h pcl/pcl/pginit.c pcl/pcl/pginit.h pcl/pcl/pglabel.c pcl/pcl/pglfill.c pcl/pcl/pgmand.h pcl/pcl/pgmisc.c pcl/pcl/pgmisc.h pcl/pcl/pgparse.c pcl/pcl/pgpoly.c pcl/pcl/pgstate.h pcl/pcl/pgvector.c pcl/pcl/rtgmode.c pcl/pcl/rtgmode.h pcl/pcl/rtmisc.c pcl/pcl/rtmisc.h pcl/pcl/rtraster.c pcl/pcl/rtraster.h pcl/pcl/rtrstcmp.c pcl/pcl/rtrstcmp.h pcl/pcl/rtrstst.h pcl/pl/pjparse.c pcl/pl/pjparse.h pcl/pl/pjparsei.c pcl/pl/pjtop.c pcl/pl/pjtop.h pcl/pl/pl.mak pcl/pl/plalloc.c pcl/pl/plapi.c pcl/pl/plapi.h pcl/pl/plchar.c pcl/pl/plchar.h pcl/pl/plcursor.c pcl/pl/plcursor.h pcl/pl/pldebug.h pcl/pl/pldict.c pcl/pl/pldict.h pcl/pl/pldraw.c pcl/pl/pldraw.h pcl/pl/plfapi.c pcl/pl/plfapi.h pcl/pl/plfont.c pcl/pl/plfont.h pcl/pl/plftable.c pcl/pl/plftable.h pcl/pl/plht.c pcl/pl/plht.h pcl/pl/plimpl.c pcl/pl/pllfont.c pcl/pl/pllfont.h pcl/pl/plmain.c pcl/pl/plmain.h pcl/pl/plparams.c pcl/pl/plparams.h pcl/pl/plparse.h pcl/pl/plromfs.mak pcl/pl/plsymbol.c pcl/pl/plsymbol.h pcl/pl/pltop.c pcl/pl/pltop.h pcl/pl/pluchar.c pcl/pl/plufont.c pcl/pl/plufstlp.c pcl/pl/plufstlp.h pcl/pl/plufstlp1.c pcl/pl/plulfont.c pcl/pl/plvalue.c pcl/pl/plvalue.h pcl/pl/plvocab.h pcl/pl/plwimg.c pcl/pl/plwimg.h pcl/pl/plwmainc.c pcl/pl/plwreg.c pcl/pl/plwreg.h pcl/pl/plwres.h pcl/pl/realmain.c pcl/pxl/pxasm.ps pcl/pxl/pxattr.h pcl/pxl/pxbfont.c pcl/pxl/pxbfont.h pcl/pxl/pxcet.txt pcl/pxl/pxdict.h pcl/pxl/pxenum.h pcl/pxl/pxerrors.c pcl/pxl/pxerrors.h pcl/pxl/pxffont.c pcl/pxl/pxfont.c pcl/pxl/pxfont.h pcl/pxl/pxfts.txt pcl/pxl/pxgstate.c pcl/pxl/pxgstate.h pcl/pxl/pximage.c pcl/pxl/pximpl.c pcl/pxl/pxink.c pcl/pxl/pxl.mak pcl/pxl/pxlib.txt pcl/pxl/pxoper.h pcl/pxl/pxpaint.c pcl/pxl/pxparse.c pcl/pxl/pxparse.h pcl/pxl/pxptable.c pcl/pxl/pxptable.h pcl/pxl/pxpthr.c pcl/pxl/pxpthr.h pcl/pxl/pxsessio.c pcl/pxl/pxspec.txt pcl/pxl/pxstate.c pcl/pxl/pxstate.h pcl/pxl/pxstream.c pcl/pxl/pxsymbol.psh pcl/pxl/pxtag.h pcl/pxl/pxtop.c pcl/pxl/pxvalue.c pcl/pxl/pxvalue.h pcl/pxl/pxvendor.c pcl/pxl/pxvendor.h pcl/tools/suite.tcl psi/bfont.h psi/btoken.h psi/dmmain.c psi/dpmain.c psi/dscparse.c psi/dscparse.h psi/dstack.h psi/dwdll.c psi/dwdll.h psi/dwimg.c psi/dwimg.h psi/dwmain.c psi/dwmain.rc psi/dwmainc.c psi/dwnodll.c psi/dwreg.c psi/dwreg.h psi/dwres.h psi/dwtext.c psi/dwtext.h psi/dwtrace.c psi/dwtrace.h psi/dxmain.c psi/dxmainc.c psi/estack.h psi/files.h psi/ghost.h psi/gs.c psi/gsdll2.rc psi/gsdll32.rc psi/gserver.c psi/gsos2.rc psi/ialloc.c psi/ialloc.h psi/iapi.c psi/iapi.h psi/iastate.h psi/iastruct.h psi/ibnum.c psi/ibnum.h psi/ichar.h psi/ichar1.h psi/icharout.h psi/icid.h psi/icie.h psi/icolor.h psi/iconf.c psi/iconf.h psi/icontext.c psi/icontext.h psi/icremap.h psi/icsmap.h psi/icstate.h psi/iddict.h psi/iddstack.h psi/idebug.c psi/idebug.h psi/idict.c psi/idict.h psi/idictdef.h psi/idicttpl.h psi/idisp.c psi/idisp.h psi/idosave.h psi/idparam.c psi/idparam.h psi/idsdata.h psi/idstack.c psi/idstack.h psi/ierrors.h psi/iesdata.h psi/iestack.h psi/ifapi.h psi/ifcid.h psi/ifilter.h psi/ifilter2.h psi/ifont.h psi/ifont1.h psi/ifont2.h psi/ifont42.h psi/ifrpred.h psi/ifunc.h psi/ifwpred.h psi/igc.c psi/igc.h psi/igcref.c psi/igcstr.c psi/igcstr.h psi/igstate.h psi/iht.h psi/iimage.h psi/iimage2.h psi/iinit.c psi/iinit.h psi/ilevel.h psi/ilocate.c psi/imain.c psi/imain.h psi/imainarg.c psi/imainarg.h psi/imemory.h psi/iname.c psi/iname.h psi/inamedef.h psi/inameidx.h psi/inames.h psi/inamestr.h psi/inobtokn.c psi/inouparm.c psi/int.mak psi/interp.c psi/interp.h psi/iosdata.h psi/iostack.h psi/ipacked.h psi/iparam.c psi/iparam.h psi/iparray.h psi/ipcolor.h psi/iplugin.c psi/iplugin.h psi/ireclaim.c psi/isave.c psi/isave.h psi/iscan.c psi/iscan.h psi/iscanbin.c psi/iscanbin.h psi/iscannum.c psi/iscannum.h psi/isdata.h psi/isstate.h psi/istack.c psi/istack.h psi/istkparm.h psi/istream.h psi/istruct.h psi/itoken.h psi/iutil.c psi/iutil.h psi/iutil2.c psi/iutil2.h psi/ivmem2.h psi/ivmspace.h psi/main.h psi/mkfilelt.cpp psi/msvc.mak psi/msvc32.mak psi/msvc64.mak psi/nsisinst.nsi psi/oparc.h psi/opcheck.h psi/opdef.h psi/oper.h psi/opextern.h psi/os2.mak psi/ostack.h psi/psromfs.mak psi/sfilter1.c psi/store.h psi/winint.mak psi/zalg.c psi/zarith.c psi/zarray.c psi/zbfont.c psi/zbseq.c psi/zcfont.c psi/zchar.c psi/zchar1.c psi/zchar2.c psi/zchar32.c psi/zchar42.c psi/zchar42.h psi/zcharout.c psi/zcharx.c psi/zcid.c psi/zcie.c psi/zcie.h psi/zcolor.c psi/zcolor.h psi/zcolor1.c psi/zcolor2.c psi/zcolor3.c psi/zcontext.c psi/zcontrol.c psi/zcrd.c psi/zcsindex.c psi/zcspixel.c psi/zcssepr.c psi/zdevcal.c psi/zdevice.c psi/zdevice2.c psi/zdfilter.c psi/zdict.c psi/zdouble.c psi/zdpnext.c psi/zdps.c psi/zdps1.c psi/zdscpars.c psi/zfaes.c psi/zfapi.c psi/zfarc4.c psi/zfbcp.c psi/zfcid.c psi/zfcid0.c psi/zfcid1.c psi/zfcmap.c psi/zfdctd.c psi/zfdcte.c psi/zfdecode.c psi/zfile.c psi/zfile.h psi/zfile1.c psi/zfileio.c psi/zfilter.c psi/zfilter2.c psi/zfimscale.c psi/zfjbig2.c psi/zfjpx.c psi/zfmd5.c psi/zfont.c psi/zfont0.c psi/zfont1.c psi/zfont32.c psi/zfont42.c psi/zfontenum.c psi/zform.c psi/zfproc.c psi/zfrsd.c psi/zfrsd.h psi/zfsample.c psi/zfsha2.c psi/zfunc.c psi/zfunc.h psi/zfunc0.c psi/zfunc3.c psi/zfunc4.c psi/zfzlib.c psi/zgeneric.c psi/zgstate.c psi/zhsb.c psi/zht.c psi/zht1.c psi/zht2.c psi/zht2.h psi/zicc.c psi/zicc.h psi/zimage.c psi/zimage2.c psi/zimage3.c psi/ziodev.c psi/ziodev2.c psi/ziodevs.c psi/ziodevsc.c psi/zmath.c psi/zmatrix.c psi/zmedia2.c psi/zmisc.c psi/zmisc1.c psi/zmisc2.c psi/zmisc3.c psi/zncdummy.c psi/zpacked.c psi/zpaint.c psi/zpath.c psi/zpath1.c psi/zpcolor.c psi/zpdf_r6.c psi/zpdfops.c psi/zrelbit.c psi/zshade.c psi/zstack.c psi/zstring.c psi/zsysvm.c psi/ztoken.c psi/ztrans.c psi/ztrap.c psi/ztype.c psi/zupath.c psi/zusparam.c psi/zutf8.c psi/zvmem.c psi/zvmem2.c psi/zwinutf8.c toolbin/GenSubstCID.ps toolbin/afmutil.py toolbin/color/icc_creator/ICC_Creator/CIELAB.h toolbin/color/icc_creator/ICC_Creator/ICC_Creator.cpp toolbin/color/icc_creator/ICC_Creator/ICC_Creator.h toolbin/color/icc_creator/ICC_Creator/ICC_CreatorDlg.cpp toolbin/color/icc_creator/ICC_Creator/ICC_CreatorDlg.h toolbin/color/icc_creator/ICC_Creator/icc_create.h toolbin/color/icc_creator/README.txt toolbin/errlist.tcl toolbin/extractFonts.ps toolbin/extractICCprofiles.ps toolbin/genfontmap.ps toolbin/gitlog2changelog.py toolbin/gsmake.tcl toolbin/halftone/gen_ordered/README toolbin/halftone/gen_ordered/gen_ordered_main.c toolbin/halftone/gen_stochastic/gen_stochastic.c toolbin/jpxtopdf.c toolbin/leaks.tcl toolbin/makehist.tcl toolbin/memory.py toolbin/ocheck.py toolbin/pdf_info.ps toolbin/pre.tcl toolbin/precheck.tcl toolbin/split_changelog.py toolbin/suite.tcl toolbin/tests/build_revision.py toolbin/tests/check_all.py toolbin/tests/check_comments.py toolbin/tests/check_dirs.py toolbin/tests/check_docrefs.py toolbin/tests/check_source.py toolbin/tests/cmpi.py toolbin/tests/compare_checksumdb.py toolbin/tests/compare_checksums.py toolbin/tests/dump_checksum.py toolbin/tests/dump_checksum_plus.py toolbin/tests/dump_checksum_raw.py toolbin/tests/fuzzy.c toolbin/tests/get_baseline_log.py toolbin/tests/get_baselines.py toolbin/tests/gscheck_all.py toolbin/tests/gscheck_fuzzypdf.py toolbin/tests/gscheck_pdfwrite.py toolbin/tests/gscheck_raster.py toolbin/tests/gscheck_testfiles.py toolbin/tests/gsconf.py toolbin/tests/gsparamsets.py toolbin/tests/gssum.py toolbin/tests/gstestgs.py toolbin/tests/gstestutils.py toolbin/tests/gsutil.py toolbin/tests/make_baselinedb.py toolbin/tests/make_testdb.py toolbin/tests/make_two_pdfversions toolbin/tests/make_two_versions toolbin/tests/myoptparse.py toolbin/tests/rasterdb.py toolbin/tests/revert_baseline toolbin/tests/revert_pdfbaseline toolbin/tests/run_nightly.py toolbin/tests/run_parallel toolbin/tests/run_regression.py toolbin/tests/testdiff.py toolbin/tests/update_baseline.py toolbin/tests/update_specific toolbin/tmake.tcl xps/ghostxps.h xps/xps.mak xps/xpsanalyze.c xps/xpscff.c xps/xpscolor.c xps/xpscommon.c xps/xpscrc.c xps/xpsdoc.c xps/xpsfapi.c xps/xpsfapi.h xps/xpsfont.c xps/xpsglyphs.c xps/xpsgradient.c xps/xpshash.c xps/xpsimage.c xps/xpsjpeg.c xps/xpsjxr.c xps/xpsmem.c xps/xpsopacity.c xps/xpspage.c xps/xpspath.c xps/xpspng.c xps/xpsresource.c xps/xpsromfs.mak xps/xpstiff.c xps/xpstile.c xps/xpstop.c xps/xpsttf.c xps/xpsutf.c xps/xpsvisual.c xps/xpsxml.c xps/xpszip.c Copyright: 2001-2006, Artifex Software, Inc. 2001-2012, Artifex Software, Inc. 2001-2013, Artifex Software, Inc. 2001-2014, Artifex Software, Inc. 2001-2015, Artifex Software, Inc. 2001-2016, Artifex Software, Inc. 2001-2017, Artifex Software, Inc. 2009-2016, Artifex Software, Inc. 2010-2012, Artifex Software, Inc. 2013, Artifex Software, Inc. 2014-2015, Artifex Software, Inc. 2016, Artifex Software, Inc. 2017, Artifex Software, Inc. License: UNKNOWN FIXME Files: Resource/IdiomSet/Pscript5Idiom Resource/Init/FAPIcidfmap Resource/Init/FAPIconfig Resource/Init/FAPIfontmap Resource/Init/Fontmap Resource/Init/cidfmap Resource/Init/gs_cet.ps Resource/Init/xlatmap arch/osx-x86-x86_64-ppc-gcc.h autogen.sh base/append_l.com base/bcc32.cfg base/catmake base/claptrap-impl.h base/copy_one.com base/cp.bat base/cp.cmd base/ets.h base/ets_tm.h base/gdevkrnlsclass.c base/gspmdrv.def base/gspmdrv.icx base/gswin.icx base/gswin16.icx base/gswin32.rc base/mv.bat base/mv.cmd base/rm.bat base/rm.cmd base/rm_all.com base/rm_one.com contrib/chp2200/AUTHORS contrib/chp2200/INSTALL contrib/epson740/README contrib/epson740/printerdb_rh5.2 contrib/epson740/printerdb_rh6.0 contrib/epson740/ps-to-printer.fpi_rh5.2 contrib/epson740/upp-HowTo-to-be contrib/gdevcd8.h contrib/gdevgdi.c contrib/japanese/dmp_site.ps contrib/japanese/doc/Gdevlips.htm contrib/japanese/doc/dj505j.txt contrib/japanese/doc/gdevalps.txt contrib/japanese/doc/gdevj100.txt contrib/japanese/doc/gdevlbp3.txt contrib/japanese/doc/gdevmd2k.txt contrib/japanese/doc/gdevp201.txt contrib/japanese/escp_24.src contrib/japanese/gdevlbp3.c contrib/japanese/gdevmjc.h contrib/lxm3200-tweaked/README contrib/lxm3200-tweaked/Z12-Z31-QuickSetup contrib/md2k_md5k/README.jis contrib/opvp/opvp_media.def contrib/pcl3/doc/notes.bbl contrib/pcl3/pcl3.tar.sig contrib/pcl3/src/contrib.mak-5.50.add contrib/pcl3/src/contrib.mak-6.01.add contrib/pcl3/src/contrib.mak-6.50.add contrib/pcl3/src/contrib.mak-6.51.add contrib/pcl3/src/contrib.mak-7.00.add contrib/pcl3/src/zmedia2.c-5.50.diff contrib/pcl3/src/zmedia2.c-6.01.diff contrib/pcl3/src/zmedia2.c-6.50.diff contrib/pcl3/src/zmedia2.c-6.51.diff contrib/pcl3/src/zmedia2.c-7.00.diff contrib/pscolor/Makefile contrib/pscolor/black.pdf contrib/pscolor/color.pdf contrib/pscolor/colorsplit.vcproj contrib/pscolor/common.mak contrib/pscolor/instream.yy contrib/pscolor/test.c contrib/pscolor/windows.mak contrib/uniprint/PM760p.upp contrib/uniprint/PM760pl.upp contrib/uniprint/PM820p.upp contrib/uniprint/PM820pl.upp contrib/uniprint/Stc670p.upp contrib/uniprint/Stc670pl.upp contrib/uniprint/Stc680p.upp contrib/uniprint/Stc680pl.upp contrib/uniprint/Stc740p.upp contrib/uniprint/Stc740pl.upp contrib/uniprint/Stc760p.upp contrib/uniprint/Stc760pl.upp contrib/uniprint/Stc777p.upp contrib/uniprint/Stc777pl.upp contrib/uniprint/Stp720p.upp contrib/uniprint/Stp720pl.upp contrib/uniprint/Stp870p.upp contrib/uniprint/Stp870pl.upp contrib/uniprint/bjc6000a1.upp contrib/uniprint/bjc6000b1.upp contrib/uniprint/s400a1.upp contrib/uniprint/s400b1.upp contrib/uniprint/sharp.upp contrib/uniprint/sipixa6.upp contrib/uniprint/stc740ih.upp debian/README.Debian debian/README.source debian/TODO debian/compat debian/control debian/control.in debian/control.in.in debian/gbp.conf debian/ghostscript-doc.doc-base debian/ghostscript-doc.install debian/ghostscript-x.install debian/ghostscript.dirs debian/ghostscript.install debian/ghostscript.links debian/ghostscript.postinst debian/ghostscript.preinst debian/ghostscript.prerm debian/libgs__VER__-common.dirs.in debian/libgs__VER__-common.install.in debian/libgs__VER__-common.links.in debian/patches/2001_docdir_fix_for_debian.patch debian/patches/2002_gs_man_fix_debian.patch debian/patches/2003_support_multiarch.patch debian/patches/2004_remove_non-Debian_paths_from_docs.patch debian/patches/2005_fix_Debian_paths_in_docs.patch debian/patches/2006_suggest_install_ghostscript-doc_in_docs.patch debian/patches/2007_suggest_install_ghostscript-doc_in_code.patch debian/patches/2008_mention_ghostscript-x_in_docs.patch debian/patches/2010_add_build_timestamp_setting.patch debian/patches/README debian/patches/series debian/source/format debian/watch doc/AUTHORS doc/GS9_Color_Management.pdf doc/gs-vms.hlp doc/gs.css doc/gsdoc.el doc/index.html doc/pclxps/Makefile doc/pclxps/README doc/pclxps/ghostpdl.pdf doc/pscet_status.txt doc/who_owns_what.txt examples/alphabet.ps examples/annots.pdf examples/cjk/article9.ps examples/colorcir.ps examples/doretree.ps examples/escher.ps examples/golfer.eps examples/grayalph.ps examples/ridt91.eps examples/snowflak.ps examples/text_graph_image_cmyk_rgb.pdf examples/text_graphic_image.pdf examples/tiger.eps examples/transparency_example.ps examples/vasarely.ps lib/FAPIconfig-FCO lib/Fontmap.OSF lib/Info-macos.plist lib/PDFA_def.ps lib/PDFX_def.ps lib/acctest.ps lib/bj8.rpd lib/bj8gc12f.upp lib/bj8hg12f.upp lib/bj8oh06n.upp lib/bj8pa06n.upp lib/bj8pp12f.upp lib/bj8ts06n.upp lib/bjc610a0.upp lib/bjc610a1.upp lib/bjc610a2.upp lib/bjc610a3.upp lib/bjc610a4.upp lib/bjc610a5.upp lib/bjc610a6.upp lib/bjc610a7.upp lib/bjc610a8.upp lib/bjc610b1.upp lib/bjc610b2.upp lib/bjc610b3.upp lib/bjc610b4.upp lib/bjc610b6.upp lib/bjc610b7.upp lib/bjc610b8.upp lib/cdj550.upp lib/cdj690.upp lib/cdj690ec.upp lib/dnj750c.upp lib/dnj750m.upp lib/dvipdf lib/eps2eps lib/eps2eps.bat lib/eps2eps.cmd lib/ghostpdf.README lib/ghostpdf.inf lib/gs_l.xbm lib/gs_l.xpm lib/gs_l_m.xbm lib/gs_m.xbm lib/gs_m.xpm lib/gs_m_m.xbm lib/gs_s.xbm lib/gs_s.xpm lib/gs_s_m.xbm lib/gs_t.xbm lib/gs_t.xpm lib/gs_t_m.xbm lib/gsbj lib/gsbj.bat lib/gsdj lib/gsdj.bat lib/gsdj500 lib/gsdj500.bat lib/gslj lib/gslj.bat lib/gslp lib/gslp.bat lib/gsnd lib/gsnd.bat lib/gsndt.bat lib/gssetgs.bat lib/gssetgs32.bat lib/gssetgs64.bat lib/gst.bat lib/gstt.bat lib/jobseparator.ps lib/landscap.ps lib/lp386.bat lib/lp386r2.bat lib/lpgs.bat lib/lpr2.bat lib/lprsetup.sh lib/necp2x.upp lib/necp2x6.upp lib/pdf2dsc lib/pdf2dsc.bat lib/pdf2ps lib/pdf2ps.bat lib/pdf2ps.cmd lib/pf2afm lib/pf2afm.bat lib/pf2afm.cmd lib/pfbtopfa lib/pfbtopfa.bat lib/pphs lib/printafm lib/ps2ascii lib/ps2ascii.bat lib/ps2ascii.cmd lib/ps2epsi lib/ps2epsi.bat lib/ps2epsi.cmd lib/ps2pdf lib/ps2pdf.bat lib/ps2pdf.cmd lib/ps2pdf12 lib/ps2pdf12.bat lib/ps2pdf12.cmd lib/ps2pdf13 lib/ps2pdf13.bat lib/ps2pdf13.cmd lib/ps2pdf14 lib/ps2pdf14.bat lib/ps2pdf14.cmd lib/ps2pdfwr lib/ps2pdfxx.bat lib/ps2ps lib/ps2ps.bat lib/ps2ps.cmd lib/ps2ps2 lib/ps2ps2.bat lib/ps2ps2.cmd lib/ras1.upp lib/ras24.upp lib/ras3.upp lib/ras32.upp lib/ras4.upp lib/ras8m.upp lib/rinkj-2200-setup lib/st640ih.upp lib/st640ihg.upp lib/st640p.upp lib/st640pg.upp lib/st640pl.upp lib/st640plg.upp lib/stc.upp lib/stc1520h.upp lib/stc2.upp lib/stc200_h.upp lib/stc2_h.upp lib/stc2s_h.upp lib/stc300.upp lib/stc300bl.upp lib/stc300bm.upp lib/stc500p.upp lib/stc500ph.upp lib/stc600ih.upp lib/stc600p.upp lib/stc600pl.upp lib/stc640p.upp lib/stc800ih.upp lib/stc800p.upp lib/stc800pl.upp lib/stc_h.upp lib/stc_l.upp lib/stcany.upp lib/stcany_h.upp lib/unix-lpr.sh lib/wmakebat.bat man/de/dvipdf.1 man/de/font2c.1 man/de/gsnd.1 man/de/pdf2dsc.1 man/de/pdf2ps.1 man/de/printafm.1 man/de/ps2ascii.1 man/de/ps2pdf.1 man/de/ps2ps.1 man/de/wftopfa.1 man/dvipdf.1 man/eps2eps.1 man/font2c.1 man/gs.1 man/gslp.1 man/gsnd.1 man/pdf2dsc.1 man/pdf2ps.1 man/pf2afm.1 man/pfbtopfa.1 man/printafm.1 man/ps2ascii.1 man/ps2epsi.1 man/ps2pdf.1 man/ps2pdfwr.1 man/ps2ps.1 man/wftopfa.1 pcl/NEWS pcl/README.txt pcl/examples/label.tst pcl/pcl/Anomalies.txt pcl/pl/gpcl6dll32.def pcl/pl/gpcl6dll64.def pcl/pl/gpdldll32.def pcl/pl/gpdldll64.def pcl/pl/gxpsdll32.def pcl/pl/gxpsdll64.def pcl/pxl/pxasm.bat pcl/tools/cat_url.py pcl/tools/check_deps.py pcl/tools/docov.pl pcl/tools/gl2_chars.pl pcl/tools/make_snapshot.sh pcl/tools/makeromttf.py pcl/tools/pcl2pdf pcl/tools/pcl2pdf.bat pcl/tools/pcl2pdfwr pcl/tools/pcl2pdfwr.bat pcl/tools/plot2pdf.sh pcl/tools/regress.sh pcl/tools/revlist.py pcl/tools/smoke_baseline.txt pcl/tools/smoke_check.sh pcl/tools/smoke_update.sh pcl/tools/tt2pcl.c psi/apitest.c psi/dw32c.def psi/dw64c.def psi/dwmain32.def psi/dwmain64.def psi/dwsetup.def psi/dwsetup_x64.manifest psi/dwsetup_x86.manifest psi/dwuninst.def psi/dwuninst_x64.manifest psi/dwuninst_x86.manifest psi/gsdll2.def psi/gsdll32.def psi/gsdll32metro.def psi/gsdll32w.lnk psi/gsdll64.def psi/gsdll64metro.def psi/gsdllARM32metro.def psi/gsos2.def psi/gsos2.icx toolbin/apitest.pl toolbin/bmpcmp.c toolbin/bugsByEngineer.pl toolbin/checkdeps.pl toolbin/color/icc_creator/ICC_Creator.sln toolbin/color/icc_creator/ICC_Creator/ICC_Creator.vcxproj toolbin/color/icc_creator/ICC_Creator/ICC_Creator.vcxproj.filters toolbin/color/icc_creator/ICC_Creator/res/ICC_Creator.rc2 toolbin/color/icc_creator/ICC_Creator/resource.h toolbin/color/icc_creator/ICC_Creator/stdafx.cpp toolbin/color/icc_creator/ICC_Creator/stdafx.h toolbin/color/icc_creator/ICC_Creator/targetver.h toolbin/color/icc_creator/effects/c_only.txt toolbin/color/icc_creator/effects/k_only.txt toolbin/color/icc_creator/effects/m_only.txt toolbin/color/icc_creator/effects/y_only.txt toolbin/color/icc_creator/example/README.txt toolbin/color/icc_creator/example/cielab_values.txt toolbin/color/icc_creator/example/color_names.txt toolbin/color/icc_creator/example/duotone.pdf toolbin/color/icc_creator/example/tritone.pdf toolbin/color/icc_creator/example/tritone_cielab.txt toolbin/color/icc_creator/example/tritone_names.txt toolbin/color/icc_creator/ucr_bg_max_k.txt toolbin/color/icc_creator/ucr_bg_no_k.txt toolbin/color/named_color/named_color_table.txt toolbin/color/named_color/named_colors.pdf toolbin/color/src_color/objsrc_profiles_example.txt toolbin/drawafm.ps toolbin/gitsetup.sh toolbin/gsmake toolbin/halftone/ETS/ei03.pdf toolbin/halftone/ETS/ets.c toolbin/halftone/ETS/ets.h toolbin/halftone/ETS/ipview.html toolbin/halftone/ETS/test_ets.c toolbin/halftone/ETS/tm.h toolbin/halftone/ETS/win32/ETS.sln toolbin/halftone/ETS/win32/ETS.vcproj toolbin/halftone/README toolbin/halftone/gen_ordered/Makefile toolbin/halftone/gen_ordered/gen_ordered.sln toolbin/halftone/gen_ordered/gen_ordered.vcproj toolbin/halftone/gen_ordered/gen_ordered_example.ps toolbin/halftone/gen_stochastic/README toolbin/halftone/gen_stochastic/gen_stochastic.sln toolbin/halftone/gen_stochastic/gen_stochastic.vcproj toolbin/halftone/thresh_remap/README toolbin/halftone/thresh_remap/thresh_remap.sln toolbin/halftone/thresh_remap/thresh_remap.vcproj toolbin/htmldiff.pl toolbin/localcluster/clusterpush.pl toolbin/localcluster/clusterpush.txt toolbin/localcluster/gitpush.sh toolbin/localcluster/readme toolbin/performance.pl toolbin/pre.chk toolbin/pscet_status.pl toolbin/search-svn-revs toolbin/search/README toolbin/squeeze2html.pl toolbin/tests/README toolbin/tests/collate.py toolbin/tests/find_unique_file.py toolbin/tests/gsvalidate.py toolbin/tests/main.py toolbin/tests/regen_baseline.py toolbin/tests/regen_filelist.py toolbin/tests/run_nightly toolbin/tests/run_series.py toolbin/tests/testing.cfg.example toolbin/tests/updatelist.py toolbin/tests/updatelistpdf.py toolbin/tests/validate.py toolbin/vg_bugs.supp toolbin/vg_okay.supp windows/All.vcproj windows/GhostPDL.sln windows/Ghostscript-winrt.sln windows/ghostpcl.vcproj windows/ghostpdl.vcproj windows/ghostscript-ufst.vcproj windows/ghostscript.vcproj windows/ghostscript_rt.vcxproj windows/ghostxps.vcproj xps/TODO xps/tools/xps2tiff/README xps/tools/xps2tiff/xps2tiff.sln xps/tools/xps2tiff/xps2tiff/stdafx.cpp xps/tools/xps2tiff/xps2tiff/stdafx.h xps/tools/xps2tiff/xps2tiff/xps2tiff.cpp xps/tools/xps2tiff/xps2tiff/xps2tiff.vcproj Copyright: NONE License: UNKNOWN FIXME Files: Resource/CMap/78-EUC-H Resource/CMap/78-EUC-V Resource/CMap/78-H Resource/CMap/78-RKSJ-H Resource/CMap/78-RKSJ-V Resource/CMap/78-V Resource/CMap/78ms-RKSJ-H Resource/CMap/78ms-RKSJ-V Resource/CMap/83pv-RKSJ-H Resource/CMap/90ms-RKSJ-H Resource/CMap/90ms-RKSJ-V Resource/CMap/90msp-RKSJ-H Resource/CMap/90msp-RKSJ-V Resource/CMap/90pv-RKSJ-H Resource/CMap/90pv-RKSJ-V Resource/CMap/Add-H Resource/CMap/Add-RKSJ-H Resource/CMap/Add-RKSJ-V Resource/CMap/Add-V Resource/CMap/Adobe-CNS1-0 Resource/CMap/Adobe-CNS1-1 Resource/CMap/Adobe-CNS1-2 Resource/CMap/Adobe-CNS1-3 Resource/CMap/Adobe-CNS1-4 Resource/CMap/Adobe-CNS1-5 Resource/CMap/Adobe-CNS1-6 Resource/CMap/Adobe-GB1-0 Resource/CMap/Adobe-GB1-1 Resource/CMap/Adobe-GB1-2 Resource/CMap/Adobe-GB1-3 Resource/CMap/Adobe-GB1-4 Resource/CMap/Adobe-GB1-5 Resource/CMap/Adobe-Japan1-0 Resource/CMap/Adobe-Japan1-1 Resource/CMap/Adobe-Japan1-2 Resource/CMap/Adobe-Japan1-3 Resource/CMap/Adobe-Japan1-4 Resource/CMap/Adobe-Japan1-5 Resource/CMap/Adobe-Japan1-6 Resource/CMap/Adobe-Korea1-0 Resource/CMap/Adobe-Korea1-1 Resource/CMap/Adobe-Korea1-2 Resource/CMap/B5-H Resource/CMap/B5-V Resource/CMap/B5pc-H Resource/CMap/B5pc-V Resource/CMap/CNS-EUC-H Resource/CMap/CNS-EUC-V Resource/CMap/CNS1-H Resource/CMap/CNS1-V Resource/CMap/CNS2-H Resource/CMap/CNS2-V Resource/CMap/ETHK-B5-H Resource/CMap/ETHK-B5-V Resource/CMap/ETen-B5-H Resource/CMap/ETen-B5-V Resource/CMap/ETenms-B5-H Resource/CMap/ETenms-B5-V Resource/CMap/EUC-H Resource/CMap/EUC-V Resource/CMap/Ext-H Resource/CMap/Ext-RKSJ-H Resource/CMap/Ext-RKSJ-V Resource/CMap/Ext-V Resource/CMap/GB-EUC-H Resource/CMap/GB-EUC-V Resource/CMap/GB-H Resource/CMap/GB-V Resource/CMap/GBK-EUC-H Resource/CMap/GBK-EUC-V Resource/CMap/GBK2K-H Resource/CMap/GBK2K-V Resource/CMap/GBKp-EUC-H Resource/CMap/GBKp-EUC-V Resource/CMap/GBT-EUC-H Resource/CMap/GBT-EUC-V Resource/CMap/GBT-H Resource/CMap/GBT-V Resource/CMap/GBTpc-EUC-H Resource/CMap/GBTpc-EUC-V Resource/CMap/GBpc-EUC-H Resource/CMap/GBpc-EUC-V Resource/CMap/H Resource/CMap/HKdla-B5-H Resource/CMap/HKdla-B5-V Resource/CMap/HKdlb-B5-H Resource/CMap/HKdlb-B5-V Resource/CMap/HKgccs-B5-H Resource/CMap/HKgccs-B5-V Resource/CMap/HKm314-B5-H Resource/CMap/HKm314-B5-V Resource/CMap/HKm471-B5-H Resource/CMap/HKm471-B5-V Resource/CMap/HKscs-B5-H Resource/CMap/HKscs-B5-V Resource/CMap/Hankaku Resource/CMap/Hiragana Resource/CMap/Identity-H Resource/CMap/Identity-V Resource/CMap/KSC-EUC-H Resource/CMap/KSC-EUC-V Resource/CMap/KSC-H Resource/CMap/KSC-Johab-H Resource/CMap/KSC-Johab-V Resource/CMap/KSC-V Resource/CMap/KSCms-UHC-H Resource/CMap/KSCms-UHC-HW-H Resource/CMap/KSCms-UHC-HW-V Resource/CMap/KSCms-UHC-V Resource/CMap/KSCpc-EUC-H Resource/CMap/KSCpc-EUC-V Resource/CMap/Katakana Resource/CMap/NWP-H Resource/CMap/NWP-V Resource/CMap/RKSJ-H Resource/CMap/RKSJ-V Resource/CMap/Roman Resource/CMap/UniCNS-UCS2-H Resource/CMap/UniCNS-UCS2-V Resource/CMap/UniCNS-UTF16-V Resource/CMap/UniCNS-UTF32-V Resource/CMap/UniCNS-UTF8-V Resource/CMap/UniGB-UCS2-H Resource/CMap/UniGB-UCS2-V Resource/CMap/UniGB-UTF16-V Resource/CMap/UniGB-UTF32-V Resource/CMap/UniGB-UTF8-V Resource/CMap/UniHojo-UCS2-H Resource/CMap/UniJIS-UCS2-H Resource/CMap/UniJIS-UCS2-HW-H Resource/CMap/UniJIS-UCS2-HW-V Resource/CMap/UniJIS-UCS2-V Resource/CMap/UniJIS-UTF16-V Resource/CMap/UniJIS-UTF32-V Resource/CMap/UniJIS-UTF8-V Resource/CMap/UniJIS2004-UTF16-V Resource/CMap/UniJIS2004-UTF32-V Resource/CMap/UniJIS2004-UTF8-V Resource/CMap/UniJISPro-UCS2-HW-V Resource/CMap/UniJISPro-UCS2-V Resource/CMap/UniJISPro-UTF8-V Resource/CMap/UniJISX0213-UTF32-V Resource/CMap/UniJISX02132004-UTF32-V Resource/CMap/UniKS-UCS2-H Resource/CMap/UniKS-UCS2-V Resource/CMap/UniKS-UTF16-V Resource/CMap/UniKS-UTF32-V Resource/CMap/UniKS-UTF8-V Resource/CMap/V Resource/CMap/WP-Symbol Copyright: %%Copyright: Neither the name of Adobe Systems Incorporated nor the names / %%Copyright: Redistribution and use in source and binary forms, with or %%Copyright: Redistributions in binary form must reproduce the above %%Copyright: Redistributions of source code must retain the above %%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, Copyright 1990-2009 Adobe Systems Incorporated. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials disclaimer. following conditions are met: of its contributors may be used to endorse or promote products derived from this software without specific prior provided with the distribution. without modification, are permitted provided that the written permission. License: UNKNOWN FIXME Files: contrib/pcl3/BUGS contrib/pcl3/doc/gs-mods.txt contrib/pcl3/doc/how-to-report.txt contrib/pcl3/doc/notes.tex contrib/pcl3/doc/reports.txt contrib/pcl3/eprn/eprnfs.c contrib/pcl3/eprn/eprnparm.c contrib/pcl3/eprn/gdeveprn.c contrib/pcl3/eprn/gdeveprn.h contrib/pcl3/eprn/mediasize.c contrib/pcl3/eprn/mediasize.h contrib/pcl3/eprn/pagecount.c contrib/pcl3/eprn/pagecount.h contrib/pcl3/lib/cups-pcl3 contrib/pcl3/lib/example.mcf contrib/pcl3/lib/if-pcl3 contrib/pcl3/ppd/README contrib/pcl3/ppd/catppd contrib/pcl3/ppd/fonts.ppd contrib/pcl3/ppd/gs-5.50.ppd contrib/pcl3/ppd/gs-6.01.ppd contrib/pcl3/ppd/gs-6.50.ppd contrib/pcl3/ppd/gs-6.51.ppd contrib/pcl3/ppd/gs-7.00.ppd contrib/pcl3/ppd/gs-common.ppd contrib/pcl3/ppd/gs-pcl3-common.ppd contrib/pcl3/ppd/gs-pcl3-hpdj1120c.ppd contrib/pcl3/ppd/gs-pcl3-hpdj3xx.ppd contrib/pcl3/ppd/gs-pcl3-hpdj400.ppd contrib/pcl3/ppd/gs-pcl3-hpdj500.ppd contrib/pcl3/ppd/gs-pcl3-hpdj500c.ppd contrib/pcl3/ppd/gs-pcl3-hpdj510.ppd contrib/pcl3/ppd/gs-pcl3-hpdj540.ppd contrib/pcl3/ppd/gs-pcl3-hpdj550c.ppd contrib/pcl3/ppd/gs-pcl3-hpdj600.ppd contrib/pcl3/ppd/gs-pcl3-hpdj660c.ppd contrib/pcl3/ppd/gs-pcl3-hpdj680c.ppd contrib/pcl3/ppd/gs-pcl3-hpdj8xxc.ppd contrib/pcl3/ppd/gs-pcl3-hpdjportable.ppd contrib/pcl3/ppd/gs-pcl3-unspec.ppd contrib/pcl3/ppd/gs-pcl3-unspecold.ppd contrib/pcl3/src/gdevpcl3.c contrib/pcl3/src/pcl3opts-de.msg contrib/pcl3/src/pcl3opts-en.msg contrib/pcl3/src/pcl3opts.c contrib/pcl3/src/pclcap.c contrib/pcl3/src/pclcap.h contrib/pcl3/src/pclcomp.c contrib/pcl3/src/pclgen.c contrib/pcl3/src/pclgen.h contrib/pcl3/src/pclscan.c contrib/pcl3/src/pclscan.h contrib/pcl3/src/pclsize.c contrib/pcl3/src/pclsize.h Copyright: 1996-1998, 2000, Martin Lottermoser 1997-1998, 2000, Martin Lottermoser 1997-2001, Martin Lottermoser 1998, 2000-2001, Martin Lottermoser 1999-2000, Martin Lottermoser 1999-2001, Martin Lottermoser 2000, Martin Lottermoser 2000-2001, Martin Lottermoser 2000-2003, Martin Lottermoser 2001, Martin Lottermoser License: UNKNOWN FIXME Files: iccprofiles/gray_to_k.icc iccprofiles/ps_cmyk.icc iccprofiles/ps_gray.icc iccprofiles/ps_rgb.icc toolbin/color/icc_creator/ICC Profiles/cmyk_k_ouput_only.icc toolbin/color/icc_creator/ICC Profiles/ps_emulate_cmyk.icc toolbin/color/icc_creator/ICC Profiles/ps_emulate_gray.icc toolbin/color/icc_creator/ICC Profiles/ps_emulate_rgb.icc toolbin/color/icc_creator/effects/black_output.icc toolbin/color/icc_creator/effects/cyan_output.icc toolbin/color/icc_creator/effects/magenta_output.icc toolbin/color/icc_creator/effects/yellow_output.icc toolbin/color/icc_creator/max_k.icc toolbin/color/icc_creator/no_k.icc toolbin/color/src_color/cmyk_des_renderintent.icc toolbin/color/src_color/cmyk_src_cyan.icc toolbin/color/src_color/cmyk_src_magenta.icc toolbin/color/src_color/cmyk_src_renderintent.icc toolbin/color/src_color/cmyk_src_yellow.icc toolbin/color/src_color/rgb_source_blue.icc toolbin/color/src_color/rgb_source_green.icc toolbin/color/src_color/rgb_source_red.icc Copyright: Copyright Artifex Software 2010 License: UNKNOWN FIXME Files: Resource/CMap/UniCNS-UTF16-H Resource/CMap/UniCNS-UTF32-H Resource/CMap/UniCNS-UTF8-H Resource/CMap/UniGB-UTF16-H Resource/CMap/UniGB-UTF32-H Resource/CMap/UniGB-UTF8-H Resource/CMap/UniJIS-UTF16-H Resource/CMap/UniJIS-UTF32-H Resource/CMap/UniJIS-UTF8-H Resource/CMap/UniJIS2004-UTF16-H Resource/CMap/UniJIS2004-UTF32-H Resource/CMap/UniJIS2004-UTF8-H Resource/CMap/UniJISX0213-UTF32-H Resource/CMap/UniJISX02132004-UTF32-H Resource/CMap/UniKS-UTF16-H Resource/CMap/UniKS-UTF32-H Resource/CMap/UniKS-UTF8-H Copyright: %%Copyright: Neither the name of Adobe Systems Incorporated nor the names / %%Copyright: Redistribution and use in source and binary forms, with or %%Copyright: Redistributions in binary form must reproduce the above %%Copyright: Redistributions of source code must retain the above %%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, Copyright 1990-2010 Adobe Systems Incorporated. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials disclaimer. following conditions are met: of its contributors may be used to endorse or promote products derived from this software without specific prior provided with the distribution. without modification, are permitted provided that the written permission. License: UNKNOWN FIXME Files: contrib/gdevlx7.c contrib/gdevmd2k.c contrib/japanese/dmp_init.ps contrib/japanese/dviprlib.h contrib/japanese/gdev10v.c contrib/japanese/gdevalps.c contrib/japanese/gdevdmpr.c contrib/japanese/gdevfmlbp.c contrib/japanese/gdevfmpr.c contrib/japanese/gdevj100.c contrib/japanese/gdevml6.c contrib/japanese/gdevnpdl.c contrib/japanese/gdevp201.c examples/waterfal.ps Copyright: 1989, 1992-1993, Aladdin Enterprises. 1989-1994, 1998-1999, Aladdin Enterprises. 1990, 1992, Aladdin Enterprises. 1990, 1992-1993, Aladdin Enterprises. 1990, 1995, 1997, Aladdin Enterprises. 1991, 1995-1999, Aladdin Enterprises. 1991, Aladdin Enterprises. 1992-1993, 1996, Aladdin Enterprises. License: UNKNOWN FIXME Files: base/ttcalc.c base/ttcalc.h base/ttconfig.h base/ttload.c base/ttload.h base/ttobjs.c base/ttobjs.h base/tttables.h base/tttype.h base/tttypes.h Copyright: 1996-1998, David Turner, Robert Wilhelm, and Werner Lemberg. 2001-2012, Artifex Software, Inc. License: FTL FIXME Files: examples/cjk/all_ac1.ps examples/cjk/all_ag1.ps examples/cjk/all_aj1.ps examples/cjk/all_aj2.ps examples/cjk/all_ak1.ps examples/cjk/gscjk_ac.ps examples/cjk/gscjk_ag.ps examples/cjk/gscjk_ak.ps Copyright: (C) 2001 Taiji Yamada and gs-cjk project License: AGPL FIXME Files: contrib/japanese/gdevespg.c contrib/japanese/gdevrpdl.c contrib/lips4/gdevl4r.c contrib/lips4/gdevlips.c contrib/lips4/gdevlips.h contrib/lips4/gdevlprn.c contrib/lips4/gdevlprn.h Copyright: 1998-1999, Norihito Ohmori. 1999, Norihito Ohmori. 1999-2000, Norihito Ohmori. License: UNKNOWN FIXME Files: contrib/pcl3/ps/margins-A4.ps contrib/pcl3/ps/margins-A4Rotated.ps contrib/pcl3/ps/margins-Env10Rotated.ps contrib/pcl3/ps/margins-EnvDLRotated.ps contrib/pcl3/ps/margins-Letter.ps contrib/pcl3/ps/margins-LetterRotated.ps Copyright: Copyright (C) 1997, 1998, 1999, 2000 by Martin Lottermoser. License: UNKNOWN FIXME Files: contrib/pcl3/doc/gs-pcl3.html contrib/pcl3/doc/gs-pcl3.ref contrib/pcl3/doc/pcl3opts.1 contrib/pcl3/doc/pcl3opts.html contrib/pcl3/doc/pcl3opts.ref Copyright: 2000-2001, Martin Lottermoser, License: UNKNOWN FIXME Files: iccprofiles/default_cmyk.icc iccprofiles/default_gray.icc iccprofiles/default_rgb.icc iccprofiles/sgray.icc iccprofiles/srgb.icc Copyright: Copyright Artifex Software 2011 License: UNKNOWN FIXME Files: base/claptrap-init.c base/claptrap-planar.c base/claptrap.c base/claptrap.h Copyright: 2015, -16 Artifex Software, Inc. License: UNKNOWN FIXME Files: doc/GS9_Color_Management.tex pcl/tools/pxlasm.py pcl/tools/pxldis.py toolbin/halftone/thresh_remap/thresh_remap.c Copyright: 2001, Artifex Software Inc. 2009, Artifex Software Inc. 2017, Artifex Software Inc. License: UNKNOWN FIXME Files: contrib/gdevbjc_.c contrib/gdevbjc_.h contrib/gdevbjca.c Copyright: 1989, 2000, Aladdin Enterprises. 2000-2002, Gergely Szász (Gergely Sza'sz) License: Aladdin and/or GPL-2 FIXME Files: base/ttcommon.h base/ttinterp.c base/ttinterp.h Copyright: 1996-1998, David Turner, Robert Wilhelm, and Werner Lemberg 2001-2012, Artifex Software, Inc. License: FTL FIXME Files: contrib/pscolor/black.ps contrib/pscolor/color.ps contrib/pscolor/input.ps Copyright: (Copyright (c) 1998 Hewlett-Packard Company) put Copyright 1987-2001 Adobe Systems Incorporated. Copyright 1987-2001,2003 Adobe Systems Incorporated. Copyright 1987-2002 Adobe Systems Incorporated. Copyright 1992-2003 Adobe Systems Incorporated. Copyright 1993,2001 Adobe Systems Incorporated. Copyright 1993-2001 Adobe Systems Incorporated. Copyright 1998-2003 Adobe Systems Incorporated. License: UNKNOWN FIXME Files: base/gsmd5.c base/gsmd5.h base/md5main.c Copyright: 1999-2012, Artifex Software, Inc. 2002-2012, Artifex Software, Inc. ed. License: Zlib FIXME Files: debian/NEWS pcl/LICENSE Copyright: NONE License: AGPL FIXME Files: lib/Fontmap.ATM lib/Fontmap.OS2 Copyright: 2001-2012, Artifex Software, Inc. URW Software, Copyright 1994 by URW. License: Aladdin FIXME Files: lib/Fontmap.SGI lib/Fontmap.Sol Copyright: 1989, Adobe Systems Incorporated 1989-1992, Bitstream Inc., Cambridge, MA. 1992, URW GmbH, Hamburg, Germany 1993, 2001-2012, Artifex Software, Inc. URW Software, Copyright 1994 by URW. and are of unknown quality. ed fonts were developed by Kevin Hartig. Permission is License: Aladdin and/or GPL-2+ FIXME Files: base/sha2.c base/sha2.h Copyright: 2000-2001, Aaron D. Gifford License: BSD-3-clause FIXME Files: base/aes.c base/aes.h Copyright: 2006-2007, Christophe Devine License: BSD-3-clause FIXME Files: contrib/opvp/opvp_0_2_0.h contrib/opvp/opvp_common.h Copyright: 2003-2004, AXE, Inc. License: Expat FIXME Files: lib/Fontmap.URW-136.T1 lib/Fontmap.URW-136.TT Copyright: 1989, Adobe Systems Incorporated 1989-1992, Bitstream Inc., Cambridge, MA. 1992, URW GmbH, Hamburg, Germany 1993, Kevin Hartig (kevin.hartig@gmail.com), 2001-2012, Artifex Software, Inc. and are of unknown quality. License: GPL-2+ and/or OFL-1.1 FIXME Files: pcl/pxl/pxbfont.ps pcl/pxl/pxsymbol.ps Copyright: 2001-2012, Artifex Software, Inc. 2012, Artifex Software Inc. License: UNKNOWN FIXME Files: Resource/Decoding/FCO_Unicode Resource/Decoding/Unicode Copyright: 16#2118 weierstrass Pscript 2001-2012, Artifex Software, Inc. LE120000 sans serif License: UNKNOWN FIXME Files: Resource/Decoding/FCO_Symbol Resource/Init/gs_sym_e.ps Copyright: 2001-2012, Artifex Software, Inc. sans serif License: UNKNOWN FIXME Files: contrib/gdevln03.c contrib/gdevxes.c Copyright: 1991-1993, Free Software Foundation, Inc. 1991-1994, Free Software Foundation, Inc. License: UNKNOWN FIXME Files: doc/pclxps/ghostpdl.tex doc/pclxps/ghostpdl.txt Copyright: 1999, Hewlett-Packard Company. License: UNKNOWN FIXME Files: base/icc34.h toolbin/color/icc_creator/ICC_Creator/icc34.h Copyright: 1994-1996, SunSoft, Inc. Tag = 0x63707274L, 'cprt' License: UNKNOWN FIXME Files: examples/cjk/iso2022.ps examples/cjk/iso2022v.ps Copyright: 2001, Taiji Yamada and gs-cjk project License: UNKNOWN FIXME Files: lib/cbjc600.ppd lib/cbjc800.ppd Copyright: 1995, Yves Arrouye for AFPL Ghostscript with Level 2 PS. License: UNKNOWN FIXME Files: contrib/pcl3/ps/calign.ps contrib/pcl3/ps/levels-test.ps Copyright: Copyright (C) 2000 by Martin Lottermoser. License: UNKNOWN FIXME Files: toolbin/color/icc_creator/example/artifex_blue_purple.icc toolbin/color/icc_creator/example/artifex_tritone.icc Copyright: Copyright Artifex Software 2009 License: UNKNOWN FIXME Files: examples/cjk/gscjk_aj.ps Copyright: (C) 2001 Taiji Yamada and gs-cjk project ‘Ì) show License: AGPL FIXME Files: doc/COPYING Copyright: -like laws that apply to other kinds of 2007, Free Software Foundation, Inc. able work licensed under this are not disclaimer" for the program, if necessary. ed material outside their relationship with you. if you do permission, other than the making of an permission. treaty adopted on 20 December 1996, or License: AGPL-3 FIXME Files: LICENSE Copyright: Adobe Systems Incorporated and covered by a separate, Affero GPL License: AGPL-3+ FIXME Files: pcl/COPYING.AFPL Copyright: 1994-1995, 1997-2000, Aladdin Enterprises, Act of 1976, You must meet all of the following conditions with respect to any work ed License: Aladdin FIXME Files: lib/Fontmap.VMS Copyright: 1989, Adobe Systems Incorporated 1989-1992, Bitstream Inc., Cambridge, MA. 1992, URW GmbH, Hamburg, Germany 1993, 2001-2012, Artifex Software, Inc. IBM Corporation 1990, 1991 URW Software, Copyright 1994 by URW. and are of unknown quality. ed fonts were developed by Kevin Hartig. Permission is License: Aladdin and/or GPL-2+ FIXME Files: contrib/gdevdj9.c Copyright: 1999, Aladdin Enterprises. 2000, License: Aladdin and/or GPL-2+ FIXME Files: contrib/gdevcd8.c Copyright: 1996-1998, . 1999, Aladdin Enterprises. 2000, Hewlett-Packard Company License: Aladdin and/or GPL-2+ FIXME Files: lib/afmdiff.awk Copyright: 2000, Nelson H. F. Beebe ## License: Aladdin and/or GPL-2+ FIXME Files: Resource/Init/Fontmap.GS Copyright: 1989, Adobe Systems Incorporated 1989-1992, Bitstream Inc., Cambridge, MA. 1992, URW GmbH, Hamburg, Germany 1993, Kevin Hartig (kevin.hartig@gmail.com), 2001-2012, Artifex Software, Inc. URW Software, Copyright 1994 by URW. and are of unknown quality. License: Aladdin and/or GPL-2+ and/or OFL-1.1 FIXME Files: base/gssprintf.c Copyright: (C) Caldera International Inc. License: Apache-2.0 FIXME Files: DroidSansFallback.NOTICE Copyright: 2005-2008, The Android Open Source Project License. Subject to the terms and conditions of You must retain, in the Source form of any Derivative Works license to reproduce, prepare Derivative Works of, patent, trademark, and License: Apache-2.0 FIXME Files: Resource/CIDFSubst/DroidSansFallback.ttf Copyright: Digitized data copyright Google Corporation © 2006 License: Apache-2.0 FIXME Files: base/gsstrtok.c Copyright: NONE License: Apache-2.0 FIXME Files: psi/dmmain.r Copyright: 2001-2012, Artifex Software, Inc. License: CC0 FIXME Files: lib/ht_ccsto.ps Copyright: NONE License: CC0-4 FIXME Files: configure Copyright: 1992-1996, 1998-2012, Free Software Foundation, Inc. 2012, Free Software Foundation, Inc. License: FSFUL FIXME Files: contrib/lxm3200-tweaked/RELEASE_NOTES Copyright: 2000, Daniele Gordini (dgordin@tin.it) License: GPL FIXME Files: cups/gdevcups.c Copyright: 1993-2006, Easy Software Products. License: GPL FIXME Files: contrib/japanese/doc/cdj880.txt Copyright: 1999, License: GPL-2+ FIXME Files: contrib/japanese/doc/gdevcd8.txt Copyright: 1996-1998, License: GPL-2+ FIXME Files: contrib/opvp/gdevopvp.c Copyright: 2003-2004, AXE, Inc. License: GPL-2+ FIXME Files: cups/cups.mak Copyright: 2001-2005, Easy Software Products. 2007, Artifex Software, Inc. License: GPL-2+ FIXME Files: contrib/gdevlx32.c Copyright: 2000, Daniel Gordini (dgordin@tin.it) License: GPL-2+ FIXME Files: contrib/chp2200/COPYING Copyright: 1989, 1991, Free Software Foundation, Inc. disclaimer" for the program, if ed by the Free ed interfaces, the interest in the program the software, and year name of author License: GPL-2+ FIXME Files: contrib/contrib.mak Copyright: NONE License: GPL-2+ FIXME Files: debian/rules Copyright: -check -check = 2004-2009, Masayuki Hatta (mhatta) 2009-2017, Jonas Smedegaard License: GPL-3+ FIXME Files: debian/copyright-check Copyright: 2016-2017, Jonas Smedegaard check License: GPL-3+ FIXME Files: base/gsstrl.c Copyright: 1998, Todd C. Miller License: ISC FIXME Files: contrib/pcl3/NEWS Copyright: 1997-2001, Martin Lottermoser License: LGPL FIXME Files: contrib/pcl3/README Copyright: 1997-2001, Martin Lottermoser License: LGPL-2.1 FIXME Files: contrib/pcl3/LGPL Copyright: 1991, 1999, Free Software Foundation, Inc. disclaimer" for the library, if ed by the Free Software Foundation, write to the Free ed interfaces, the interest in the the License: LGPL-2.1+ FIXME Files: devices/gdev4693.c Copyright: 1992, Washington State University. License: NTP FIXME Files: pcl/pcl/pcfont.h Copyright: License: UNKNOWN FIXME Files: toolbin/color/icc_creator/ICC_Creator/ICC_Creator.rc Copyright: 2009 Artifex Software Incorporated. License: UNKNOWN FIXME Files: toolbin/gen_ldf_jb2.py Copyright: %d Artifex Software, Inc. 2001-2012, Artifex Software, Inc. License: UNKNOWN FIXME Files: lib/pdf2dsc.ps Copyright: (CC) (CCC) (CD) (D) (DC) (DCC) (DCCC) (CM) 2001-2012, Artifex Software, Inc. License: UNKNOWN FIXME Files: contrib/pcl3/doc/gs-pcl3.1 Copyright: (co 2000, 2001 by Martin Lottermoser, License: UNKNOWN FIXME Files: devices/vector/gdevpdfk.c Copyright: (useless, but required by icclib) 2001-2012, Artifex Software, Inc. License: UNKNOWN FIXME Files: contrib/japanese/dviprlib.c Copyright: *pinfo->pcodebuf++ = CFG_OP_OR; 1990, 1992, Aladdin Enterprises. License: UNKNOWN FIXME Files: lib/ps2ai.ps Copyright: 1993, -94 Jason Olszewskin) jp 2001-2012, Artifex Software, Inc. License: UNKNOWN FIXME Files: contrib/opvp/opvp.h Copyright: 2003-2006, AXE Inc. 2006, Canon Inc. 2006, Free Standards Group 2006, Fuji Xerox Printing Systems Co., Ltd. License: UNKNOWN FIXME Files: lib/prfont.ps Copyright: 1986, Eric Gisin 1992, Aladdin Enterprises, Menlo Park, CA 1993, Aladdin Enterprises, Menlo Park, CA 1994, Aladdin Enterprises, Menlo Park, CA 1995, Aladdin Enterprises, Menlo Park, CA 1996, Aladdin Enterprises, Menlo Park, CA 1999, Aladdin Enterprises, Menlo Park, CA 2000, Aladdin Enterprises, Menlo Park, CA 2001-2012, Artifex Software, Inc. transferred 2000/09/15 to Artifex Software, Inc. Send any questions to License: UNKNOWN FIXME Files: base/bench.c Copyright: 1995, Aladdin Enterprises, Menlo Park, CA. 2001-2012, Artifex Software, Inc. License: UNKNOWN FIXME Files: contrib/japanese/gdevmjc.c Copyright: 1991-1993, Aladdin Enterprises. 24 -> 32 bit (1-stage) License: UNKNOWN FIXME Files: base/ttfsfnt.h Copyright: 1991, Apple Computer, Inc. 2001-2012, Artifex Software, Inc. License: UNKNOWN FIXME Files: base/gspmdrv.rc Copyright: 1992-1993, 2001-2012, Artifex Software Inc.", -1, 34, 48, 210, 8 2001-2012, Artifex Software, Inc. License: UNKNOWN FIXME Files: toolbin/encs2c.ps Copyright: 2001-2006, Artifex Software, Inc.) = 2001-2012, Artifex Software, Inc. License: UNKNOWN FIXME Files: devices/gdevijs.c Copyright: 2001-2012, Artifex Software, Inc. 2003-2004, Copyright Hewlett-Packard Development Company, LP License: UNKNOWN FIXME Files: Resource/Init/pdf_sec.ps Copyright: 1996-1998, Geoffrey Keating. 2001-2008, Artifex Software, Inc. 2001-2012, Artifex Software, Inc. License: UNKNOWN FIXME Files: devices/gdevicov.c Copyright: 2001-2012, Artifex Software, Inc. 2011, Sebastian Kapfer License: UNKNOWN FIXME Files: psi/zfont2.c Copyright: 1, k_fontinfodict | k_sid); 12 0 SID -, FontInfo 2001-2012, Artifex Software, Inc. isFixedPitch, License: UNKNOWN FIXME Files: base/gscedata.c Copyright: 117, N(10,180): exclamdown 161, N(10,180): exclamdown 163, N(10,180): exclamdown 193, N(10,180): exclamdown 2001-2012, Artifex Software, Inc. 96, N(10,180): exclamdown N(11,473), ordfeminine N(6,0), Aacute N(8,64), currency N(9,450), trademark sans serif License: UNKNOWN FIXME Files: Resource/Decoding/Latin1 Copyright: 169 2001-2012, Artifex Software, Inc. sans 169 serif 169 License: UNKNOWN FIXME Files: devices/gdevcdj.c Copyright: 2001-2012, Artifex Software, Inc. 24 -> 32 bit (1-stage) License: UNKNOWN FIXME Files: Resource/Init/gs_res.ps Copyright: 2001-2012, Artifex Software, Inc. 3 1 roll % (scr) (c) (/) (n) License: UNKNOWN FIXME Files: base/gsicc_create.c Copyright: 2001-2012, Artifex Software, Inc. Artifex Software 2009"; Tag Tag; tag white point RGB colorants and tag white point and grayTRC License: UNKNOWN FIXME Files: toolbin/color/icc_creator/ICC_Creator/icc_create.cpp Copyright: 2001-2012, Artifex Software, Inc. Artifex Software 2016"; Tag Tag; License: UNKNOWN FIXME Files: devices/gdevpxut.c Copyright: 2001-2012, Artifex Software, Inc. Artifex Sofware, Inc. 2005000n"; License: UNKNOWN FIXME Files: toolbin/headers.tcl Copyright: 2001-2012, Artifex Software, Inc. BLOCK ****" at line $i" block in: $FInName" block) by scanning for or comment block License: UNKNOWN FIXME Files: base/gstype42.c Copyright: 2001-2012, Artifex Software, Inc. FONT_INFO_COPYRIGHT, 0); informatoin if there is any, License: UNKNOWN FIXME Files: lib/font2pcl.ps Copyright: 2001-2012, Artifex Software, Inc. FontInfo /Notice .knownget not { () } if def length add write==only vendor.keys keysearch writestring % Copyright License: UNKNOWN FIXME Files: pcl/pl/plvocab.c Copyright: 2001-2012, Artifex Software, Inc. Full, Sans Full, Serif Sign, Sup u License: UNKNOWN FIXME Files: devices/gdevbjc.h Copyright: 2001-2012, Artifex Software, Inc. Yves Arrouye , 1995, 1996. License: UNKNOWN FIXME Files: devices/vector/gdevpsu.c Copyright: 2001-2012, Artifex Software, Inc. applies to everything between here and the %%EndProlog:", begin ProcSet License: UNKNOWN FIXME Files: psi/iminst.h Copyright: 2001-2012, Artifex Software, Inc. heap allocator License: UNKNOWN FIXME Files: devices/vector/gdevpsf1.c Copyright: 2001-2012, Artifex Software, Inc. info.members & FONT_INFO_COPYRIGHT); License: UNKNOWN FIXME Files: base/gsdll.h Copyright: 2001-2012, Artifex Software, Inc. long * gs_revision, long * gs_revisiondate); long * revision, long * revisiondate); License: UNKNOWN FIXME Files: psi/gsdll.c Copyright: 2001-2012, Artifex Software, Inc. long * revision, long * revisiondate) License: UNKNOWN FIXME Files: base/gdevm40.c Copyright: 2001-2012, Artifex Software, Inc. mdev->color40.abcde = (color) mdev->color40.bcde = bcde = (cdea << 8) | (b), License: UNKNOWN FIXME Files: base/gdevm48.c Copyright: 2001-2012, Artifex Software, Inc. mdev->color48.abcdef = (color) License: UNKNOWN FIXME Files: base/gdevm56.c Copyright: 2001-2012, Artifex Software, Inc. mdev->color56.abcdefg = (color) mdev->color56.bcde = bcde = (cdef << 8) | (b), License: UNKNOWN FIXME Files: pcl/pxl/pxdiff.txt Copyright: 2001-2012, Artifex Software, Inc. or (D). We are willing to discuss License: UNKNOWN FIXME Files: pcl/pxl/pxsymbol.psc Copyright: 2001-2012, Artifex Software, Inc. pxg_congruent, pxg_ordfeminine, pxg_guillemotleft, pxg_trademark, pxg_acute, sans, serif, License: UNKNOWN FIXME Files: base/stdpre.h Copyright: 2001-2012, Artifex Software, Inc. requires supports it but somehow only License: UNKNOWN FIXME Files: devices/vector/gdevagl.c Copyright: 2001-2012, Artifex Software, Inc. sans", 0xF8E9}, serif", 0xF6D9}, License: UNKNOWN FIXME Files: psi/iref.h Copyright: 2001-2012, Artifex Software, Inc. type of the structure. License: UNKNOWN FIXME Files: Resource/CMap/Identity-UTF16-H Copyright: 2003, Artifex Software. License: UNKNOWN FIXME Files: toolbin/halftone/ETS/README.txt Copyright: 2000-2010, Artifex Sotware Inc. 2000-2014, Artifex Sotware Inc. License: UNKNOWN FIXME Files: Resource/Init/gs_img.ps Copyright: 2002, Artifex, Inc. License: UNKNOWN FIXME Files: contrib/japanese/doc/README.gs550j Copyright: 1996-1999, Daisuke SUZUKI. 1999, Norihito Ohmori. License: UNKNOWN FIXME Files: contrib/lxm3200-tweaked/LICENSE Copyright: 1989, 1991, Free Software Foundation, Inc. 19yy 19yy name of author disclaimer" for the program, if ed by the Free ed interfaces, the interest in the program the software, and License: UNKNOWN FIXME Files: lib/ghostpdf.ppd Copyright: 2004-2006, Ghostgum Software Pty Ltd. License: UNKNOWN FIXME Files: contrib/gdevop4w.c Copyright: 1998, Ivan Schreter License: UNKNOWN FIXME Files: debian/update-gsfontmap Copyright: 2010, Kenshi Muto License: UNKNOWN FIXME Files: devices/gdevifno.c Copyright: 1998, Lucent Technologies. License: UNKNOWN FIXME Files: contrib/pcl3/eprn/eprnrend.c Copyright: 2000-2001, Martin Lottermoser because it gives equal shares to all levels. multiply by the number of levels and truncate, except for an License: UNKNOWN FIXME Files: contrib/pcl3/ps/dumppdd.ps Copyright: 1999-2000, Martin Lottermoser. Copyright (C) 2000 by Martin Lottermoser. License: UNKNOWN FIXME Files: contrib/lips4/gdevl4v.c Copyright: 1998-1999, Norihito Ohmori. ÌÀ ¥Ó¥Ã¥Èȿž¡¦zero ¿§¤ËÀ÷¤á¤ë License: UNKNOWN FIXME Files: base/ets.c Copyright: 2001-2004, Raph Levien License: UNKNOWN FIXME Files: lib/viewjpeg.ps Copyright: 1994, Thomas Merz License: UNKNOWN FIXME Files: debian/libgs9.symbols Copyright: @Base 8.61.dfsg.1 License: UNKNOWN FIXME Files: debian/source/lintian-overrides Copyright: Apache-2.0 GPL GPL-2 GPL-2+ GPL-3+ LGPL-2.1+ apache-2.0 gpl gpl-2 gpl-2+ gpl-3+ lgpl-2.1+ License: UNKNOWN FIXME Files: pcl/examples/null.pxl Copyright: Artifex Software Inc. 2012 License: UNKNOWN FIXME Files: xps/tools/xps2tiff/xps2tiff/AssemblyInfo.cpp Copyright: Attribute("") License: UNKNOWN FIXME Files: iccprofiles/lab.icc Copyright: Copyright 2009 Artifex Software Inc License: UNKNOWN FIXME Files: contrib/gdevhl12.c Copyright: ED License: UNKNOWN FIXME Files: contrib/eplaser/gdevescv.h Copyright: EPSON SOFTWARE DEVELOPMENT LABORATORY, INC. 1999,2000. SEIKO EPSON CORPORATION 2000-2006,2009. License: UNKNOWN FIXME Files: contrib/eplaser/gdevescv.c Copyright: EPSON SOFTWARE DEVELOPMENT LABORATORY, INC. 1999,2000. SEIKO EPSON CORPORATION 2000-2006,2009. ÌÀ ¥Ó¥Ã¥Èȿž¡¦zero ¿§¤ËÀ÷¤á¤ë License: UNKNOWN FIXME Files: lib/printafm.ps Copyright: ed; you can do with it exactly as you please. License: UNKNOWN FIXME Files: Resource/Init/gs_agl.ps Copyright: serif License: UNKNOWN FIXME Files: lib/pf2afm.ps Copyright: skipw-p % PFM: Type License: UNKNOWN FIXME Files: contrib/japanese/doc/gdevmjc.txt Copyright: ¥ë¥È 1024 License: UNKNOWN FIXME Files: contrib/japanese/doc/gdev10v.txt Copyright: ¥ë¥È), 360x180, 180x180¤Î3¼ïÎà License: UNKNOWN FIXME Files: contrib/japanese/doc/gdevdmpr.txt Copyright: ¥ë¥È¤Ç¤Ï false (off) ¤Ç¤¹ (²¿¤âɽ¼¨¤µ¤ì¤Þ¤»¤ó)¡£ License: UNKNOWN FIXME Files: contrib/japanese/doc/gdevfmlbp.txt Copyright: ¥ë¥È¤Î²òÁüÅÙ¤Ï 400dpi ¤Ç¤¹¡£240dpi ¤Ç°õºþ¤¹¤ë¾ì¹ç¤Ï¡¢¼¡¤Î¤è¤¦¤Ë ¥ë¥È¤ÎÍÑ»æ¤Ï a4 ¤Ç¤¹¡£a3 ¤ò»ØÄꤹ¤ë»þ¤Ï¼¡¤Î¤è¤¦¤Ë»ØÄꤷ¤Þ¤¹¡£ License: UNKNOWN FIXME Files: contrib/japanese/doc/gdevml6.txt Copyright: ¥ë¥È¤Î²òÁüÅÙ¤Ï 600 License: UNKNOWN FIXME debian/symbols.common0000644000000000000000000103751513433247240012106 0ustar #MISSING: 9.05~dfsg-1# ALWAYS_CONTONE@Base 8.71~dfsg-3~ #MISSING: 9.05~dfsg-1# Author@Base 8.61.dfsg.1 BJL_command_set@Base 8.61.dfsg.1 BlackPoint_default@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# CPSI_mode@Base 8.61.dfsg.1 ClapTrap_Fin@Base 9.25~dfsg+1-0ubuntu0.14.04.1 ClapTrap_GetLine@Base 9.25~dfsg+1-0ubuntu0.14.04.1 ClapTrap_GetLinePlanar@Base 9.25~dfsg+1-0ubuntu0.14.04.1 ClapTrap_Init@Base 9.25~dfsg+1-0ubuntu0.14.04.1 Clear_CodeRange@Base 8.61.dfsg.1 Context_Create@Base 8.61.dfsg.1 Context_Destroy@Base 8.61.dfsg.1 Context_Load@Base 8.61.dfsg.1 Context_Run@Base 8.61.dfsg.1 Context_Save@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# ConvertUTF16toUTF32@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# ConvertUTF16toUTF8@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# ConvertUTF32toUTF16@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# ConvertUTF32toUTF8@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# ConvertUTF8toUTF16@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# ConvertUTF8toUTF32@Base 8.61.dfsg.1 DoubleGlyphList@Base 9.05~ DecodeABC_default@Base 8.61.dfsg.1 DecodeABC_from_cache@Base 8.61.dfsg.1 DecodeA_default@Base 8.61.dfsg.1 DecodeA_from_cache@Base 8.61.dfsg.1 DecodeDEFG_default@Base 8.61.dfsg.1 DecodeDEFG_from_cache@Base 8.61.dfsg.1 DecodeDEF_default@Base 8.61.dfsg.1 DecodeDEF_from_cache@Base 8.61.dfsg.1 DecodeLMN_default@Base 8.61.dfsg.1 DecodeLMN_from_cache@Base 8.61.dfsg.1 Default_GraphicsState@Base 8.61.dfsg.1 DevCMYKOGComponents@Base 9.14~dfsg-0ubuntu1 DeviceCMYKComponents@Base 8.61.dfsg.1 DoubleGlyphList@Base 9.05~dfsg~20120125-0ubuntu1 EncodeABC_from_cache@Base 8.61.dfsg.1 EncodeLMN_from_cache@Base 8.61.dfsg.1 Encode_default@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# FF_serialize_type1_font@Base 9.01~ #MISSING: 9.07~dfsg-0ubuntu1# FF_serialize_type1_font_complete@Base 9.01~ #MISSING: 9.07~dfsg-0ubuntu1# FF_serialize_type2_font@Base 9.01~ Face_Create@Base 8.61.dfsg.1 Face_Destroy@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# FindBandSize@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# FloydSteinbergC@Base 8.61.dfsg.1 FloydSteinbergCloseC@Base 8.61.dfsg.1 FloydSteinbergCloseG@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# FloydSteinbergDirectionForward@Base 8.61.dfsg.1 FloydSteinbergDitheringC@Base 8.61.dfsg.1 FloydSteinbergDitheringG@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# FloydSteinbergErrorsC@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# FloydSteinbergErrorsG@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# FloydSteinbergErrorsK@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# FloydSteinbergErrorsM@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# FloydSteinbergErrorsY@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# FloydSteinbergG@Base 8.61.dfsg.1 FloydSteinbergInitC@Base 8.61.dfsg.1 FloydSteinbergInitG@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# FloydSteinbergK@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# FloydSteinbergM@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# FloydSteinbergY@Base 8.61.dfsg.1 GDI_BAND_WIDTH@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# GetSimpleScan@Base 8.61.dfsg.1 Get_CodeRange@Base 8.61.dfsg.1 Goto_CodeRange@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# Id@Base 8.61.dfsg.1 Instance_Create@Base 8.61.dfsg.1 Instance_Destroy@Base 8.61.dfsg.1 Instance_Init@Base 8.61.dfsg.1 Instance_Reset@Base 8.61.dfsg.1 IsInWhiteList@Base 9.00~dfsg Load_TrueType_CVT@Base 8.61.dfsg.1 Load_TrueType_MaxProfile@Base 8.61.dfsg.1 Load_TrueType_Programs@Base 8.61.dfsg.1 Matrix3_default@Base 8.61.dfsg.1 MatrixA_default@Base 8.61.dfsg.1 Memento_breakAt@Base 9.04~dfsg Memento_breakOnFree@Base 9.06~dfsg~20120802-0ubuntu1 Memento_breakOnRealloc@Base 9.06~dfsg~20120802-0ubuntu1 Memento_breakpoint@Base 9.04~dfsg Memento_calloc@Base 9.04~dfsg Memento_check@Base 9.04~dfsg Memento_checkAllMemory@Base 9.04~dfsg Memento_checkBlock@Base 9.04~dfsg Memento_dropRef@Base 9.25~dfsg+1-0ubuntu0.14.04.1 Memento_failAt@Base 9.04~dfsg Memento_find@Base 9.04~dfsg Memento_free@Base 9.04~dfsg Memento_getBlockNum@Base 9.04~dfsg Memento_info@Base 9.25~dfsg+1-0ubuntu0.14.04.1 Memento_label@Base 9.06~dfsg~20120802-0ubuntu1 Memento_listBlockInfo@Base 9.25~dfsg+1-0ubuntu0.14.04.1 Memento_listBlocks@Base 9.05~ Memento_listNewBlocks@Base 9.05~ Memento_malloc@Base 9.04~dfsg Memento_paranoidAt@Base 9.04~dfsg Memento_realloc@Base 9.04~dfsg Memento_reference@Base 9.25~dfsg+1-0ubuntu0.14.04.1 Memento_setMax@Base 9.06~dfsg~20120802-0ubuntu1 Memento_setParanoia@Base 9.04~dfsg Memento_startLeaking@Base 9.25~dfsg+1-0ubuntu0.14.04.1 Memento_stats@Base 9.06~dfsg~20120802-0ubuntu1 Memento_stopLeaking@Base 9.25~dfsg+1-0ubuntu0.14.04.1 Memento_takeRef@Base 9.25~dfsg+1-0ubuntu0.14.04.1 MulDiv_Round@Base 8.61.dfsg.1 PCLm_close@Base 9.25~dfsg+1-0ubuntu0.14.04.1 PCLm_open@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# PDFDocEncodingLookup@Base 9.07~dfsg-0ubuntu1 QuadGlyphList@Base 9.05~ #MISSING: 9.05~dfsg-1# RCSFile@Base 8.61.dfsg.1 Range3_default@Base 8.61.dfsg.1 Range4_default@Base 8.61.dfsg.1 RangeA_default@Base 8.61.dfsg.1 RenderTableT_default@Base 8.61.dfsg.1 RenderTableT_from_cache@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# Revision@Base 8.61.dfsg.1 RunIns@Base 8.61.dfsg.1 #MISSING: 9.14~dfsg-0ubuntu1# SHA256_Data@Base 9.00~dfsg #MISSING: 9.14~dfsg-0ubuntu1# SHA256_End@Base 9.00~dfsg #MISSING: 9.05~dfsg-1# SHA256_Final@Base 9.00~dfsg #MISSING: 9.05~dfsg-1# SHA256_Init@Base 9.00~dfsg #MISSING: 9.05~dfsg-1# SHA256_Transform@Base 9.00~dfsg #MISSING: 9.05~dfsg-1# SHA256_Update@Base 9.00~dfsg #MISSING: 9.14~dfsg-0ubuntu1# SHA384_Data@Base 9.00~dfsg #MISSING: 9.14~dfsg-0ubuntu1# SHA384_End@Base 9.00~dfsg #MISSING: 9.14~dfsg-0ubuntu1# SHA384_Final@Base 9.00~dfsg #MISSING: 9.14~dfsg-0ubuntu1# SHA384_Init@Base 9.00~dfsg #MISSING: 9.14~dfsg-0ubuntu1# SHA384_Update@Base 9.00~dfsg #MISSING: 9.14~dfsg-0ubuntu1# SHA512_Data@Base 9.00~dfsg #MISSING: 9.14~dfsg-0ubuntu1# SHA512_End@Base 9.00~dfsg #MISSING: 9.14~dfsg-0ubuntu1# SHA512_Final@Base 9.00~dfsg #MISSING: 9.14~dfsg-0ubuntu1# SHA512_Init@Base 9.00~dfsg #MISSING: 9.14~dfsg-0ubuntu1# SHA512_Last@Base 9.00~dfsg #MISSING: 9.05~dfsg-1# SHA512_Transform@Base 9.00~dfsg #MISSING: 9.14~dfsg-0ubuntu1# SHA512_Update@Base 9.00~dfsg #MISSING: 9.00~dfsg-1# Save2Bytes@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# Save4Bytes@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# Save6Bytes@Base 8.61.dfsg.1 SaveScanData@Base 8.61.dfsg.1 Scale_X@Base 8.61.dfsg.1 Scale_Y@Base 8.61.dfsg.1 Set_CodeRange@Base 8.61.dfsg.1 SingleGlyphList@Base 9.05~ #MISSING: 9.00~dfsg-1# Smask_Luminosity_Mapping@Base 8.64~dfsg-3~ Sqrt64@Base 8.61.dfsg.1 TT_Set_Instance_CharSizes@Base 8.61.dfsg.1 TransformPQR_default@Base 8.61.dfsg.1 TransformPQR_from_cache@Base 8.61.dfsg.1 TransformPQR_lookup_proc_name@Base 8.61.dfsg.1 TrebleGlyphList@Base 9.05~ Unset_CodeRange@Base 8.61.dfsg.1 UpdateScanLine@Base 8.61.dfsg.1 UpdateScanSize@Base 8.61.dfsg.1 WRF_init@Base 9.25~dfsg+1-0ubuntu0.14.04.1 WRF_wbyte@Base 9.25~dfsg+1-0ubuntu0.14.04.1 WRF_wfloat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 WRF_wint@Base 9.25~dfsg+1-0ubuntu0.14.04.1 WRF_wstring@Base 9.25~dfsg+1-0ubuntu0.14.04.1 WRF_wtext@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cms15Fixed16toDouble@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cms8Fixed8toDouble@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsAdaptationMatrix@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsAdaptationStateChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsAdjustEndianess16@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsAdjustEndianess32@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsAdjustEndianess64@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsAdjustReferenceCount@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsAlarmCodesChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsAllocAdaptationStateChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsAllocAlarmCodesChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsAllocCurvesPluginChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsAllocFormattersPluginChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsAllocIntentsPluginChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsAllocInterpPluginChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsAllocLogErrorChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsAllocMPETypePluginChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsAllocMemPluginChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsAllocMutexPluginChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsAllocOptimizationPluginChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsAllocTagPluginChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsAllocTagTypePluginChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsAllocTransformPluginChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsBuildKToneCurve@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsBuildRGB2XYZtransferMatrix@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsCalloc@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsChain2Lab@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsCompileProfileSequence@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsComputeInterpParams@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsComputeInterpParamsEx@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsContextGetClientChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsCreateGamutCheckPipeline@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsCreateMutex@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsCreateSubAlloc@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsCurvesPluginChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsDecodeDateTimeNumber@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsDefaultICCintents@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsDestroyMutex@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsDoubleTo15Fixed16@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsDoubleTo8Fixed8@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsDupMem@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsEncodeDateTimeNumber@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsEndPointsBySpace@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsFindFormatter@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsFloat2Half@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsFormatterIs8bit@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsFormatterIsFloat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsFormattersPluginChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsFree@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsFreeInterpParams@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsGetContext@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsGetFormatter@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsGetTagDescriptor@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsGetTagTrueType@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsGetTagTypeHandler@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsGetTransformFormatters16@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsGetTransformFormattersFloat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsGetTransformUserData@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsHalf2Float@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsHandleExtraChannels@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsICCcolorSpace@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsIOPrintf@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsInstallAllocFunctions@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsIntentsPluginChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsInterpPluginChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsLCMScolorSpace@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsLinkProfiles@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsLockMutex@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsLogErrorChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsLutIsIdentity@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsMAT3eval@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsMAT3identity@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsMAT3inverse@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsMAT3isIdentity@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsMAT3per@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsMAT3solve@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsMPETypePluginChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsMalloc@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsMallocZero@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsMemPluginChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsMutexPluginChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsOptimizationPluginChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsOptimizePipeline@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsPipelineSetOptimizationParameters@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsPluginMalloc@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsQuantizeVal@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsRead15Fixed16Number@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsReadAlignment@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsReadCHAD@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsReadDevicelinkLUT@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsReadFloat32Number@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsReadHeader@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsReadInputLUT@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsReadMediaWhitePoint@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsReadOutputLUT@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsReadProfileSequence@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsReadTypeBase@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsReadUInt16Array@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsReadUInt16Number@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsReadUInt32Number@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsReadUInt64Number@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsReadUInt8Number@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsReadXYZNumber@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsRealloc@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsReasonableGridpointsByColorspace@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsRegisterFormattersPlugin@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsRegisterInterpPlugin@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsRegisterMemHandlerPlugin@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsRegisterMultiProcessElementPlugin@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsRegisterMutexPlugin@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsRegisterOptimizationPlugin@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsRegisterParametricCurvesPlugin@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsRegisterRenderingIntentPlugin@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsRegisterTagPlugin@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsRegisterTagTypePlugin@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsRegisterTransformPlugin@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsSearchTag@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsSetInterpolationRoutine@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsSetTransformUserData@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsStageAllocIdentityCLut@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsStageAllocIdentityCurves@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsStageAllocLab2XYZ@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsStageAllocLabPrelin@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsStageAllocLabV2ToV4@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsStageAllocLabV2ToV4curves@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsStageAllocLabV4ToV2@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsStageAllocNamedColor@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsStageAllocPlaceholder@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsStageAllocXYZ2Lab@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsStageClipNegatives@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsStageGetPtrToCurveSet@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsStageNormalizeFromLabFloat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsStageNormalizeFromXyzFloat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsStageNormalizeToLabFloat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsStageNormalizeToXyzFloat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsSubAlloc@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsSubAllocDestroy@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsSubAllocDup@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsTagPluginChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsTagSignature2String@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsTagTypePluginChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsTransformPluginChunk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsUnlockMutex@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsVEC3cross@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsVEC3distance@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsVEC3dot@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsVEC3init@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsVEC3length@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsVEC3minus@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsWrite15Fixed16Number@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsWriteAlignment@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsWriteFloat32Number@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsWriteHeader@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsWriteProfileSequence@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsWriteTypeBase@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsWriteUInt16Array@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsWriteUInt16Number@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsWriteUInt32Number@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsWriteUInt64Number@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsWriteUInt8Number@Base 9.25~dfsg+1-0ubuntu0.14.04.1 _cmsWriteXYZNumber@Base 9.25~dfsg+1-0ubuntu0.14.04.1 a_identity@Base 9.00~dfsg abc_identity@Base 9.00~dfsg add_FID@Base 8.61.dfsg.1 adjust_first_last_char@Base 8.61.dfsg.1 aes_crypt_cbc@Base 8.64~dfsg aes_crypt_cfb@Base 8.64~dfsg aes_crypt_ecb@Base 8.64~dfsg aes_setkey_dec@Base 8.64~dfsg aes_setkey_enc@Base 8.64~dfsg alloc_any_names_since_save@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# alloc_close_chunk@Base 8.61.dfsg.1 alloc_close_clump@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.18~dfsg~0-0ubuntu1# alloc_compressed_color_list_elem@Base 8.61.dfsg.1 alloc_device_n_map@Base 8.61.dfsg.1 alloc_find_save@Base 8.61.dfsg.1 alloc_forget_save_in@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# alloc_free_chunk@Base 8.61.dfsg.1 alloc_free_clump@Base 9.25~dfsg+1-0ubuntu0.14.04.1 alloc_function_array@Base 8.61.dfsg.1 alloc_indexed_map@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# alloc_init_chunk@Base 8.61.dfsg.1 alloc_init_clump@Base 9.25~dfsg+1-0ubuntu0.14.04.1 alloc_init_free_strings@Base 8.61.dfsg.1 alloc_is_since_save@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# alloc_link_chunk@Base 8.61.dfsg.1 alloc_link_clump@Base 9.25~dfsg+1-0ubuntu0.14.04.1 alloc_name_index_is_since_save@Base 8.61.dfsg.1 alloc_name_is_since_save@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# alloc_open_chunk@Base 8.61.dfsg.1 alloc_open_clump@Base 9.25~dfsg+1-0ubuntu0.14.04.1 alloc_restore_all@Base 8.61.dfsg.1 alloc_restore_step_in@Base 8.61.dfsg.1 alloc_save__filter_changes@Base 8.61.dfsg.1 alloc_save_change@Base 8.61.dfsg.1 alloc_save_change_alloc@Base 8.61.dfsg.1 alloc_save_change_in@Base 8.61.dfsg.1 alloc_save_client_data@Base 8.61.dfsg.1 alloc_save_current@Base 8.61.dfsg.1 alloc_save_current_id@Base 8.61.dfsg.1 alloc_save_init@Base 8.61.dfsg.1 alloc_save_remove@Base 8.61.dfsg.1 alloc_save_state@Base 8.61.dfsg.1 alloc_set_in_save@Base 8.61.dfsg.1 alloc_set_not_in_save@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# alloc_unlink_chunk@Base 8.61.dfsg.1 alloc_unlink_clump@Base 9.25~dfsg+1-0ubuntu0.14.04.1 alpha_buffer_bits@Base 9.00~dfsg applymap16@Base 9.16~dfsg~0-0ubuntu1 applymap8@Base 9.16~dfsg~0-0ubuntu1 arg_copy@Base 8.61.dfsg.1 arg_finit@Base 8.61.dfsg.1 arg_free@Base 9.06~dfsg~20120802-0ubuntu1 arg_init@Base 8.61.dfsg.1 arg_next@Base 8.61.dfsg.1 arg_push_decoded_memory_string@Base 9.08~rc1~dfsg-0ubuntu1 arg_push_memory_string@Base 8.61.dfsg.1 arg_strcmp@Base 9.08~rc1~dfsg-0ubuntu1 array_get@Base 8.61.dfsg.1 array_indexed_param_list_read@Base 8.61.dfsg.1 array_param_list_read@Base 8.61.dfsg.1 art_blend_luminosity_cmyk_8@Base 8.61.dfsg.1 art_blend_luminosity_custom_8@Base 8.61.dfsg.1 art_blend_luminosity_rgb_8@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# art_blend_pixel@Base 8.61.dfsg.1 art_blend_pixel_8@Base 8.61.dfsg.1 art_blend_saturation_cmyk_8@Base 8.61.dfsg.1 art_blend_saturation_custom_8@Base 8.61.dfsg.1 art_blend_saturation_rgb_8@Base 8.61.dfsg.1 art_blend_soft_light_8@Base 8.61.dfsg.1 art_blend_sq_diff_8@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# art_pdf_composite_group_8@Base 8.61.dfsg.1 art_pdf_composite_knockout_8@Base 9.15~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# art_pdf_composite_knockout_group_8@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# art_pdf_composite_knockout_isolated_8@Base 8.61.dfsg.1 #MISSING: 9.15~dfsg-0ubuntu1# art_pdf_composite_knockout_simple_8@Base 8.61.dfsg.1 art_pdf_composite_pixel_alpha_8@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# art_pdf_composite_pixel_alpha_8_fast@Base 9.07~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# art_pdf_composite_pixel_alpha_8_fast_mono@Base 9.07~dfsg-0ubuntu1 art_pdf_knockoutisolated_group_8@Base 9.01~ art_pdf_knockoutisolated_group_aa_8@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# art_pdf_recomposite_group_8@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# art_pdf_uncomposite_group_8@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# art_pdf_union_8@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# art_pdf_union_mul_8@Base 8.61.dfsg.1 basic_enum_ptrs@Base 8.61.dfsg.1 basic_reloc_ptrs@Base 8.61.dfsg.1 bbox_default_add_rect@Base 8.61.dfsg.1 bbox_default_get_box@Base 8.61.dfsg.1 bbox_default_in_rect@Base 8.61.dfsg.1 bbox_default_init_box@Base 8.61.dfsg.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# bio_create@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# bio_destroy@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# bio_flush@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# bio_inalign@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# bio_init_dec@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# bio_init_enc@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# bio_numbytes@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# bio_read@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# bio_write@Base 9.06~dfsg-0ubuntu1 bits_bounding_box@Base 8.61.dfsg.1 bits_compress_scaled@Base 8.61.dfsg.1 bits_expand_plane@Base 8.61.dfsg.1 bits_extract_plane@Base 8.61.dfsg.1 bits_fill_rectangle@Base 8.61.dfsg.1 bits_fill_rectangle_masked@Base 8.61.dfsg.1 bits_replicate_horizontally@Base 8.61.dfsg.1 bits_replicate_vertically@Base 8.61.dfsg.1 bjc_build_gamma_table@Base 8.61.dfsg.1 bjc_compress@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# bjc_gamma_tableC@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# bjc_gamma_tableM@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# bjc_gamma_tableY@Base 8.61.dfsg.1 bjc_init_tresh@Base 8.61.dfsg.1 bjc_invert_bytes@Base 8.61.dfsg.1 bjc_invert_cmyk_bytes@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# bjc_j@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# bjc_k@Base 8.61.dfsg.1 bjc_put_CR@Base 8.61.dfsg.1 bjc_put_FF@Base 8.61.dfsg.1 bjc_put_LF@Base 8.61.dfsg.1 bjc_put_bjl_command@Base 8.61.dfsg.1 bjc_put_cmyk_image@Base 8.61.dfsg.1 bjc_put_continue_image@Base 8.61.dfsg.1 bjc_put_extended_margins@Base 8.61.dfsg.1 bjc_put_image_format@Base 8.61.dfsg.1 bjc_put_indexed_image@Base 8.61.dfsg.1 bjc_put_initialize@Base 8.61.dfsg.1 bjc_put_media_supply@Base 8.61.dfsg.1 bjc_put_move_lines@Base 8.61.dfsg.1 bjc_put_move_lines_unit@Base 8.61.dfsg.1 bjc_put_page_id@Base 8.61.dfsg.1 bjc_put_page_margins@Base 8.61.dfsg.1 bjc_put_print_method@Base 8.61.dfsg.1 bjc_put_print_method_short@Base 8.61.dfsg.1 bjc_put_raster_resolution@Base 8.61.dfsg.1 bjc_put_raster_skip@Base 8.61.dfsg.1 bjc_put_set_compression@Base 8.61.dfsg.1 bjc_put_set_initial@Base 8.61.dfsg.1 bjc_rand@Base 8.61.dfsg.1 bjc_rand_seed@Base 8.61.dfsg.1 bjc_rgb_to_cmy@Base 8.61.dfsg.1 bjc_rgb_to_gray@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# bjc_treshold@Base 8.61.dfsg.1 black_sep@Base 8.61.dfsg.1 blend_valid_for_spot@Base 9.25~dfsg+1-0ubuntu0.14.04.1 bmp_map_16m_color_rgb@Base 8.61.dfsg.1 bmp_map_16m_rgb_color@Base 8.61.dfsg.1 bpc_to_depth@Base 8.61.dfsg.1 build_charstring_font@Base 8.61.dfsg.1 build_cmyk_map@Base 9.18~dfsg~0-0ubuntu1 build_function_type_table@Base 8.61.dfsg.1 build_function_type_table_count@Base 8.61.dfsg.1 build_gs_FDArray_font@Base 8.61.dfsg.1 build_gs_TrueType_font@Base 8.61.dfsg.1 build_gs_font@Base 8.61.dfsg.1 build_gs_font_procs@Base 8.61.dfsg.1 build_gs_outline_font@Base 8.61.dfsg.1 build_gs_primitive_font@Base 8.61.dfsg.1 build_gs_simple_font@Base 8.61.dfsg.1 build_gs_sub_font@Base 8.61.dfsg.1 build_proc_name_refs@Base 8.61.dfsg.1 buildfunction@Base 8.64~dfsg byte_acegbdfh_to_abcdefgh@Base 8.61.dfsg.1 byte_bit_run_length@Base 8.61.dfsg.1 byte_bit_run_length_0@Base 8.61.dfsg.1 byte_bit_run_length_1@Base 8.61.dfsg.1 byte_bit_run_length_2@Base 8.61.dfsg.1 byte_bit_run_length_3@Base 8.61.dfsg.1 byte_bit_run_length_4@Base 8.61.dfsg.1 byte_bit_run_length_5@Base 8.61.dfsg.1 byte_bit_run_length_6@Base 8.61.dfsg.1 byte_bit_run_length_7@Base 8.61.dfsg.1 byte_bit_run_length_neg@Base 8.61.dfsg.1 byte_count_bits@Base 8.61.dfsg.1 byte_reverse_bits@Base 8.61.dfsg.1 byte_right_mask@Base 8.61.dfsg.1 bytes_compare@Base 8.61.dfsg.1 bytes_copy_rectangle@Base 8.61.dfsg.1 bytes_copy_rectangle_zero_padding@Base 9.01~ bytes_fill_rectangle@Base 8.61.dfsg.1 bytes_rectangle_is_const@Base 9.07~dfsg-0ubuntu1 capture_spot_equivalent_cmyk_colors@Base 8.61.dfsg.1 cf1_run_uncompressed@Base 8.61.dfsg.1 cf2_run_eol_1d@Base 8.61.dfsg.1 cf2_run_eol_2d@Base 8.61.dfsg.1 cf2_run_horizontal@Base 8.61.dfsg.1 cf2_run_pass@Base 8.61.dfsg.1 cf2_run_uncompressed@Base 8.61.dfsg.1 cf2_run_vertical@Base 8.61.dfsg.1 cf_2d_decode@Base 8.61.dfsg.1 cf_black_decode@Base 8.61.dfsg.1 cf_black_runs@Base 8.61.dfsg.1 cf_run_eol@Base 8.61.dfsg.1 cf_uncompressed@Base 8.61.dfsg.1 cf_uncompressed_decode@Base 8.61.dfsg.1 cf_uncompressed_exit@Base 8.61.dfsg.1 cf_white_decode@Base 8.61.dfsg.1 cf_white_runs@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_ALT_CHARACTER_SET_INDEX@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_APPEND_TEXT@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_ASPECT_SOURCE_FLAGS@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_AUXILIARY_COLOR@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_BEGIN_METAFILE@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_BEGIN_PICTURE@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_BEGIN_PICTURE_BODY@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_CELL_ARRAY@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_CHARACTER_EXPANSION_FACTOR@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_CHARACTER_HEIGHT@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_CHARACTER_ORIENTATION@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_CHARACTER_SET_INDEX@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_CHARACTER_SPACING@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_CIRCLE@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_CIRCULAR_ARC_3_POINT@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_CIRCULAR_ARC_3_POINT_CLOSE@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_CIRCULAR_ARC_CENTER@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_CIRCULAR_ARC_CENTER_CLOSE@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_CLIP_INDICATOR@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_CLIP_RECTANGLE@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_COLOR_TABLE@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_DISJOINT_POLYLINE@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_EDGE_BUNDLE_INDEX@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_EDGE_COLOR@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_EDGE_TYPE@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_EDGE_VISIBILITY@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_EDGE_WIDTH@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_ELLIPSE@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_ELLIPTICAL_ARC@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_ELLIPTICAL_ARC_CLOSE@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_END_METAFILE@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_END_PICTURE@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_FILL_BUNDLE_INDEX@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_FILL_COLOR@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_FILL_REFERENCE_POINT@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_HATCH_INDEX@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_INTERIOR_STYLE@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_LINE_BUNDLE_INDEX@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_LINE_COLOR@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_LINE_TYPE@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_LINE_WIDTH@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_MARKER_BUNDLE_INDEX@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_MARKER_COLOR@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_MARKER_SIZE@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_MARKER_TYPE@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_PATTERN_INDEX@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_PATTERN_SIZE@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_POLYGON@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_POLYGON_SET@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_POLYLINE@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_POLYMARKER@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_RECTANGLE@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_RESTRICTED_TEXT@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_TEXT@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_TEXT_ALIGNMENT@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_TEXT_BUNDLE_INDEX@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_TEXT_COLOR@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_TEXT_FONT_INDEX@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_TEXT_PATH@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_TEXT_PRECISION@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_TRANSPARENCY@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_VDC_INTEGER_PRECISION@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_VDC_REAL_PRECISION@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_initialize@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_set_metafile_elements@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_set_picture_elements@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# cgm_terminate@Base 8.61.dfsg.1 charstring_execchar@Base 8.61.dfsg.1 charstring_font_get_refs@Base 8.61.dfsg.1 charstring_font_init@Base 8.61.dfsg.1 charstring_font_params@Base 8.61.dfsg.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# check_EPHuse@Base 9.07~dfsg-0ubuntu1 check_cie_range@Base 9.02~dfsg check_cmyk_color_model_comps@Base 8.63.dfsg.1 check_device_compatible_encoding@Base 9.25~dfsg+1-0ubuntu0.14.04.1 check_device_separable@Base 8.61.dfsg.1 check_pcm_and_separation_names@Base 8.61.dfsg.1 check_proc_failed@Base 8.61.dfsg.1 check_range@Base 9.00~dfsg #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# check_rgb_color_model_comps@Base 9.06~dfsg~20120802-0ubuntu1 check_separation_names@Base 9.25~dfsg+1-0ubuntu0.14.04.1 check_type_failed@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# chunk_locate_ptr@Base 8.61.dfsg.1 cid_fill_CIDMap@Base 8.61.dfsg.1 cid_fill_Identity_CIDMap@Base 8.70~ cid_font_data_param@Base 8.61.dfsg.1 cid_font_system_info_param@Base 8.61.dfsg.1 cid_system_info_is_null@Base 8.61.dfsg.1 cid_system_info_param@Base 8.61.dfsg.1 cid_system_info_set_null@Base 8.61.dfsg.1 cid_to_TT_charcode@Base 8.61.dfsg.1 cie_cache_joint@Base 8.61.dfsg.1 cie_cache_push_finish@Base 8.61.dfsg.1 cie_matrix_mult3@Base 9.00~dfsg cie_matrix_transpose3@Base 9.00~dfsg cie_mult3@Base 9.00~dfsg cie_points_param@Base 8.61.dfsg.1 cie_prepare_cache@Base 8.61.dfsg.1 cie_prepare_caches_4@Base 8.61.dfsg.1 cie_set_finish@Base 8.61.dfsg.1 cie_table_param@Base 8.61.dfsg.1 cieabcspace@Base 8.64~dfsg cieaspace@Base 8.64~dfsg ciedefgspace@Base 8.64~dfsg ciedefspace@Base 8.64~dfsg cieicc_prepare_caches@Base 9.00~dfsg #MISSING: 9.08~rc1~dfsg-0ubuntu1# cio_bytein@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# cio_byteout@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# cio_getbp@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# cio_numbytesleft@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# cio_read@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# cio_seek@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# cio_skip@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# cio_tell@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# cio_write@Base 9.06~dfsg-0ubuntu1 cl_cache_alloc@Base 9.16~dfsg~0-0ubuntu1 cl_cache_destroy@Base 9.16~dfsg~0-0ubuntu1 cl_cache_get_empty_slot@Base 9.16~dfsg~0-0ubuntu1 cl_cache_load_slot@Base 9.16~dfsg~0-0ubuntu1 cl_cache_read@Base 9.16~dfsg~0-0ubuntu1 cl_cache_read_init@Base 9.16~dfsg~0-0ubuntu1 clip_call_copy_alpha@Base 8.61.dfsg.1 clip_call_copy_alpha_hl_color@Base 9.06~dfsg~20120802-0ubuntu1 clip_call_copy_color@Base 8.61.dfsg.1 clip_call_copy_mono@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# clip_call_copy_plane@Base 9.04~dfsg clip_call_copy_planes@Base 9.05~dfsg clip_call_fill_mask@Base 8.61.dfsg.1 clip_call_fill_rectangle@Base 8.61.dfsg.1 clip_call_fill_rectangle_hl_color@Base 9.06~dfsg~20120802-0ubuntu1 clip_call_strip_copy_rop2@Base 9.05~ clip_call_strip_copy_rop@Base 8.61.dfsg.1 clip_call_strip_tile_rect_devn@Base 9.06~dfsg~20120802-0ubuntu1 clip_call_strip_tile_rectangle@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# clist_VMerror_recover@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# clist_VMerror_recover_flush@Base 8.61.dfsg.1 clist_begin_typed_image@Base 8.61.dfsg.1 clist_bitmap_bytes@Base 8.61.dfsg.1 clist_cfd_init@Base 8.61.dfsg.1 clist_cfe_init@Base 8.61.dfsg.1 clist_change_bits@Base 8.61.dfsg.1 clist_change_tile@Base 8.61.dfsg.1 clist_close_output_file@Base 8.61.dfsg.1 clist_close_page_info@Base 8.61.dfsg.1 clist_close_writer_and_init_reader@Base 8.63.dfsg.1 clist_compressor_init@Base 9.00~dfsg #MISSING: 9.00~dfsg-1# clist_compressor_state@Base 8.61.dfsg.1 clist_compressor_template@Base 9.00~dfsg #MISSING: 9.08~rc1~dfsg-0ubuntu1# clist_compute_color_usage@Base 9.06~dfsg~20120802-0ubuntu1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# clist_compute_colors_used@Base 8.61.dfsg.1 clist_copy_alpha@Base 8.61.dfsg.1 clist_copy_alpha_hl_color@Base 9.06~dfsg~20120802-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# clist_copy_band_complexity@Base 8.61.dfsg.1 clist_copy_color@Base 8.61.dfsg.1 clist_copy_mono@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# clist_copy_plane@Base 9.04~dfsg clist_copy_planes@Base 9.05~ clist_create_compositor@Base 8.61.dfsg.1 clist_data_size@Base 8.63.dfsg.1 clist_decompressor_init@Base 9.00~dfsg #MISSING: 9.00~dfsg-1# clist_decompressor_state@Base 8.61.dfsg.1 clist_decompressor_template@Base 9.00~dfsg clist_dev_spec_op@Base 9.04~dfsg clist_enable_multi_thread_render@Base 8.63.dfsg.1 clist_end_page@Base 8.61.dfsg.1 clist_fill_linear_color_trapezoid@Base 8.61.dfsg.1 clist_fill_linear_color_triangle@Base 8.61.dfsg.1 clist_fill_mask@Base 8.61.dfsg.1 clist_fill_parallelogram@Base 8.61.dfsg.1 clist_fill_path@Base 8.61.dfsg.1 clist_fill_rectangle@Base 8.61.dfsg.1 clist_fill_rectangle_hl_color@Base 9.06~dfsg~20120802-0ubuntu1 clist_fill_trapezoid@Base 8.61.dfsg.1 clist_fill_triangle@Base 8.61.dfsg.1 clist_fillpage@Base 8.64~dfsg clist_finish_page@Base 8.61.dfsg.1 clist_free_icc_table@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# clist_get_band_complexity@Base 8.61.dfsg.1 clist_get_bits_rectangle@Base 8.61.dfsg.1 clist_get_data@Base 8.63.dfsg.1 clist_icc_addentry@Base 9.00~dfsg clist_icc_addprofile@Base 9.00~dfsg #MISSING: 9.14~dfsg-0ubuntu1# clist_icc_freetable@Base 9.00~dfsg clist_icc_searchtable@Base 9.00~dfsg clist_icc_table_finalize@Base 9.15~dfsg-0ubuntu1 clist_icc_writetable@Base 9.00~dfsg #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# clist_imager_state_initial@Base 8.61.dfsg.1 clist_init_io_procs@Base 8.61.dfsg.1 clist_io_procs_file_global@Base 8.61.dfsg.1 clist_io_procs_memory@Base 8.61.dfsg.1 clist_io_procs_memory_global@Base 8.61.dfsg.1 clist_make_accum_device@Base 9.14~dfsg-0ubuntu1 clist_open@Base 8.63.dfsg.1 clist_output_page@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.04~dfsg-1# clist_pattern_manage@Base 8.61.dfsg.1 clist_playback_band@Base 8.61.dfsg.1 clist_playback_file_bands@Base 8.61.dfsg.1 clist_process_page@Base 9.14~dfsg-0ubuntu1 clist_put_data@Base 8.63.dfsg.1 clist_rasterize_lines@Base 8.63.dfsg.1 clist_read_chunk@Base 9.00~dfsg clist_read_color_usage_array@Base 9.08~rc1~dfsg-0ubuntu1 clist_read_icctable@Base 9.00~dfsg clist_render_init@Base 8.63.dfsg.1 clist_render_rectangle@Base 8.61.dfsg.1 clist_rld_init@Base 8.61.dfsg.1 clist_rle_init@Base 8.61.dfsg.1 clist_select_color0@Base 8.61.dfsg.1 clist_select_color1@Base 8.61.dfsg.1 clist_select_render_plane@Base 8.63.dfsg.1 clist_select_tile_color0@Base 8.61.dfsg.1 clist_select_tile_color1@Base 8.61.dfsg.1 clist_setup_params@Base 8.61.dfsg.1 clist_strip_copy_rop2@Base 9.05~ clist_strip_copy_rop@Base 8.61.dfsg.1 clist_strip_tile_rect_devn@Base 9.06~dfsg~20120802-0ubuntu1 clist_strip_tile_rectangle@Base 8.61.dfsg.1 clist_stroke_path@Base 8.61.dfsg.1 clist_teardown_render_threads@Base 8.63.dfsg.1 clist_update_trans_bbox@Base 9.08~rc1~dfsg-0ubuntu1 clist_write_color_usage_array@Base 9.08~rc1~dfsg-0ubuntu1 clist_writer_check_empty_cropping_stack@Base 8.63.dfsg.1 clist_writer_color_usage@Base 9.08~rc1~dfsg-0ubuntu1 clist_writer_pop_cropping@Base 8.63.dfsg.1 clist_writer_push_cropping@Base 8.63.dfsg.1 clist_writer_push_no_cropping@Base 8.63.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# close_margins@Base 8.61.dfsg.1 clump_locate_ptr@Base 9.25~dfsg+1-0ubuntu0.14.04.1 clump_splay_app@Base 9.25~dfsg+1-0ubuntu0.14.04.1 clump_splay_walk_bwd@Base 9.25~dfsg+1-0ubuntu0.14.04.1 clump_splay_walk_bwd_init@Base 9.25~dfsg+1-0ubuntu0.14.04.1 clump_splay_walk_fwd@Base 9.25~dfsg+1-0ubuntu0.14.04.1 clump_splay_walk_init@Base 9.25~dfsg+1-0ubuntu0.14.04.1 clump_splay_walk_init_mid@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmap_procs_default@Base 8.61.dfsg.1 cmap_transfer@Base 9.02~dfsg cmap_transfer_halftone@Base 9.00~dfsg cmap_transfer_plane@Base 9.04~dfsg cmd_check_clip_path@Base 8.61.dfsg.1 cmd_clear_known@Base 8.61.dfsg.1 cmd_delta_offsets@Base 8.61.dfsg.1 cmd_drawing_color_usage@Base 9.06~dfsg~20120802-0ubuntu1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# cmd_drawing_colors_used@Base 8.61.dfsg.1 cmd_get_buffer_space@Base 8.63.dfsg.1 cmd_put_bits@Base 8.61.dfsg.1 cmd_put_color@Base 8.61.dfsg.1 cmd_put_color_map@Base 8.61.dfsg.1 cmd_put_color_mapping@Base 8.61.dfsg.1 cmd_put_drawing_color@Base 8.61.dfsg.1 cmd_put_enable_clip@Base 8.61.dfsg.1 cmd_put_enable_lop@Base 8.61.dfsg.1 cmd_put_frac31@Base 8.61.dfsg.1 cmd_put_halftone@Base 8.61.dfsg.1 cmd_put_list_op@Base 8.61.dfsg.1 cmd_put_params@Base 8.61.dfsg.1 cmd_put_range_op@Base 8.61.dfsg.1 cmd_put_w@Base 8.61.dfsg.1 cmd_read_matrix@Base 8.62.dfsg.1 cmd_set_lop@Base 8.61.dfsg.1 cmd_set_tile_colors@Base 8.61.dfsg.1 cmd_set_tile_phase@Base 8.61.dfsg.1 cmd_set_tile_phase_generic@Base 8.63.dfsg.1 cmd_size_frac31@Base 8.61.dfsg.1 cmd_size_w@Base 8.61.dfsg.1 cmd_slow_rop@Base 8.61.dfsg.1 cmd_update_lop@Base 8.61.dfsg.1 cmd_write_buffer@Base 8.61.dfsg.1 cmd_write_ctm@Base 8.61.dfsg.1 cmd_write_ctm_return_length@Base 8.61.dfsg.1 cmd_write_ctm_return_length_nodevice@Base 8.62.dfsg.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# cmd_write_icctable@Base 9.00~dfsg cmd_write_page_rect_cmd@Base 8.64~dfsg cmd_write_pseudo_band@Base 9.08~rc1~dfsg-0ubuntu1 cmd_write_rect_cmd@Base 8.61.dfsg.1 cmd_write_rect_hl_cmd@Base 9.06~dfsg~20120802-0ubuntu1 cmd_write_unknown@Base 8.61.dfsg.1 cmsAdaptToIlluminant@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsAllocNamedColorList@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsAllocProfileSequenceDescription@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsAppendNamedColor@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsBFDdeltaE@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsBuildGamma@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsBuildParametricToneCurve@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsBuildSegmentedToneCurve@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsBuildTabulatedToneCurve16@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsBuildTabulatedToneCurveFloat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCIE2000DeltaE@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCIE94DeltaE@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCIECAM02Done@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCIECAM02Forward@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCIECAM02Init@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCIECAM02Reverse@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCMCdeltaE@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# cmsChangeBuffersFormat@Base 9.07~dfsg2-0ubuntu1 cmsChannelsOf@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCloneTransformChangingFormats@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCloseIOhandler@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCloseProfile@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCreateBCHSWabstractProfile@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsCreateBCHSWabstractProfileTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCreateContext@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCreateExtendedTransform@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCreateGrayProfile@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsCreateGrayProfileTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCreateInkLimitingDeviceLink@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsCreateInkLimitingDeviceLinkTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCreateLab2Profile@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsCreateLab2ProfileTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCreateLab4Profile@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsCreateLab4ProfileTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCreateLinearizationDeviceLink@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsCreateLinearizationDeviceLinkTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCreateMultiprofileTransform@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsCreateMultiprofileTransformTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCreateNULLProfile@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsCreateNULLProfileTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCreateProfilePlaceholder@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCreateProofingTransform@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsCreateProofingTransformTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCreateRGBProfile@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsCreateRGBProfileTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCreateTransform@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsCreateTransformTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCreateXYZProfile@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsCreateXYZProfileTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsCreate_sRGBProfile@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsCreate_sRGBProfileTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsD50_XYZ@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsD50_xyY@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsDeleteContext@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsDeleteTransform@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsDeltaE@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsDesaturateLab@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsDetectBlackPoint@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsDetectDestinationBlackPoint@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsDetectTAC@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsDictAddEntry@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsDictAlloc@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsDictDup@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsDictFree@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsDictGetEntryList@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsDictNextEntry@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsDoTransform@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsDoTransformLineStride@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsDoTransformStride@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsDupContext@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsDupNamedColorList@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsDupProfileSequenceDescription@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsDupToneCurve@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsEstimateGamma@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsEvalToneCurve16@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsEvalToneCurveFloat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsFloat2LabEncoded@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsFloat2LabEncodedV2@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsFloat2XYZEncoded@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsFormatterForColorspaceOfProfile@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsFormatterForPCSOfProfile@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsFreeNamedColorList@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsFreeProfileSequenceDescription@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsFreeToneCurve@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsFreeToneCurveTriple@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetAlarmCodes@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsGetAlarmCodesTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetColorSpace@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetContextUserData@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetDeviceClass@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetEncodedCMMversion@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetEncodedICCversion@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetHeaderAttributes@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetHeaderCreationDateTime@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetHeaderCreator@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetHeaderFlags@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetHeaderManufacturer@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetHeaderModel@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetHeaderProfileID@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetHeaderRenderingIntent@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetNamedColorList@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetPCS@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# cmsGetPipelineContextID@Base 9.07~dfsg2-0ubuntu1 cmsGetPostScriptCRD@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetPostScriptCSA@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetPostScriptColorResource@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# cmsGetProfileContextID@Base 9.07~dfsg2-0ubuntu1 cmsGetProfileIOhandler@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetProfileInfo@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetProfileInfoASCII@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetProfileVersion@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetSupportedIntents@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsGetSupportedIntentsTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetTagCount@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetTagSignature@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetToneCurveEstimatedTable@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetToneCurveEstimatedTableEntries@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetToneCurveParametricType@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# cmsGetTransformContextID@Base 9.07~dfsg2-0ubuntu1 cmsGetTransformInputFormat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsGetTransformOutputFormat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8Alloc@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8DefineDblFormat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8EnumDataFormat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8EnumProperties@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8EnumPropertyMulti@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8FindDataFormat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8Free@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8GetData@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8GetDataDbl@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8GetDataRowCol@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8GetDataRowColDbl@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8GetPatchByName@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8GetPatchName@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8GetProperty@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8GetPropertyDbl@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8GetPropertyMulti@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8GetSheetType@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8LoadFromFile@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8LoadFromMem@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8SaveToFile@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8SaveToMem@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8SetComment@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8SetData@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8SetDataDbl@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8SetDataFormat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8SetDataRowCol@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8SetDataRowColDbl@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8SetIndexColumn@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8SetPropertyDbl@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8SetPropertyHex@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8SetPropertyMulti@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8SetPropertyStr@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8SetPropertyUncooked@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8SetSheetType@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8SetTable@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8SetTableByLabel@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIT8TableCount@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIsCLUT@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIsIntentSupported@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIsMatrixShaper@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIsTag@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIsToneCurveDescending@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIsToneCurveLinear@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIsToneCurveMonotonic@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsIsToneCurveMultisegment@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsJoinToneCurve@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsLCh2Lab@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsLab2LCh@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsLab2XYZ@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsLabEncoded2Float@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsLabEncoded2FloatV2@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsLinkTag@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsMD5computeID@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsMLUalloc@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsMLUdup@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsMLUfree@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsMLUgetASCII@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsMLUgetTranslation@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsMLUgetWide@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsMLUsetASCII@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsMLUsetWide@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsMLUtranslationsCodes@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsMLUtranslationsCount@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsNamedColorCount@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsNamedColorIndex@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsNamedColorInfo@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsOpenIOhandlerFromFile@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsOpenIOhandlerFromMem@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsOpenIOhandlerFromNULL@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsOpenIOhandlerFromStream@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsOpenProfileFromFile@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsOpenProfileFromFileTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsOpenProfileFromIOhandler2@Base 9.26~dfsg+0-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsOpenProfileFromIOhandler2THR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsOpenProfileFromIOhandler@Base 9.26~dfsg+0-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsOpenProfileFromIOhandlerTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsOpenProfileFromMem@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsOpenProfileFromMemTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsOpenProfileFromStream@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsOpenProfileFromStreamTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsPipelineAlloc@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsPipelineCat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsPipelineCheckAndRetreiveStages@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsPipelineDup@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsPipelineEval16@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsPipelineEvalFloat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsPipelineEvalReverseFloat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsPipelineFree@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsPipelineGetPtrToFirstStage@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsPipelineGetPtrToLastStage@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsPipelineInputChannels@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsPipelineInsertStage@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsPipelineOutputChannels@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsPipelineSetSaveAs8bitsFlag@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsPipelineStageCount@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsPipelineUnlinkStage@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsPlugin@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsPluginTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsReadRawTag@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsReadTag@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsReverseToneCurve@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsReverseToneCurveEx@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsSaveProfileToFile@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsSaveProfileToIOhandler@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsSaveProfileToMem@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsSaveProfileToStream@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsSetAdaptationState@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsSetAdaptationStateTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsSetAlarmCodes@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsSetAlarmCodesTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsSetColorSpace@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsSetDeviceClass@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsSetEncodedICCversion@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsSetHeaderAttributes@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsSetHeaderFlags@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsSetHeaderManufacturer@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsSetHeaderModel@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsSetHeaderProfileID@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsSetHeaderRenderingIntent@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsSetLogErrorHandler@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsSetLogErrorHandlerTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsSetPCS@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsSetProfileVersion@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsSignalError@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsSliceSpace16@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsSliceSpaceFloat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsSmoothToneCurve@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsStageAllocCLut16bit@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsStageAllocCLut16bitGranular@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsStageAllocCLutFloat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsStageAllocCLutFloatGranular@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsStageAllocIdentity@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsStageAllocMatrix@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsStageAllocToneCurves@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsStageData@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsStageDup@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsStageFree@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsStageInputChannels@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsStageNext@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsStageOutputChannels@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsStageSampleCLut16bit@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsStageSampleCLutFloat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsStageType@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsTagLinkedTo@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsTempFromWhitePoint@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsTransform2DeviceLink@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsUnregisterPlugins@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.26~dfsg+0-0ubuntu0.14.04.1# cmsUnregisterPluginsTHR@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsWhitePointFromTemp@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsWriteRawTag@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsWriteTag@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsXYZ2Lab@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsXYZ2xyY@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsXYZEncoded2Float@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsfilelength@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsstrcasecmp@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmsxyY2XYZ@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cmyk_16bit_map_cmyk_color@Base 8.71~dfsg cmyk_16bit_map_color_cmyk@Base 8.71~dfsg cmyk_1bit_map_cmyk_color@Base 8.61.dfsg.1 cmyk_1bit_map_color_cmyk@Base 8.61.dfsg.1 cmyk_1bit_map_color_rgb@Base 8.61.dfsg.1 cmyk_8bit_map_cmyk_color@Base 8.61.dfsg.1 cmyk_8bit_map_color_cmyk@Base 8.61.dfsg.1 cmyk_8bit_map_color_rgb@Base 8.61.dfsg.1 cmyk_cs_to_cmyk_cm@Base 8.61.dfsg.1 cmyk_cs_to_devn_cm@Base 8.61.dfsg.1 codepoint_to_utf8@Base 9.08~rc1~dfsg-0ubuntu1 colorProcs@Base 8.64~dfsg color_cmyk_to_gray@Base 8.61.dfsg.1 color_cmyk_to_rgb@Base 8.61.dfsg.1 color_rgb_to_cmyk@Base 8.61.dfsg.1 color_rgb_to_gray@Base 8.61.dfsg.1 common_identity@Base 9.00~dfsg #MISSING: 9.18~dfsg~0-0ubuntu1# comp_bit_factor@Base 8.61.dfsg.1 composite_values@Base 8.61.dfsg.1 const_90_degrees@Base 9.01~ constant_color_quadrangle@Base 8.61.dfsg.1 context_state_alloc@Base 8.61.dfsg.1 context_state_free@Base 8.61.dfsg.1 context_state_load@Base 8.61.dfsg.1 context_state_store@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# continue_margin_common@Base 8.61.dfsg.1 convert_DeviceN_alternate@Base 9.08~rc1~dfsg-0ubuntu1 convert_separation_alternate@Base 9.08~rc1~dfsg-0ubuntu1 copied_drop_extension_glyphs@Base 8.61.dfsg.1 copied_get_notdef@Base 8.61.dfsg.1 copied_order_font@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# copies@Base 8.61.dfsg.1 copy_font_name@Base 8.61.dfsg.1 cos_array_add@Base 8.61.dfsg.1 cos_array_add_c_string@Base 8.61.dfsg.1 cos_array_add_int@Base 8.61.dfsg.1 cos_array_add_no_copy@Base 8.61.dfsg.1 cos_array_add_object@Base 8.61.dfsg.1 cos_array_add_real@Base 8.61.dfsg.1 cos_array_alloc@Base 8.61.dfsg.1 cos_array_element_first@Base 8.61.dfsg.1 cos_array_element_next@Base 8.61.dfsg.1 cos_array_from_floats@Base 8.61.dfsg.1 cos_array_procs@Base 8.61.dfsg.1 cos_array_put@Base 8.61.dfsg.1 cos_array_put_no_copy@Base 8.61.dfsg.1 cos_array_unadd@Base 8.61.dfsg.1 cos_become@Base 8.61.dfsg.1 cos_c_string_value@Base 8.61.dfsg.1 cos_dict_alloc@Base 8.61.dfsg.1 cos_dict_delete_c_key@Base 9.07~dfsg-0ubuntu1 cos_dict_elements_write@Base 8.61.dfsg.1 cos_dict_find@Base 8.61.dfsg.1 cos_dict_find_c_key@Base 8.61.dfsg.1 cos_dict_forall@Base 8.61.dfsg.1 cos_dict_move_all@Base 8.61.dfsg.1 cos_dict_objects_delete@Base 8.61.dfsg.1 cos_dict_objects_write@Base 8.61.dfsg.1 cos_dict_procs@Base 8.61.dfsg.1 cos_dict_put@Base 8.61.dfsg.1 cos_dict_put_c_key@Base 8.61.dfsg.1 cos_dict_put_c_key_bool@Base 8.61.dfsg.1 cos_dict_put_c_key_floats@Base 8.61.dfsg.1 cos_dict_put_c_key_int@Base 8.61.dfsg.1 cos_dict_put_c_key_object@Base 8.61.dfsg.1 cos_dict_put_c_key_real@Base 8.61.dfsg.1 cos_dict_put_c_key_string@Base 8.61.dfsg.1 cos_dict_put_c_strings@Base 8.61.dfsg.1 cos_dict_put_no_copy@Base 8.61.dfsg.1 cos_dict_put_string@Base 8.61.dfsg.1 cos_dict_put_string_copy@Base 8.61.dfsg.1 cos_free@Base 8.61.dfsg.1 cos_generic_procs@Base 8.61.dfsg.1 cos_object_alloc@Base 8.61.dfsg.1 cos_object_memory@Base 8.61.dfsg.1 cos_object_value@Base 8.61.dfsg.1 cos_param_list_writer_init@Base 8.61.dfsg.1 cos_reference_alloc@Base 9.06~dfsg~20120802-0ubuntu1 cos_reference_procs@Base 9.06~dfsg~20120802-0ubuntu1 cos_release@Base 8.61.dfsg.1 cos_resource_value@Base 8.61.dfsg.1 cos_stream_add@Base 8.61.dfsg.1 cos_stream_add_bytes@Base 8.61.dfsg.1 cos_stream_add_stream_contents@Base 8.61.dfsg.1 cos_stream_alloc@Base 8.61.dfsg.1 cos_stream_contents_write@Base 8.61.dfsg.1 cos_stream_dict@Base 8.61.dfsg.1 cos_stream_elements_write@Base 8.61.dfsg.1 cos_stream_from_pipeline@Base 8.61.dfsg.1 cos_stream_length@Base 8.61.dfsg.1 cos_stream_procs@Base 8.61.dfsg.1 cos_stream_release_pieces@Base 8.61.dfsg.1 cos_string_value@Base 8.61.dfsg.1 cos_value_free@Base 8.61.dfsg.1 cos_value_write@Base 8.61.dfsg.1 cos_write@Base 8.61.dfsg.1 cos_write_dict_as_ordered_array@Base 9.14~dfsg-0ubuntu1 cos_write_object@Base 8.61.dfsg.1 cos_write_stream_alloc@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# cos_write_stream_from_pipeline@Base 8.61.dfsg.1 cpath_is_rectangle@Base 8.61.dfsg.1 create_2d_gauss_filter@Base 9.25~dfsg+1-0ubuntu0.14.04.1 create_names_array@Base 8.61.dfsg.1 cs_adjust_counts_icc@Base 9.00~dfsg cups_close@Base 8.61.dfsg.1 cups_decode_color@Base 8.61.dfsg.1 cups_encode_color@Base 8.61.dfsg.1 cups_get_color_comp_index@Base 8.71~dfsg2-5~ cups_get_color_mapping_procs@Base 8.61.dfsg.1 cups_get_matrix@Base 8.61.dfsg.1 cups_get_params@Base 8.61.dfsg.1 cups_get_space_params@Base 8.61.dfsg.1 cups_map_cmyk@Base 8.61.dfsg.1 cups_map_gray@Base 8.61.dfsg.1 cups_map_rgb@Base 8.61.dfsg.1 cups_open@Base 8.61.dfsg.1 cups_output_page@Base 9.08~rc1~dfsg-0ubuntu1 cups_print_pages@Base 8.61.dfsg.1 cups_procs@Base 8.61.dfsg.1 cups_put_params@Base 8.61.dfsg.1 cups_set_color_info@Base 8.61.dfsg.1 cups_spec_op@Base 9.25~dfsg+1-0ubuntu0.14.04.1 cups_sync_output@Base 8.61.dfsg.1 curve_coeffs_ranged@Base 8.61.dfsg.1 data_image_params@Base 8.61.dfsg.1 data_source_access_bytes@Base 8.61.dfsg.1 data_source_access_stream@Base 8.61.dfsg.1 data_source_access_string@Base 8.61.dfsg.1 debug_dump_array@Base 8.61.dfsg.1 debug_dump_bitmap@Base 8.61.dfsg.1 debug_dump_bytes@Base 8.61.dfsg.1 debug_dump_one_ref@Base 8.61.dfsg.1 debug_dump_refs@Base 8.61.dfsg.1 debug_dump_stack@Base 8.61.dfsg.1 debug_print_name@Base 8.61.dfsg.1 debug_print_name_index@Base 8.61.dfsg.1 debug_print_ref@Base 8.61.dfsg.1 debug_print_ref_packed@Base 8.61.dfsg.1 debug_print_string@Base 8.61.dfsg.1 debug_print_string_hex@Base 8.61.dfsg.1 debug_print_string_hex_nomem@Base 9.07~dfsg-0ubuntu1 default_defaultWidthX@Base 8.61.dfsg.1 default_subclass_begin_image@Base 9.18~dfsg~0-0ubuntu1 default_subclass_begin_transparency_group@Base 9.18~dfsg~0-0ubuntu1 default_subclass_begin_transparency_mask@Base 9.18~dfsg~0-0ubuntu1 default_subclass_begin_typed_image@Base 9.18~dfsg~0-0ubuntu1 default_subclass_close_device@Base 9.18~dfsg~0-0ubuntu1 default_subclass_copy_alpha@Base 9.18~dfsg~0-0ubuntu1 default_subclass_copy_alpha_hl_color@Base 9.18~dfsg~0-0ubuntu1 default_subclass_copy_color@Base 9.18~dfsg~0-0ubuntu1 default_subclass_copy_mono@Base 9.18~dfsg~0-0ubuntu1 default_subclass_copy_planes@Base 9.18~dfsg~0-0ubuntu1 default_subclass_copy_rop@Base 9.18~dfsg~0-0ubuntu1 default_subclass_create_compositor@Base 9.18~dfsg~0-0ubuntu1 default_subclass_decode_color@Base 9.18~dfsg~0-0ubuntu1 default_subclass_dev_spec_op@Base 9.18~dfsg~0-0ubuntu1 default_subclass_discard_transparency_layer@Base 9.18~dfsg~0-0ubuntu1 default_subclass_draw_line@Base 9.18~dfsg~0-0ubuntu1 default_subclass_draw_thin_line@Base 9.18~dfsg~0-0ubuntu1 default_subclass_encode_color@Base 9.18~dfsg~0-0ubuntu1 default_subclass_end_image@Base 9.18~dfsg~0-0ubuntu1 default_subclass_end_transparency_group@Base 9.18~dfsg~0-0ubuntu1 default_subclass_end_transparency_mask@Base 9.18~dfsg~0-0ubuntu1 default_subclass_fill_linear_color_scanline@Base 9.18~dfsg~0-0ubuntu1 default_subclass_fill_linear_color_trapezoid@Base 9.18~dfsg~0-0ubuntu1 default_subclass_fill_linear_color_triangle@Base 9.18~dfsg~0-0ubuntu1 default_subclass_fill_mask@Base 9.18~dfsg~0-0ubuntu1 default_subclass_fill_parallelogram@Base 9.18~dfsg~0-0ubuntu1 default_subclass_fill_path@Base 9.18~dfsg~0-0ubuntu1 default_subclass_fill_rectangle@Base 9.18~dfsg~0-0ubuntu1 default_subclass_fill_rectangle_hl_color@Base 9.18~dfsg~0-0ubuntu1 default_subclass_fill_trapezoid@Base 9.18~dfsg~0-0ubuntu1 default_subclass_fill_triangle@Base 9.18~dfsg~0-0ubuntu1 default_subclass_fillpage@Base 9.18~dfsg~0-0ubuntu1 default_subclass_finalize@Base 9.25~dfsg+1-0ubuntu0.14.04.1 default_subclass_finish_copydevice@Base 9.18~dfsg~0-0ubuntu1 default_subclass_get_alpha_bits@Base 9.18~dfsg~0-0ubuntu1 default_subclass_get_band@Base 9.18~dfsg~0-0ubuntu1 default_subclass_get_bits@Base 9.18~dfsg~0-0ubuntu1 default_subclass_get_bits_rectangle@Base 9.18~dfsg~0-0ubuntu1 default_subclass_get_clipping_box@Base 9.18~dfsg~0-0ubuntu1 default_subclass_get_color_comp_index@Base 9.18~dfsg~0-0ubuntu1 default_subclass_get_color_mapping_procs@Base 9.18~dfsg~0-0ubuntu1 default_subclass_get_hardware_params@Base 9.18~dfsg~0-0ubuntu1 default_subclass_get_initial_matrix@Base 9.18~dfsg~0-0ubuntu1 default_subclass_get_page_device@Base 9.18~dfsg~0-0ubuntu1 default_subclass_get_params@Base 9.18~dfsg~0-0ubuntu1 default_subclass_get_profile@Base 9.18~dfsg~0-0ubuntu1 default_subclass_get_xfont_device@Base 9.18~dfsg~0-0ubuntu1 default_subclass_get_xfont_procs@Base 9.18~dfsg~0-0ubuntu1 default_subclass_image_data@Base 9.18~dfsg~0-0ubuntu1 default_subclass_include_color_space@Base 9.18~dfsg~0-0ubuntu1 default_subclass_map_cmyk_color@Base 9.18~dfsg~0-0ubuntu1 default_subclass_map_color_rgb@Base 9.18~dfsg~0-0ubuntu1 default_subclass_map_color_rgb_alpha@Base 9.18~dfsg~0-0ubuntu1 default_subclass_map_rgb_alpha_color@Base 9.18~dfsg~0-0ubuntu1 default_subclass_map_rgb_color@Base 9.18~dfsg~0-0ubuntu1 default_subclass_open_device@Base 9.18~dfsg~0-0ubuntu1 default_subclass_output_page@Base 9.18~dfsg~0-0ubuntu1 default_subclass_pattern_manage@Base 9.18~dfsg~0-0ubuntu1 default_subclass_pop_transparency_state@Base 9.18~dfsg~0-0ubuntu1 default_subclass_process_page@Base 9.18~dfsg~0-0ubuntu1 default_subclass_push_transparency_state@Base 9.18~dfsg~0-0ubuntu1 default_subclass_put_image@Base 9.18~dfsg~0-0ubuntu1 default_subclass_put_params@Base 9.18~dfsg~0-0ubuntu1 default_subclass_ret_devn_params@Base 9.18~dfsg~0-0ubuntu1 default_subclass_set_graphics_type_tag@Base 9.18~dfsg~0-0ubuntu1 default_subclass_strip_copy_rop2@Base 9.18~dfsg~0-0ubuntu1 default_subclass_strip_copy_rop@Base 9.18~dfsg~0-0ubuntu1 default_subclass_strip_tile_rect_devn@Base 9.18~dfsg~0-0ubuntu1 default_subclass_strip_tile_rectangle@Base 9.18~dfsg~0-0ubuntu1 default_subclass_stroke_path@Base 9.18~dfsg~0-0ubuntu1 default_subclass_sync_output@Base 9.18~dfsg~0-0ubuntu1 default_subclass_text_begin@Base 9.18~dfsg~0-0ubuntu1 default_subclass_tile_rectangle@Base 9.18~dfsg~0-0ubuntu1 default_subclass_transform_pixel_region@Base 9.26~dfsg+0-0ubuntu0.14.04.1 default_subclass_update_spot_equivalent_colors@Base 9.18~dfsg~0-0ubuntu1 define_gs_font@Base 8.61.dfsg.1 devn_copy_params@Base 9.02~dfsg #MISSING: 9.18~dfsg~0-0ubuntu1# devn_decode_compressed_color@Base 8.61.dfsg.1 #MISSING: 9.18~dfsg~0-0ubuntu1# devn_encode_compressed_color@Base 8.61.dfsg.1 devn_free_params@Base 9.02~dfsg devn_get_color_comp_index@Base 8.61.dfsg.1 devn_get_params@Base 8.61.dfsg.1 devn_printer_put_params@Base 8.61.dfsg.1 devn_put_params@Base 8.61.dfsg.1 #MISSING: 9.18~dfsg~0-0ubuntu1# devn_unpack_row@Base 8.61.dfsg.1 dflush@Base 8.61.dfsg.1 dict_alloc@Base 8.61.dfsg.1 dict_bool_param@Base 8.61.dfsg.1 dict_check_uid_param@Base 8.61.dfsg.1 dict_copy_entries@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# dict_default_pack@Base 8.61.dfsg.1 dict_find@Base 8.61.dfsg.1 dict_find_string@Base 8.61.dfsg.1 dict_first@Base 8.61.dfsg.1 dict_float_array_check_param@Base 8.61.dfsg.1 dict_float_array_param@Base 8.61.dfsg.1 dict_float_param@Base 8.61.dfsg.1 dict_floats_param@Base 8.61.dfsg.1 dict_floats_param_errorinfo@Base 8.61.dfsg.1 dict_grow@Base 8.61.dfsg.1 dict_index_entry@Base 8.61.dfsg.1 dict_int_array_check_param@Base 8.61.dfsg.1 dict_int_array_param@Base 8.61.dfsg.1 dict_int_null_param@Base 8.61.dfsg.1 dict_int_param@Base 8.61.dfsg.1 dict_ints_param@Base 8.61.dfsg.1 dict_length@Base 8.61.dfsg.1 dict_matrix3_param@Base 8.61.dfsg.1 dict_matrix_param@Base 8.61.dfsg.1 dict_max_index@Base 8.61.dfsg.1 dict_max_size@Base 8.61.dfsg.1 dict_maxlength@Base 8.61.dfsg.1 dict_next@Base 8.61.dfsg.1 dict_param_list_read@Base 8.61.dfsg.1 dict_param_list_write@Base 8.61.dfsg.1 dict_proc3_param@Base 8.61.dfsg.1 dict_proc_array_param@Base 8.61.dfsg.1 dict_proc_param@Base 8.61.dfsg.1 dict_put@Base 8.61.dfsg.1 dict_put_string@Base 8.61.dfsg.1 dict_put_string_copy@Base 9.25~dfsg+1-0ubuntu0.14.04.1 dict_range3_param@Base 8.61.dfsg.1 dict_ranges_param@Base 8.61.dfsg.1 dict_read_password@Base 8.61.dfsg.1 dict_resize@Base 8.61.dfsg.1 dict_round_size_large@Base 8.61.dfsg.1 dict_round_size_small@Base 8.61.dfsg.1 dict_uid_param@Base 8.61.dfsg.1 dict_uint_param@Base 8.61.dfsg.1 dict_undef@Base 8.61.dfsg.1 dict_unpack@Base 8.61.dfsg.1 dict_value_index@Base 8.61.dfsg.1 dict_write_password@Base 8.61.dfsg.1 display_set_callback@Base 8.61.dfsg.1 dljet_mono_print_page@Base 8.61.dfsg.1 dljet_mono_print_page_copies@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# dlsym_wrapper@Base 8.61.dfsg.1 dmprintf_file_and_line@Base 9.07~dfsg-0ubuntu1 dorestore@Base 9.25~dfsg+1-0ubuntu0.14.04.1 dprintf_file_and_line@Base 8.61.dfsg.1 dprintf_file_and_line_format@Base 8.61.dfsg.1 dprintf_file_only_format@Base 8.61.dfsg.1 dsc_add_media@Base 8.61.dfsg.1 dsc_add_page@Base 8.61.dfsg.1 dsc_debug_print@Base 8.61.dfsg.1 dsc_find_platefile@Base 8.61.dfsg.1 dsc_fixup@Base 8.61.dfsg.1 dsc_free@Base 8.61.dfsg.1 dsc_init@Base 8.61.dfsg.1 dsc_init_with_alloc@Base 8.61.dfsg.1 dsc_known_media@Base 8.61.dfsg.1 dsc_new@Base 8.61.dfsg.1 dsc_ref@Base 8.61.dfsg.1 dsc_scan_data@Base 8.61.dfsg.1 dsc_set_debug_function@Base 8.61.dfsg.1 dsc_set_error_function@Base 8.61.dfsg.1 dsc_set_length@Base 8.61.dfsg.1 dsc_set_page_bbox@Base 8.61.dfsg.1 dsc_stricmp@Base 8.61.dfsg.1 dsc_unref@Base 8.61.dfsg.1 dstack_dict_is_permanent@Base 8.61.dfsg.1 dstack_find_name_by_index@Base 8.61.dfsg.1 dstack_gc_cleanup@Base 8.61.dfsg.1 dstack_set_top@Base 8.61.dfsg.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# dwt_calc_explicit_stepsizes@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# dwt_decode@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# dwt_decode_real@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# dwt_encode@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# dwt_encode_real@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# dwt_getgain@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# dwt_getgain_real@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# dwt_getnorm@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# dwt_getnorm_real@Base 9.06~dfsg-0ubuntu1 eb_free_aligned@Base 8.63.dfsg.1 eb_malloc_aligned@Base 8.63.dfsg.1 emprintf_program_ident@Base 9.00~dfsg enc_num_bytes@Base 8.61.dfsg.1 enc_s_get_int@Base 8.61.dfsg.1 enc_s_get_int_nc@Base 8.61.dfsg.1 enc_s_put_int@Base 8.61.dfsg.1 enc_s_size_int@Base 8.61.dfsg.1 enc_u_get_uint@Base 8.61.dfsg.1 enc_u_get_uint_nc@Base 8.61.dfsg.1 enc_u_put_uint@Base 8.61.dfsg.1 enc_u_size_uint@Base 8.61.dfsg.1 encode_binary_token@Base 8.61.dfsg.1 enum_bytestring@Base 8.61.dfsg.1 enum_const_bytestring@Base 8.61.dfsg.1 epo_check_and_install@Base 9.25~dfsg+1-0ubuntu0.14.04.1 epo_disable@Base 9.25~dfsg+1-0ubuntu0.14.04.1 eprintf_program_ident@Base 8.61.dfsg.1 eprn_bits_for_levels@Base 8.61.dfsg.1 eprn_check_colour_info@Base 8.61.dfsg.1 eprn_close_device@Base 8.61.dfsg.1 eprn_colour_model_list@Base 8.61.dfsg.1 eprn_fetch_scan_line@Base 8.61.dfsg.1 eprn_fillpage@Base 9.18~dfsg~0-0ubuntu1 eprn_finalize@Base 8.61.dfsg.1 eprn_get_initial_matrix@Base 8.61.dfsg.1 eprn_get_int@Base 8.61.dfsg.1 eprn_get_params@Base 8.61.dfsg.1 eprn_get_planes@Base 8.61.dfsg.1 eprn_get_string@Base 8.61.dfsg.1 eprn_init_device@Base 8.61.dfsg.1 eprn_map_cmyk_color@Base 8.61.dfsg.1 eprn_map_cmyk_color_flex@Base 8.61.dfsg.1 eprn_map_cmyk_color_glob@Base 8.61.dfsg.1 eprn_map_cmyk_color_max@Base 8.61.dfsg.1 eprn_map_color_rgb@Base 8.61.dfsg.1 eprn_map_rgb_color_for_CMY_or_K@Base 8.61.dfsg.1 eprn_map_rgb_color_for_CMY_or_K_flex@Base 8.61.dfsg.1 eprn_map_rgb_color_for_CMY_or_K_max@Base 8.61.dfsg.1 eprn_map_rgb_color_for_RGB@Base 8.61.dfsg.1 eprn_map_rgb_color_for_RGB_flex@Base 8.61.dfsg.1 eprn_map_rgb_color_for_RGB_max@Base 8.61.dfsg.1 eprn_number_of_bitplanes@Base 8.61.dfsg.1 eprn_number_of_octets@Base 8.61.dfsg.1 eprn_open_device@Base 8.61.dfsg.1 eprn_output_page@Base 8.61.dfsg.1 eprn_put_params@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# eprn_replace_fillpage@Base 9.18~dfsg~0-0ubuntu1 eprn_set_media_data@Base 8.61.dfsg.1 eprn_set_media_flags@Base 8.61.dfsg.1 eprn_set_page_layout@Base 8.61.dfsg.1 eprn_split_FS@Base 8.61.dfsg.1 errflush@Base 8.61.dfsg.1 errflush_nomem@Base 9.00~dfsg errorexec_find@Base 9.25~dfsg+1-0ubuntu0.14.04.2 errprintf@Base 8.61.dfsg.1 errprintf_nomem@Base 9.00~dfsg errwrite@Base 8.61.dfsg.1 errwrite_nomem@Base 9.00~dfsg ets_calloc@Base 9.25~dfsg+1-0ubuntu0.14.04.1 ets_create@Base 9.25~dfsg+1-0ubuntu0.14.04.1 ets_destroy@Base 9.25~dfsg+1-0ubuntu0.14.04.1 ets_free@Base 9.25~dfsg+1-0ubuntu0.14.04.1 ets_line@Base 9.25~dfsg+1-0ubuntu0.14.04.1 ets_malloc@Base 9.25~dfsg+1-0ubuntu0.14.04.1 even_better_free@Base 8.63.dfsg.1 even_better_line@Base 8.63.dfsg.1 even_better_line_rll@Base 8.63.dfsg.1 even_better_new@Base 8.63.dfsg.1 fax_adjusted_width@Base 9.01~ fc_color_quo@Base 8.61.dfsg.1 file_alloc_stream@Base 8.61.dfsg.1 file_close@Base 8.61.dfsg.1 file_close_disable@Base 8.61.dfsg.1 file_close_file@Base 8.61.dfsg.1 file_close_finish@Base 8.61.dfsg.1 file_default_buffer_size@Base 8.61.dfsg.1 file_init_stream@Base 8.61.dfsg.1 file_open_stream@Base 8.61.dfsg.1 file_prepare_stream@Base 8.61.dfsg.1 file_read_string@Base 8.61.dfsg.1 file_switch_to_read@Base 8.61.dfsg.1 file_switch_to_write@Base 8.61.dfsg.1 filter_mark_strm_temp@Base 8.61.dfsg.1 filter_mark_temp@Base 8.61.dfsg.1 filter_open@Base 8.61.dfsg.1 filter_read@Base 8.61.dfsg.1 filter_read_predictor@Base 8.61.dfsg.1 filter_read_simple@Base 8.61.dfsg.1 filter_report_error@Base 8.61.dfsg.1 filter_write@Base 8.61.dfsg.1 filter_write_predictor@Base 8.61.dfsg.1 filter_write_simple@Base 8.61.dfsg.1 #MISSING: 9.18~dfsg~0-0ubuntu1# find_bit_map@Base 8.61.dfsg.1 finish_stringwidth@Base 8.61.dfsg.1 fixed_coeff_mult@Base 8.61.dfsg.1 fixed_mult_quo@Base 8.61.dfsg.1 float_param@Base 8.61.dfsg.1 float_params@Base 8.61.dfsg.1 fn_build_float_array@Base 8.61.dfsg.1 fn_build_float_array_forced@Base 8.61.dfsg.1 fn_build_function@Base 8.61.dfsg.1 fn_build_sub_function@Base 8.61.dfsg.1 fn_check_mnDR@Base 8.61.dfsg.1 fn_common_free@Base 8.61.dfsg.1 fn_common_free_params@Base 8.61.dfsg.1 fn_common_get_params@Base 8.61.dfsg.1 fn_common_scale@Base 8.61.dfsg.1 fn_common_serialize@Base 8.61.dfsg.1 fn_copy_values@Base 8.61.dfsg.1 fn_scale_pairs@Base 8.61.dfsg.1 font_GlyphDirectory_param@Base 8.61.dfsg.1 font_bbox_param@Base 8.61.dfsg.1 font_gdir_get_outline@Base 8.61.dfsg.1 font_param@Base 8.61.dfsg.1 font_resource_encoded_alloc@Base 8.61.dfsg.1 font_resource_free@Base 9.06~dfsg~20120802-0ubuntu1 font_restore@Base 8.61.dfsg.1 font_string_array_param@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# free_all_margins@Base 8.61.dfsg.1 free_color_space@Base 9.06~dfsg~20120802-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# free_compressed_color_list@Base 8.61.dfsg.1 free_function_refs@Base 9.25~dfsg+1-0ubuntu0.14.04.1 free_indexed_map@Base 8.61.dfsg.1 free_separation_names@Base 8.61.dfsg.1 fwd_get_target_cmap_procs@Base 9.01~ fwd_uses_fwd_cmap_procs@Base 9.01~ gc_locate@Base 8.61.dfsg.1 gc_string_mark@Base 8.61.dfsg.1 gc_strings_clear_reloc@Base 8.61.dfsg.1 gc_strings_compact@Base 8.61.dfsg.1 gc_strings_set_marks@Base 8.61.dfsg.1 gc_strings_set_reloc@Base 8.61.dfsg.1 gcst_get_memory_ptr@Base 8.61.dfsg.1 gdev_begin_input_media@Base 8.61.dfsg.1 gdev_begin_output_media@Base 8.61.dfsg.1 gdev_create_buf_device@Base 8.61.dfsg.1 gdev_end_input_media@Base 8.61.dfsg.1 gdev_end_output_media@Base 8.61.dfsg.1 #MISSING: 9.01~dfsg-1# gdev_fax_adjusted_width@Base 8.71~dfsg gdev_fax_get_params@Base 8.61.dfsg.1 gdev_fax_init_fax_state@Base 8.61.dfsg.1 gdev_fax_init_state@Base 8.61.dfsg.1 gdev_fax_open@Base 8.61.dfsg.1 gdev_fax_print_page@Base 8.61.dfsg.1 gdev_fax_print_strip@Base 8.61.dfsg.1 gdev_fax_put_params@Base 8.61.dfsg.1 gdev_fax_std_procs@Base 8.61.dfsg.1 gdev_input_media_default@Base 8.61.dfsg.1 gdev_mem_bits_size@Base 8.61.dfsg.1 gdev_mem_data_size@Base 8.61.dfsg.1 gdev_mem_device_for_bits@Base 8.61.dfsg.1 gdev_mem_line_ptrs_size@Base 8.61.dfsg.1 gdev_mem_max_height@Base 8.61.dfsg.1 gdev_mem_mono_set_inverted@Base 8.61.dfsg.1 gdev_mem_open_scan_lines@Base 8.61.dfsg.1 gdev_mem_set_line_ptrs@Base 8.61.dfsg.1 gdev_mem_set_planar@Base 8.61.dfsg.1 gdev_mem_word_device_for_bits@Base 8.61.dfsg.1 gdev_output_media_default@Base 8.61.dfsg.1 gdev_pcl_3bit_map_color_rgb@Base 8.61.dfsg.1 gdev_pcl_3bit_map_rgb_color@Base 8.61.dfsg.1 gdev_pcl_mode2compress@Base 8.61.dfsg.1 gdev_pcl_mode2compress_padded@Base 8.61.dfsg.1 gdev_pcl_mode3compress@Base 8.61.dfsg.1 gdev_pcl_mode9compress@Base 8.61.dfsg.1 gdev_pcl_page_orientation@Base 9.14~dfsg-0ubuntu1 gdev_pcl_paper_size@Base 8.61.dfsg.1 gdev_pdf_begin_transparency_group@Base 8.61.dfsg.1 gdev_pdf_begin_transparency_mask@Base 8.61.dfsg.1 gdev_pdf_begin_typed_image@Base 8.61.dfsg.1 gdev_pdf_copy_color@Base 8.61.dfsg.1 gdev_pdf_copy_mono@Base 8.61.dfsg.1 gdev_pdf_create_compositor@Base 8.61.dfsg.1 gdev_pdf_dev_spec_op@Base 9.04~dfsg #MISSING: 9.07~dfsg-0ubuntu1# gdev_pdf_discard_transparency_layer@Base 8.61.dfsg.1 gdev_pdf_end_transparency_group@Base 8.61.dfsg.1 gdev_pdf_end_transparency_mask@Base 8.61.dfsg.1 gdev_pdf_fill_mask@Base 8.61.dfsg.1 gdev_pdf_fill_path@Base 8.61.dfsg.1 gdev_pdf_fill_rectangle@Base 8.61.dfsg.1 gdev_pdf_fill_rectangle_hl_color@Base 8.61.dfsg.1 gdev_pdf_fillpage@Base 8.64~dfsg gdev_pdf_get_param@Base 9.15~dfsg-0ubuntu1 gdev_pdf_get_params@Base 8.61.dfsg.1 gdev_pdf_include_color_space@Base 8.61.dfsg.1 #MISSING: 9.04~dfsg-1# gdev_pdf_pattern_manage@Base 8.61.dfsg.1 gdev_pdf_put_params@Base 8.61.dfsg.1 gdev_pdf_strip_tile_rectangle@Base 8.61.dfsg.1 gdev_pdf_stroke_path@Base 8.61.dfsg.1 gdev_pdf_text_begin@Base 8.61.dfsg.1 gdev_prn_allocate_memory@Base 8.61.dfsg.1 gdev_prn_bg_output_page@Base 9.08~rc1~dfsg-0ubuntu1 gdev_prn_bg_output_page_seekable@Base 9.08~rc1~dfsg-0ubuntu1 gdev_prn_clear_trailing_bits@Base 8.61.dfsg.1 gdev_prn_close@Base 8.61.dfsg.1 gdev_prn_close_printer@Base 8.61.dfsg.1 gdev_prn_color_usage@Base 9.06~dfsg~20120802-0ubuntu1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# gdev_prn_colors_used@Base 8.61.dfsg.1 gdev_prn_copy_scan_lines@Base 8.61.dfsg.1 gdev_prn_create_buf_planar@Base 8.61.dfsg.1 gdev_prn_dev_spec_op@Base 9.14~dfsg-0ubuntu1 gdev_prn_file_is_new@Base 8.61.dfsg.1 gdev_prn_finalize@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gdev_prn_forwarding_dev_spec_op@Base 9.14~dfsg-0ubuntu1 gdev_prn_free_memory@Base 8.61.dfsg.1 gdev_prn_get_bits@Base 8.61.dfsg.1 gdev_prn_get_lines@Base 8.61.dfsg.1 gdev_prn_get_param@Base 9.15~dfsg-0ubuntu1 gdev_prn_get_params@Base 8.61.dfsg.1 gdev_prn_get_params_planar@Base 8.61.dfsg.1 gdev_prn_maybe_realloc_memory@Base 8.61.dfsg.1 gdev_prn_open@Base 8.61.dfsg.1 gdev_prn_open_planar@Base 8.61.dfsg.1 gdev_prn_open_printer@Base 8.61.dfsg.1 gdev_prn_open_printer_seekable@Base 8.61.dfsg.1 gdev_prn_output_page@Base 8.61.dfsg.1 gdev_prn_output_page_seekable@Base 9.08~rc1~dfsg-0ubuntu1 gdev_prn_print_scan_lines@Base 8.61.dfsg.1 gdev_prn_put_params@Base 8.61.dfsg.1 gdev_prn_put_params_planar@Base 8.61.dfsg.1 gdev_prn_reallocate_memory@Base 8.61.dfsg.1 gdev_prn_render_pages@Base 8.61.dfsg.1 gdev_prn_save_page@Base 8.61.dfsg.1 gdev_prn_set_procs_planar@Base 8.61.dfsg.1 gdev_prn_size_buf_planar@Base 8.61.dfsg.1 gdev_psdf_get_param@Base 9.15~dfsg-0ubuntu1 gdev_psdf_get_params@Base 8.61.dfsg.1 gdev_psdf_put_params@Base 8.61.dfsg.1 gdev_tiff_begin_page@Base 8.61.dfsg.1 gdev_vector_begin_image@Base 8.61.dfsg.1 gdev_vector_close_file@Base 8.61.dfsg.1 gdev_vector_dev_spec_op@Base 9.15~dfsg-0ubuntu1 gdev_vector_dopath@Base 8.61.dfsg.1 gdev_vector_dopath_init@Base 8.61.dfsg.1 gdev_vector_dopath_segment@Base 8.61.dfsg.1 gdev_vector_dorect@Base 8.61.dfsg.1 gdev_vector_end_image@Base 8.61.dfsg.1 gdev_vector_fill_parallelogram@Base 8.61.dfsg.1 gdev_vector_fill_path@Base 8.61.dfsg.1 gdev_vector_fill_rectangle@Base 8.61.dfsg.1 gdev_vector_fill_trapezoid@Base 8.61.dfsg.1 gdev_vector_fill_triangle@Base 8.61.dfsg.1 gdev_vector_get_param@Base 9.15~dfsg-0ubuntu1 gdev_vector_get_params@Base 8.61.dfsg.1 gdev_vector_init@Base 8.61.dfsg.1 gdev_vector_open_file_options@Base 8.61.dfsg.1 gdev_vector_prepare_fill@Base 8.61.dfsg.1 gdev_vector_prepare_stroke@Base 8.61.dfsg.1 gdev_vector_put_params@Base 8.61.dfsg.1 gdev_vector_reset@Base 8.61.dfsg.1 gdev_vector_setflat@Base 8.61.dfsg.1 gdev_vector_stream@Base 8.61.dfsg.1 gdev_vector_stroke_path@Base 8.61.dfsg.1 gdev_vector_stroke_scaling@Base 8.61.dfsg.1 gdev_vector_update_clip_path@Base 8.61.dfsg.1 gdev_vector_update_fill_color@Base 8.61.dfsg.1 gdev_vector_update_log_op@Base 8.61.dfsg.1 gdev_vector_write_clip_path@Base 8.61.dfsg.1 gdev_vector_write_polygon@Base 8.61.dfsg.1 gdev_vector_write_rectangle@Base 8.61.dfsg.1 gdev_write_input_media@Base 8.61.dfsg.1 gdev_write_input_page_size@Base 8.61.dfsg.1 gdev_write_output_media@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# getColourBufs@Base 8.61.dfsg.1 get_GlyphNames2Unicode@Base 8.61.dfsg.1 get_cie_range@Base 9.02~dfsg get_font_name@Base 8.61.dfsg.1 get_global_op_array@Base 9.00~dfsg get_local_op_array@Base 9.00~dfsg get_map@Base 9.16~dfsg~0-0ubuntu1 get_minst_from_memory@Base 8.61.dfsg.1 get_num_max_tile_parts@Base 9.14~dfsg-0ubuntu1 get_op_array@Base 9.00~dfsg get_space_object@Base 8.64~dfsg get_u32_msb@Base 8.61.dfsg.1 get_unpack_proc@Base 9.16~dfsg~0-0ubuntu1 glyph_ref@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gp_cache_insert@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gp_cache_query@Base 8.61.dfsg.1 gp_can_share_fdesc@Base 9.16~dfsg~0-0ubuntu1 gp_close_printer@Base 8.61.dfsg.1 gp_create_thread@Base 8.61.dfsg.1 gp_current_directory_name@Base 8.61.dfsg.1 gp_defaultpapersize@Base 8.64~dfsg gp_do_exit@Base 8.61.dfsg.1 gp_enumerate_files_close@Base 8.61.dfsg.1 gp_enumerate_files_init@Base 8.61.dfsg.1 gp_enumerate_files_next@Base 8.61.dfsg.1 gp_enumerate_fonts_free@Base 8.61.dfsg.1 gp_enumerate_fonts_init@Base 8.61.dfsg.1 gp_enumerate_fonts_next@Base 8.61.dfsg.1 gp_exit@Base 8.61.dfsg.1 gp_fdup@Base 9.16~dfsg~0-0ubuntu1 gp_file_name_combine@Base 8.61.dfsg.1 gp_file_name_combine_generic@Base 8.61.dfsg.1 gp_file_name_current@Base 8.61.dfsg.1 gp_file_name_cwds@Base 8.61.dfsg.1 gp_file_name_directory_separator@Base 8.61.dfsg.1 gp_file_name_good_char@Base 9.07~dfsg-0ubuntu1 gp_file_name_is_absolute@Base 8.61.dfsg.1 gp_file_name_is_current@Base 8.61.dfsg.1 gp_file_name_is_empty_item_meanful@Base 8.61.dfsg.1 gp_file_name_is_parent@Base 8.61.dfsg.1 gp_file_name_is_parent_allowed@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.14~dfsg-0ubuntu1# gp_file_name_is_partent_allowed@Base 8.61.dfsg.1 gp_file_name_list_separator@Base 8.61.dfsg.1 gp_file_name_parent@Base 8.61.dfsg.1 gp_file_name_parents@Base 8.61.dfsg.1 gp_file_name_reduce@Base 8.61.dfsg.1 gp_file_name_root@Base 8.61.dfsg.1 gp_file_name_separator@Base 8.61.dfsg.1 gp_fmode_binary_suffix@Base 8.61.dfsg.1 gp_fmode_rb@Base 8.61.dfsg.1 gp_fmode_wb@Base 8.61.dfsg.1 gp_fopen@Base 8.61.dfsg.1 gp_fopen_64@Base 8.61.dfsg.1 gp_fopentemp@Base 8.61.dfsg.1 gp_fopentemp_64@Base 8.61.dfsg.1 gp_fpread@Base 9.16~dfsg~0-0ubuntu1 gp_fpwrite@Base 9.16~dfsg~0-0ubuntu1 gp_fseek_64@Base 8.61.dfsg.1 gp_fseekable@Base 9.08~rc1~dfsg-0ubuntu1 gp_ftell_64@Base 8.61.dfsg.1 gp_get_realtime@Base 8.61.dfsg.1 gp_get_usertime@Base 8.61.dfsg.1 gp_getenv@Base 8.61.dfsg.1 gp_getenv_display@Base 8.61.dfsg.1 gp_gettmpdir@Base 8.61.dfsg.1 gp_init@Base 8.61.dfsg.1 gp_monitor_close@Base 8.61.dfsg.1 gp_monitor_enter@Base 8.61.dfsg.1 gp_monitor_label@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gp_monitor_leave@Base 8.61.dfsg.1 gp_monitor_open@Base 8.61.dfsg.1 gp_monitor_sizeof@Base 8.61.dfsg.1 gp_null_file_name@Base 8.61.dfsg.1 gp_open_printer@Base 8.61.dfsg.1 gp_open_printer_64@Base 8.61.dfsg.1 gp_open_scratch_file@Base 8.61.dfsg.1 gp_open_scratch_file_64@Base 8.61.dfsg.1 gp_open_scratch_file_rm@Base 9.16~dfsg~0-0ubuntu1 gp_read_macresource@Base 8.61.dfsg.1 gp_readline@Base 8.61.dfsg.1 gp_readline_finit@Base 8.61.dfsg.1 gp_readline_init@Base 8.61.dfsg.1 gp_scratch_file_name_prefix@Base 8.61.dfsg.1 gp_semaphore_close@Base 8.61.dfsg.1 gp_semaphore_label@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gp_semaphore_open@Base 8.61.dfsg.1 gp_semaphore_signal@Base 8.61.dfsg.1 gp_semaphore_sizeof@Base 8.61.dfsg.1 gp_semaphore_wait@Base 8.61.dfsg.1 gp_serialnumber@Base 9.05~ gp_setmode_binary@Base 8.61.dfsg.1 gp_stat@Base 9.18~dfsg~0-0ubuntu1 gp_stdin_read@Base 8.61.dfsg.1 gp_strerror@Base 8.61.dfsg.1 gp_thread_finish@Base 9.00~dfsg gp_thread_label@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gp_thread_start@Base 9.00~dfsg gp_xpsprint@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gprf_setup@Base 9.18~dfsg~0-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gprf_write@Base 9.18~dfsg~0-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gprf_write_16@Base 9.18~dfsg~0-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gprf_write_32@Base 9.18~dfsg~0-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gprf_write_8@Base 9.18~dfsg~0-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gprf_write_header@Base 9.18~dfsg~0-0ubuntu1 gray_cs_to_devn_cm@Base 8.61.dfsg.1 gray_cs_to_gray_cm@Base 8.61.dfsg.1 gs_PCLm_device@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_abort@Base 8.61.dfsg.1 gs_abort_pdf14trans_device@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.05~dfsg-1# gs_agl_ps@Base 9.01~ gs_alc1900_device@Base 8.61.dfsg.1 gs_alc2000_device@Base 8.61.dfsg.1 gs_alc4000_device@Base 8.61.dfsg.1 gs_alc4100_device@Base 8.61.dfsg.1 gs_alc8500_device@Base 8.61.dfsg.1 gs_alc8600_device@Base 8.61.dfsg.1 gs_alc9100_device@Base 8.61.dfsg.1 gs_alloc_fill_alloc@Base 8.61.dfsg.1 gs_alloc_fill_block@Base 8.61.dfsg.1 gs_alloc_fill_collected@Base 8.61.dfsg.1 gs_alloc_fill_deleted@Base 8.61.dfsg.1 gs_alloc_fill_free@Base 8.61.dfsg.1 gs_alloc_memset@Base 8.61.dfsg.1 gs_alloc_ref_array@Base 8.61.dfsg.1 gs_alloc_string_ref@Base 8.61.dfsg.1 gs_ap3250_device@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_appledmp_device@Base 8.61.dfsg.1 gs_arc@Base 8.61.dfsg.1 gs_arc_add@Base 8.61.dfsg.1 gs_arcn@Base 8.61.dfsg.1 gs_arcto@Base 8.61.dfsg.1 gs_ashow_begin@Base 8.61.dfsg.1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# gs_ashow_n_init@Base 8.61.dfsg.1 gs_atan2_degrees@Base 8.61.dfsg.1 gs_attachattributecolorspace@Base 8.61.dfsg.1 gs_atx23_device@Base 8.61.dfsg.1 gs_atx24_device@Base 8.61.dfsg.1 gs_atx38_device@Base 8.61.dfsg.1 gs_awidthshow_begin@Base 8.61.dfsg.1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# gs_awidthshow_n_init@Base 8.61.dfsg.1 gs_band_donor_band_full@Base 9.16~dfsg~0-0ubuntu1 gs_band_donor_band_get@Base 9.16~dfsg~0-0ubuntu1 gs_band_donor_band_release@Base 9.16~dfsg~0-0ubuntu1 gs_band_donor_fin@Base 9.16~dfsg~0-0ubuntu1 gs_band_donor_init@Base 9.16~dfsg~0-0ubuntu1 gs_base_make_font@Base 8.61.dfsg.1 gs_base_same_font@Base 8.61.dfsg.1 gs_bbox_device@Base 8.61.dfsg.1 gs_bbox_transform@Base 8.61.dfsg.1 gs_bbox_transform_inverse@Base 8.61.dfsg.1 gs_bbox_transform_only@Base 8.61.dfsg.1 gs_begin_transparency_group@Base 8.61.dfsg.1 gs_begin_transparency_mask@Base 8.61.dfsg.1 gs_begin_transparency_text_group@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_bit_device@Base 8.61.dfsg.1 gs_bitcmyk_device@Base 8.61.dfsg.1 gs_bitrgb_device@Base 8.61.dfsg.1 gs_bitrgbtags_device@Base 8.61.dfsg.1 gs_bj10e_device@Base 8.61.dfsg.1 gs_bj10v_device@Base 8.61.dfsg.1 gs_bj10vh_device@Base 8.61.dfsg.1 gs_bj200_device@Base 8.61.dfsg.1 gs_bjc600_device@Base 8.61.dfsg.1 gs_bjc800_device@Base 8.61.dfsg.1 gs_bjc880j_device@Base 8.61.dfsg.1 gs_bjccmyk_device@Base 8.61.dfsg.1 gs_bjccolor_device@Base 8.61.dfsg.1 gs_bjcgray_device@Base 8.61.dfsg.1 gs_bjcmono_device@Base 8.61.dfsg.1 gs_bmp16_device@Base 8.61.dfsg.1 gs_bmp16m_device@Base 8.61.dfsg.1 gs_bmp256_device@Base 8.61.dfsg.1 gs_bmp32b_device@Base 8.61.dfsg.1 gs_bmpgray_device@Base 8.61.dfsg.1 gs_bmpmono_device@Base 8.61.dfsg.1 gs_bmpsep1_device@Base 8.61.dfsg.1 gs_bmpsep8_device@Base 8.61.dfsg.1 gs_build_function_0@Base 8.61.dfsg.1 gs_build_function_2@Base 8.61.dfsg.1 gs_build_function_3@Base 8.61.dfsg.1 gs_build_function_4@Base 8.61.dfsg.1 gs_buildtime@Base 8.61.dfsg.1 gs_c_decode@Base 8.61.dfsg.1 gs_c_glyph_name@Base 8.61.dfsg.1 gs_c_known_encode@Base 8.61.dfsg.1 gs_c_known_encoding_chars@Base 8.61.dfsg.1 gs_c_known_encoding_count@Base 8.61.dfsg.1 gs_c_known_encoding_lengths@Base 8.61.dfsg.1 gs_c_known_encoding_max_length@Base 8.61.dfsg.1 gs_c_known_encoding_offsets@Base 8.61.dfsg.1 gs_c_known_encoding_reverse_lengths@Base 8.61.dfsg.1 gs_c_known_encoding_total_chars@Base 8.61.dfsg.1 gs_c_known_encodings@Base 8.61.dfsg.1 gs_c_known_encodings_reverse@Base 8.61.dfsg.1 gs_c_min_std_encoding_glyph@Base 8.61.dfsg.1 gs_c_name_glyph@Base 8.61.dfsg.1 gs_c_param_list_alloc@Base 8.61.dfsg.1 gs_c_param_list_read@Base 8.61.dfsg.1 gs_c_param_list_release@Base 8.61.dfsg.1 gs_c_param_list_set_target@Base 8.61.dfsg.1 gs_c_param_list_write@Base 8.61.dfsg.1 gs_c_param_list_write_more@Base 8.61.dfsg.1 gs_c_pdf_glyph_type@Base 8.61.dfsg.1 gs_cached_color_index@Base 8.61.dfsg.1 gs_cachestatus@Base 8.61.dfsg.1 gs_ccr_device@Base 8.61.dfsg.1 gs_cdeskjet_device@Base 8.61.dfsg.1 gs_cdj1600_device@Base 8.61.dfsg.1 gs_cdj500_device@Base 8.61.dfsg.1 gs_cdj550_device@Base 8.61.dfsg.1 gs_cdj670_device@Base 8.61.dfsg.1 gs_cdj850_device@Base 8.61.dfsg.1 gs_cdj880_device@Base 8.61.dfsg.1 gs_cdj890_device@Base 8.61.dfsg.1 gs_cdj970_device@Base 8.61.dfsg.1 gs_cdjcolor_device@Base 8.61.dfsg.1 gs_cdjmono_device@Base 8.61.dfsg.1 gs_cdnj500_device@Base 8.64~dfsg-3~ gs_cfax_device@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# gs_cgm24_device@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# gs_cgm8_device@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# gs_cgmmono_device@Base 8.61.dfsg.1 gs_char_flatness@Base 8.61.dfsg.1 gs_charboxpath_begin@Base 8.61.dfsg.1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# gs_charboxpath_n_init@Base 8.61.dfsg.1 gs_charpath_begin@Base 8.61.dfsg.1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# gs_charpath_n_init@Base 8.61.dfsg.1 gs_check_file_permission@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_chp2200_device@Base 8.61.dfsg.1 gs_cid0_has_type2@Base 8.61.dfsg.1 gs_cid0_indexed_font@Base 8.61.dfsg.1 gs_cie_a_complete@Base 8.61.dfsg.1 gs_cie_abc_complete@Base 8.61.dfsg.1 gs_cie_cache_init@Base 8.61.dfsg.1 gs_cie_cache_to_fracs@Base 8.61.dfsg.1 gs_cie_cached_value@Base 8.61.dfsg.1 gs_cie_compute_points_sd@Base 8.61.dfsg.1 gs_cie_cs_common@Base 8.61.dfsg.1 gs_cie_cs_complete@Base 8.61.dfsg.1 gs_cie_def_complete@Base 8.61.dfsg.1 gs_cie_defg_complete@Base 8.61.dfsg.1 gs_cie_defx_set_lookup_table@Base 8.61.dfsg.1 gs_cie_jc_complete@Base 8.61.dfsg.1 gs_cie_render1_build@Base 8.61.dfsg.1 gs_cie_render1_init_from@Base 8.61.dfsg.1 gs_cie_render1_initialize@Base 8.61.dfsg.1 gs_cie_render1_param_initialize@Base 8.61.dfsg.1 gs_cie_render_complete@Base 8.61.dfsg.1 gs_cie_render_init@Base 8.61.dfsg.1 gs_cie_render_sample@Base 8.61.dfsg.1 gs_cif_device@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# gs_cl_zlib_init@Base 8.61.dfsg.1 gs_clean_fm_pair@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_clear_device_filters@Base 8.61.dfsg.1 gs_clip@Base 8.61.dfsg.1 gs_clippath@Base 8.61.dfsg.1 gs_cliprestore@Base 8.61.dfsg.1 gs_clipsave@Base 8.61.dfsg.1 gs_clist_device_procs@Base 8.61.dfsg.1 gs_cljet5_device@Base 8.61.dfsg.1 gs_cljet5c_device@Base 8.61.dfsg.1 gs_cljet5pr_device@Base 8.61.dfsg.1 gs_closedevice@Base 8.61.dfsg.1 gs_closepath@Base 8.61.dfsg.1 gs_cmap_ToUnicode_add_pair@Base 8.61.dfsg.1 gs_cmap_ToUnicode_alloc@Base 8.61.dfsg.1 gs_cmap_ToUnicode_free@Base 9.06~dfsg~20120802-0ubuntu1 gs_cmap_ToUnicode_realloc@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_cmap_adobe1_alloc@Base 8.61.dfsg.1 gs_cmap_alloc@Base 8.61.dfsg.1 gs_cmap_compute_identity@Base 8.61.dfsg.1 gs_cmap_create_char_identity@Base 8.61.dfsg.1 gs_cmap_create_identity@Base 8.61.dfsg.1 gs_cmap_decode_next@Base 8.61.dfsg.1 gs_cmap_enum_next_entry@Base 8.61.dfsg.1 gs_cmap_enum_next_lookup@Base 8.61.dfsg.1 gs_cmap_enum_next_range@Base 8.61.dfsg.1 gs_cmap_free@Base 9.06~dfsg~20120802-0ubuntu1 gs_cmap_from_type42_cmap@Base 8.61.dfsg.1 gs_cmap_init@Base 8.61.dfsg.1 gs_cmap_is_identity@Base 8.61.dfsg.1 gs_cmap_lookups_enum_init@Base 8.61.dfsg.1 gs_cmap_lookups_enum_setup@Base 8.61.dfsg.1 gs_cmap_no_lookups_procs@Base 8.61.dfsg.1 gs_cmap_ranges_enum_init@Base 8.61.dfsg.1 gs_cmap_ranges_enum_setup@Base 8.61.dfsg.1 gs_cname_to_colorant_number@Base 8.61.dfsg.1 gs_color_index_cache_create@Base 8.61.dfsg.1 gs_color_index_cache_destroy@Base 8.61.dfsg.1 gs_color_name_component_number@Base 8.61.dfsg.1 gs_color_space_get_index@Base 8.61.dfsg.1 gs_color_space_is_CIE@Base 8.64~dfsg gs_color_space_is_ICC@Base 8.64~dfsg-3~ gs_color_space_is_PSCIE@Base 9.00~dfsg gs_color_space_num_components@Base 8.61.dfsg.1 gs_color_space_restrict_color@Base 8.61.dfsg.1 gs_color_space_type_CIEA@Base 8.61.dfsg.1 gs_color_space_type_CIEABC@Base 8.61.dfsg.1 gs_color_space_type_CIEDEF@Base 8.61.dfsg.1 gs_color_space_type_CIEDEFG@Base 8.61.dfsg.1 gs_color_space_type_DeviceN@Base 8.61.dfsg.1 gs_color_space_type_ICC@Base 9.00~dfsg gs_color_space_type_Indexed@Base 8.61.dfsg.1 gs_color_space_type_Indexed_Named@Base 9.16~dfsg~0-0ubuntu1 gs_color_space_type_Pattern@Base 8.61.dfsg.1 gs_color_space_type_Separation@Base 8.61.dfsg.1 gs_colorspace_set_icc_equivalent@Base 9.00~dfsg gs_composite_alpha_type@Base 8.61.dfsg.1 gs_composite_overprint_type@Base 8.61.dfsg.1 gs_composite_pdf14trans_no_clist_writer_type@Base 8.61.dfsg.1 gs_composite_pdf14trans_type@Base 8.61.dfsg.1 gs_concat@Base 8.61.dfsg.1 gs_copied_can_copy_glyphs@Base 8.61.dfsg.1 gs_copied_font_add_encoding@Base 8.61.dfsg.1 gs_copy_font@Base 8.61.dfsg.1 gs_copy_font_complete@Base 8.61.dfsg.1 gs_copy_glyph@Base 8.61.dfsg.1 gs_copy_glyph_options@Base 8.61.dfsg.1 gs_copydevice2@Base 8.61.dfsg.1 gs_copydevice@Base 8.61.dfsg.1 gs_copygstate@Base 8.61.dfsg.1 gs_copypage@Base 8.61.dfsg.1 gs_copyright@Base 8.61.dfsg.1 gs_copyscanlines@Base 8.61.dfsg.1 gs_cos_degrees@Base 8.61.dfsg.1 gs_coslw2p_device@Base 8.61.dfsg.1 gs_coslwxl_device@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_cp50_device@Base 8.61.dfsg.1 gs_create_composite_alpha@Base 8.61.dfsg.1 gs_create_overprint@Base 8.61.dfsg.1 gs_cshow_begin@Base 8.61.dfsg.1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# gs_cshow_n_init@Base 8.61.dfsg.1 gs_cspace_alloc@Base 8.61.dfsg.1 gs_cspace_base_space@Base 8.61.dfsg.1 gs_cspace_build_CIEA@Base 8.61.dfsg.1 gs_cspace_build_CIEABC@Base 8.61.dfsg.1 gs_cspace_build_CIEDEF@Base 8.61.dfsg.1 gs_cspace_build_CIEDEFG@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# gs_cspace_build_CIEICC@Base 8.61.dfsg.1 gs_cspace_build_ICC@Base 9.00~dfsg gs_cspace_build_Indexed@Base 8.61.dfsg.1 gs_cspace_build_Pattern1@Base 8.61.dfsg.1 gs_cspace_get_devn_function@Base 8.61.dfsg.1 gs_cspace_get_sepr_function@Base 8.61.dfsg.1 gs_cspace_indexed_lookup@Base 8.61.dfsg.1 gs_cspace_indexed_lookup_bytes@Base 8.63.dfsg.1 gs_cspace_indexed_lookup_frac@Base 8.63.dfsg.1 gs_cspace_indexed_num_entries@Base 8.61.dfsg.1 gs_cspace_indexed_set_proc@Base 8.61.dfsg.1 gs_cspace_indexed_value_array@Base 8.61.dfsg.1 gs_cspace_new_DeviceCMYK@Base 8.61.dfsg.1 gs_cspace_new_DeviceGray@Base 8.61.dfsg.1 gs_cspace_new_DeviceN@Base 8.61.dfsg.1 gs_cspace_new_DevicePixel@Base 8.61.dfsg.1 gs_cspace_new_DeviceRGB@Base 8.61.dfsg.1 gs_cspace_new_ICC@Base 9.06~dfsg~20120802-0ubuntu1 gs_cspace_new_Separation@Base 8.61.dfsg.1 gs_cspace_set_devn_function@Base 8.61.dfsg.1 gs_cspace_set_sepr_function@Base 8.61.dfsg.1 gs_cups_device@Base 8.61.dfsg.1 gs_currentPDFfontsize@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_current_logical_op@Base 8.61.dfsg.1 #MISSING: 9.04~dfsg-1# gs_current_object_tag@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# gs_current_transparency_type@Base 8.61.dfsg.1 gs_currentaccuratecurves@Base 8.61.dfsg.1 gs_currentaccuratescreens@Base 8.61.dfsg.1 gs_currentaligntopixels@Base 8.61.dfsg.1 gs_currentalpha@Base 8.61.dfsg.1 gs_currentblackgeneration@Base 8.61.dfsg.1 gs_currentblackptcomp@Base 9.07~dfsg-0ubuntu1 gs_currentblendmode@Base 8.61.dfsg.1 gs_currentcachelower@Base 8.61.dfsg.1 gs_currentcachesize@Base 8.61.dfsg.1 gs_currentcacheupper@Base 8.61.dfsg.1 gs_currentcharmatrix@Base 8.61.dfsg.1 gs_currentcolor@Base 8.61.dfsg.1 gs_currentcolorrendering@Base 8.61.dfsg.1 gs_currentcolorscreen@Base 8.61.dfsg.1 gs_currentcolorspace@Base 8.61.dfsg.1 gs_currentcolortransfer@Base 8.61.dfsg.1 gs_currentcpsimode@Base 9.00~dfsg gs_currentcurvejoin@Base 8.61.dfsg.1 gs_currentdash_length@Base 8.61.dfsg.1 gs_currentdash_offset@Base 8.61.dfsg.1 gs_currentdash_pattern@Base 8.61.dfsg.1 gs_currentdashadapt@Base 8.61.dfsg.1 gs_currentdefaultcmykicc@Base 9.06~dfsg~20120802-0ubuntu1 gs_currentdefaultgrayicc@Base 9.06~dfsg~20120802-0ubuntu1 gs_currentdefaultrgbicc@Base 9.06~dfsg~20120802-0ubuntu1 gs_currentdevice@Base 8.61.dfsg.1 gs_currentdevicecolor@Base 8.71~dfsg gs_currentdevicenicc@Base 9.06~dfsg~20120802-0ubuntu1 gs_currentdotlength@Base 8.61.dfsg.1 gs_currentdotlength_absolute@Base 8.61.dfsg.1 gs_currentfilladjust@Base 8.61.dfsg.1 gs_currentfilloverprint@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_currentflat@Base 8.61.dfsg.1 gs_currentfont@Base 8.61.dfsg.1 gs_currentgridfittt@Base 8.61.dfsg.1 gs_currentgstate@Base 8.61.dfsg.1 gs_currenthalftone@Base 8.61.dfsg.1 gs_currenthpglpathmode@Base 9.06~dfsg~20120802-0ubuntu1 gs_currenticcdirectory@Base 9.06~dfsg~20120802-0ubuntu1 gs_currentlabicc@Base 9.06~dfsg~20120802-0ubuntu1 gs_currentlimitclamp@Base 8.61.dfsg.1 gs_currentlinecap@Base 8.61.dfsg.1 gs_currentlinejoin@Base 8.61.dfsg.1 gs_currentlineparams@Base 8.61.dfsg.1 gs_currentlinewidth@Base 8.61.dfsg.1 gs_currentmatrix@Base 8.61.dfsg.1 gs_currentminscreenlevels@Base 8.61.dfsg.1 gs_currentmiterlimit@Base 8.61.dfsg.1 gs_currentnamedicc@Base 9.06~dfsg~20120802-0ubuntu1 gs_currentopacityalpha@Base 8.61.dfsg.1 gs_currentoverprint@Base 8.61.dfsg.1 gs_currentoverprintmode@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# gs_currentoverride_ri@Base 9.04~dfsg gs_currentoverrideicc@Base 9.04~dfsg gs_currentpoint@Base 8.61.dfsg.1 gs_currentrasterop@Base 8.71~dfsg gs_currentrenderingintent@Base 8.61.dfsg.1 gs_currentscreen@Base 8.61.dfsg.1 gs_currentscreenlevels@Base 8.61.dfsg.1 gs_currentscreenphase@Base 8.61.dfsg.1 gs_currentscreenphase_pgs@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_currentscreenphase_pis@Base 8.61.dfsg.1 gs_currentshapealpha@Base 8.61.dfsg.1 gs_currentsmoothness@Base 8.61.dfsg.1 gs_currentsourcetransparent@Base 8.71~dfsg gs_currentsrcgtagicc@Base 9.06~dfsg~20120802-0ubuntu1 gs_currentstrokeadjust@Base 8.61.dfsg.1 gs_currentstrokeoverprint@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_currenttexthscaling@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_currenttextknockout@Base 8.61.dfsg.1 gs_currenttextleading@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_currenttextrenderingmode@Base 8.61.dfsg.1 gs_currenttextrise@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_currenttextspacing@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_currenttexturetransparent@Base 8.71~dfsg gs_currenttransfer@Base 8.61.dfsg.1 gs_currentundercolorremoval@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# gs_currentusewts@Base 8.61.dfsg.1 gs_currentwordspacing@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_curveto@Base 8.61.dfsg.1 gs_dashpath@Base 8.61.dfsg.1 gs_data_image_t_init@Base 8.61.dfsg.1 gs_dc_get_pattern_id@Base 8.63.dfsg.1 gs_debug@Base 8.61.dfsg.1 gs_debug_c@Base 8.61.dfsg.1 gs_debug_flag_implied_by@Base 9.05~ gs_debug_flags@Base 9.05~ gs_debug_flags_list@Base 9.05~ gs_debug_flags_parse@Base 9.05~ #MISSING: 9.00~dfsg-1# gs_debug_out@Base 8.61.dfsg.1 gs_declj250_device@Base 8.61.dfsg.1 gs_default_font_info@Base 8.61.dfsg.1 gs_default_glyph_info@Base 8.61.dfsg.1 gs_default_init_fstack@Base 8.61.dfsg.1 gs_default_next_char_glyph@Base 8.61.dfsg.1 gs_default_same_font@Base 8.61.dfsg.1 gs_defaultmatrix@Base 8.61.dfsg.1 gs_definefont@Base 8.61.dfsg.1 gs_deskjet_device@Base 8.61.dfsg.1 gs_dev_defaults@Base 8.61.dfsg.1 gs_device_is_abuf@Base 8.61.dfsg.1 gs_device_is_memory@Base 8.61.dfsg.1 gs_deviceinitialmatrix@Base 8.61.dfsg.1 gs_devicen_device@Base 8.61.dfsg.1 gs_devicename@Base 8.61.dfsg.1 gs_dfaxhigh_device@Base 8.61.dfsg.1 gs_dfaxlow_device@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# gs_discard_transparency_layer@Base 8.61.dfsg.1 gs_display_device@Base 8.61.dfsg.1 gs_distance_transform2fixed@Base 8.61.dfsg.1 gs_distance_transform@Base 8.61.dfsg.1 gs_distance_transform_inverse@Base 8.61.dfsg.1 gs_dj505j_device@Base 8.61.dfsg.1 gs_djet500_device@Base 8.61.dfsg.1 gs_djet500c_device@Base 8.61.dfsg.1 gs_dl2100_device@Base 8.61.dfsg.1 gs_dnj650c_device@Base 8.61.dfsg.1 gs_do_set_overprint@Base 8.61.dfsg.1 gs_doc_directory@Base 8.61.dfsg.1 gs_dotorientation@Base 8.61.dfsg.1 gs_dtransform@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# gs_emulator_name_array@Base 8.61.dfsg.1 gs_emulators@Base 9.07~dfsg-0ubuntu1 gs_emulators_sizeof@Base 9.07~dfsg-0ubuntu1 #MISSING: 9.04~dfsg-1# gs_enable_object_tagging@Base 8.61.dfsg.1 gs_end_transparency_group@Base 8.61.dfsg.1 gs_end_transparency_mask@Base 8.61.dfsg.1 gs_end_transparency_text_group@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_enumerate_files_close@Base 8.64~dfsg-3~ gs_enumerate_files_init@Base 8.64~dfsg-3~ gs_enumerate_files_next@Base 8.64~dfsg-3~ gs_eoclip@Base 8.61.dfsg.1 gs_eofill@Base 8.61.dfsg.1 gs_eoviewclip@Base 8.61.dfsg.1 gs_epl2050_device@Base 8.61.dfsg.1 gs_epl2050p_device@Base 8.61.dfsg.1 gs_epl2120_device@Base 8.61.dfsg.1 gs_epl2500_device@Base 8.61.dfsg.1 gs_epl2750_device@Base 8.61.dfsg.1 gs_epl5800_device@Base 8.61.dfsg.1 gs_epl5900_device@Base 8.61.dfsg.1 gs_epl6100_device@Base 8.61.dfsg.1 gs_epl6200_device@Base 8.61.dfsg.1 gs_eplcolor_device@Base 8.70~ gs_eplmono_device@Base 8.70~ gs_epo_device@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_eps2write_device@Base 9.14~dfsg-0ubuntu1 gs_eps9high_device@Base 8.61.dfsg.1 gs_eps9mid_device@Base 8.61.dfsg.1 gs_epson_device@Base 8.61.dfsg.1 gs_epsonc_device@Base 8.61.dfsg.1 #MISSING: 9.15~dfsg-0ubuntu1# gs_epswrite_device@Base 8.61.dfsg.1 gs_erasepage@Base 8.61.dfsg.1 gs_error_names@Base 8.61.dfsg.1 gs_errorinfo_put_pair@Base 8.61.dfsg.1 gs_errorinfo_put_pair_from_dict@Base 8.61.dfsg.1 gs_errorinfo_put_string@Base 8.61.dfsg.1 gs_errorname@Base 8.61.dfsg.1 gs_errstr@Base 8.61.dfsg.1 gs_escp_device@Base 8.61.dfsg.1 gs_escpage_device@Base 8.61.dfsg.1 gs_escpc_device@Base 8.61.dfsg.1 gs_fapi_available@Base 9.07~dfsg-0ubuntu1 gs_fapi_do_char@Base 9.07~dfsg-0ubuntu1 gs_fapi_find_server@Base 9.07~dfsg-0ubuntu1 gs_fapi_finish_render@Base 9.07~dfsg-0ubuntu1 gs_fapi_finit@Base 9.07~dfsg-0ubuntu1 gs_fapi_ft_init@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.07~dfsg-0ubuntu1# gs_fapi_ft_instantiate@Base 9.01~ gs_fapi_get_font_info@Base 9.07~dfsg-0ubuntu1 gs_fapi_get_metrics_count@Base 9.07~dfsg-0ubuntu1 gs_fapi_get_server_list@Base 9.07~dfsg-0ubuntu1 gs_fapi_init@Base 9.07~dfsg-0ubuntu1 gs_fapi_passfont@Base 9.07~dfsg-0ubuntu1 gs_fapi_prepare_font@Base 9.07~dfsg-0ubuntu1 gs_fapi_serialize_type1_font@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_fapi_serialize_type1_font_complete@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_fapi_serialize_type2_font@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_fapi_server_inits@Base 9.07~dfsg-0ubuntu1 gs_fapi_set_servers_client_data@Base 9.07~dfsg-0ubuntu1 gs_faxg32d_device@Base 8.61.dfsg.1 gs_faxg3_device@Base 8.61.dfsg.1 gs_faxg4_device@Base 8.61.dfsg.1 gs_file_name_check_separator@Base 8.61.dfsg.1 gs_fill@Base 8.61.dfsg.1 gs_fillpage@Base 8.61.dfsg.1 gs_find_compositor@Base 8.61.dfsg.1 gs_find_font_by_id@Base 8.61.dfsg.1 gs_findiodevice@Base 8.61.dfsg.1 gs_flattenpath@Base 8.61.dfsg.1 gs_flp_device@Base 9.18~dfsg~0-0ubuntu1 gs_flushpage@Base 8.61.dfsg.1 gs_fmlbp_device@Base 8.61.dfsg.1 gs_fmpr_device@Base 8.61.dfsg.1 gs_font_alloc@Base 8.61.dfsg.1 gs_font_base_alloc@Base 8.61.dfsg.1 gs_font_cid0_enumerate_glyph@Base 8.61.dfsg.1 gs_font_cid2_from_type42@Base 8.61.dfsg.1 gs_font_cid_system_info@Base 8.61.dfsg.1 gs_font_dir_alloc2@Base 8.61.dfsg.1 gs_font_dir_alloc2_limits@Base 8.61.dfsg.1 gs_font_finalize@Base 8.61.dfsg.1 gs_font_find_similar@Base 8.61.dfsg.1 gs_font_glyph_is_notdef@Base 8.61.dfsg.1 gs_font_map_glyph_to_unicode@Base 8.61.dfsg.1 gs_font_notify_init@Base 8.61.dfsg.1 gs_font_notify_register@Base 8.61.dfsg.1 gs_font_notify_unregister@Base 8.61.dfsg.1 gs_font_parent@Base 8.61.dfsg.1 gs_font_procs_default@Base 8.61.dfsg.1 gs_font_type0_from_cidfont@Base 8.61.dfsg.1 gs_font_type0_from_type42@Base 8.61.dfsg.1 gs_fopen_errno_to_code@Base 8.61.dfsg.1 gs_fpng_device@Base 9.14~dfsg-0ubuntu1 gs_free_bytestring@Base 8.61.dfsg.1 gs_free_const_bytestring@Base 8.61.dfsg.1 gs_free_const_object@Base 8.61.dfsg.1 gs_free_const_string@Base 8.61.dfsg.1 gs_free_copied_font@Base 9.06~dfsg~20120802-0ubuntu1 gs_free_file_name@Base 8.61.dfsg.1 gs_free_ref_array@Base 8.61.dfsg.1 gs_fs600_device@Base 8.61.dfsg.1 gs_function_1ItSg_free_params@Base 8.61.dfsg.1 gs_function_1ItSg_init@Base 8.61.dfsg.1 gs_function_AdOt_free_params@Base 8.61.dfsg.1 gs_function_AdOt_init@Base 8.61.dfsg.1 gs_function_ElIn_free_params@Base 8.61.dfsg.1 gs_function_ElIn_init@Base 8.61.dfsg.1 gs_function_PtCr_free_params@Base 8.61.dfsg.1 gs_function_PtCr_init@Base 8.61.dfsg.1 gs_function_Sd_free_params@Base 8.61.dfsg.1 gs_function_Sd_init@Base 8.61.dfsg.1 gs_function_get_info_default@Base 8.61.dfsg.1 gs_gc_reclaim@Base 8.61.dfsg.1 gs_gdi_device@Base 8.61.dfsg.1 gs_get_colorname_string@Base 8.61.dfsg.1 gs_get_device_or_hw_params@Base 8.61.dfsg.1 gs_get_fapi_server_inits@Base 9.07~dfsg-0ubuntu1 gs_get_glyph_data_cached@Base 8.61.dfsg.1 gs_get_pattern@Base 8.61.dfsg.1 gs_get_text_params@Base 8.61.dfsg.1 gs_getalphaisshape@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_getdefaultdevice@Base 8.61.dfsg.1 gs_getdefaultlibdevice@Base 9.15~dfsg-0ubuntu1 gs_getdevice@Base 8.61.dfsg.1 gs_getdevparams@Base 8.61.dfsg.1 gs_getfillconstantalpha@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_getiodevice@Base 8.61.dfsg.1 gs_getpattern@Base 8.61.dfsg.1 gs_getscanconverter@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_getstrokeconstantalpha@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gettextlinematrix@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gettextmatrix@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_glyph_cache__alloc@Base 8.61.dfsg.1 gs_glyph_cache__release@Base 8.61.dfsg.1 gs_glyph_data_free@Base 8.61.dfsg.1 gs_glyph_data_from_bytes@Base 8.61.dfsg.1 gs_glyph_data_from_null@Base 8.61.dfsg.1 gs_glyph_data_from_string@Base 8.61.dfsg.1 gs_glyph_data_substring@Base 8.61.dfsg.1 gs_glyphpath_begin@Base 8.61.dfsg.1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# gs_glyphpath_init@Base 8.61.dfsg.1 gs_glyphshow_begin@Base 8.61.dfsg.1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# gs_glyphshow_init@Base 8.61.dfsg.1 gs_glyphwidth_begin@Base 8.61.dfsg.1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# gs_glyphwidth_init@Base 8.61.dfsg.1 gs_gprf_device@Base 9.18~dfsg~0-0ubuntu1 gs_grestore@Base 8.61.dfsg.1 gs_grestore_only@Base 8.61.dfsg.1 gs_grestoreall@Base 8.61.dfsg.1 gs_grestoreall_for_restore@Base 8.61.dfsg.1 gs_gsave@Base 8.61.dfsg.1 gs_gsave_for_save@Base 8.61.dfsg.1 gs_gshtscr_init@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_gstate@Base 8.61.dfsg.1 gs_gstate_alloc@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gstate_client_data@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gstate_copied@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gstate_copy@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gstate_copy_temp@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gstate_currentaccuratecurves@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gstate_currentdashadapt@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gstate_finalize@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gstate_free@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gstate_free_chain@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gstate_idtransform@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gstate_initialize@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gstate_memory@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gstate_pre_assign@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gstate_putdeviceparams@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gstate_release@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gstate_saved@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gstate_set_client@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gstate_setflat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gstate_setmatrix@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gstate_swap_memory@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gstate_swap_saved@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gstate_update_overprint@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_gsub_release@Base 9.01~ gs_gxclfile_init@Base 8.61.dfsg.1 gs_gxclmem_init@Base 8.61.dfsg.1 gs_have_level2@Base 8.61.dfsg.1 gs_hit_detected@Base 8.61.dfsg.1 gs_hit_device@Base 8.61.dfsg.1 gs_hl1240_device@Base 8.61.dfsg.1 gs_hl1250_device@Base 8.61.dfsg.1 gs_hl7x0_device@Base 8.61.dfsg.1 gs_hpdj1120c_device@Base 8.61.dfsg.1 gs_hpdj310_device@Base 8.61.dfsg.1 gs_hpdj320_device@Base 8.61.dfsg.1 gs_hpdj340_device@Base 8.61.dfsg.1 gs_hpdj400_device@Base 8.61.dfsg.1 gs_hpdj500_device@Base 8.61.dfsg.1 gs_hpdj500c_device@Base 8.61.dfsg.1 gs_hpdj510_device@Base 8.61.dfsg.1 gs_hpdj520_device@Base 8.61.dfsg.1 gs_hpdj540_device@Base 8.61.dfsg.1 gs_hpdj550c_device@Base 8.61.dfsg.1 gs_hpdj560c_device@Base 8.61.dfsg.1 gs_hpdj600_device@Base 8.61.dfsg.1 gs_hpdj660c_device@Base 8.61.dfsg.1 gs_hpdj670c_device@Base 8.61.dfsg.1 gs_hpdj680c_device@Base 8.61.dfsg.1 gs_hpdj690c_device@Base 8.61.dfsg.1 gs_hpdj850c_device@Base 8.61.dfsg.1 gs_hpdj855c_device@Base 8.61.dfsg.1 gs_hpdj870c_device@Base 8.61.dfsg.1 gs_hpdj890c_device@Base 8.61.dfsg.1 gs_hpdjplus_device@Base 8.61.dfsg.1 gs_hpdjportable_device@Base 8.61.dfsg.1 gs_ht_build@Base 8.71~dfsg gs_ht_install@Base 8.71~dfsg gs_ht_reference@Base 8.71~dfsg gs_ht_release@Base 8.71~dfsg gs_ht_set_mask_comp@Base 8.71~dfsg gs_ht_set_spot_comp@Base 8.71~dfsg gs_ht_set_threshold_comp@Base 8.71~dfsg gs_ibmpro_device@Base 8.61.dfsg.1 gs_identity_transfer@Base 8.61.dfsg.1 gs_idtransform@Base 8.61.dfsg.1 gs_ignore_consolidate_free@Base 8.61.dfsg.1 gs_ignore_free_object@Base 8.61.dfsg.1 gs_ignore_free_string@Base 8.61.dfsg.1 gs_ijs_device@Base 9.01~ gs_image2_t_init@Base 8.61.dfsg.1 gs_image3_t_init@Base 8.61.dfsg.1 gs_image3x_t_init@Base 8.61.dfsg.1 gs_image4_t_init@Base 8.61.dfsg.1 gs_image_begin_typed@Base 8.61.dfsg.1 gs_image_bytes_per_plane_row@Base 8.61.dfsg.1 gs_image_class_0_interpolate@Base 8.61.dfsg.1 gs_image_class_1_simple@Base 8.61.dfsg.1 gs_image_class_2_fracs@Base 8.61.dfsg.1 gs_image_class_3_mono@Base 8.61.dfsg.1 gs_image_class_4_color@Base 8.61.dfsg.1 gs_image_cleanup@Base 8.61.dfsg.1 gs_image_cleanup_and_free_enum@Base 8.61.dfsg.1 gs_image_common_init@Base 8.61.dfsg.1 gs_image_common_t_init@Base 8.61.dfsg.1 gs_image_enum_alloc@Base 8.61.dfsg.1 gs_image_enum_init@Base 8.61.dfsg.1 gs_image_init@Base 8.61.dfsg.1 gs_image_next@Base 8.61.dfsg.1 gs_image_next_planes@Base 8.61.dfsg.1 gs_image_planes_wanted@Base 8.61.dfsg.1 gs_image_t_init_adjust@Base 8.61.dfsg.1 gs_image_t_init_mask_adjust@Base 8.61.dfsg.1 gs_image_type_1@Base 8.61.dfsg.1 gs_image_type_2@Base 8.61.dfsg.1 gs_image_type_3@Base 8.61.dfsg.1 gs_image_type_3x@Base 8.61.dfsg.1 gs_image_type_4@Base 8.61.dfsg.1 gs_image_type_mask1@Base 8.61.dfsg.1 gs_imagen_device@Base 8.61.dfsg.1 gs_imagepath@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_imager_currentaccuratecurves@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_imager_currentdashadapt@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_imager_idtransform@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_imager_putdeviceparams@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_imager_setflat@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_imager_setmatrix@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_imager_state_copied@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_imager_state_copy@Base 8.61.dfsg.1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# gs_imager_state_finalize@Base 9.05~ #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_imager_state_initialize@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_imager_state_pre_assign@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_imager_state_release@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# gs_imdi_device@Base 8.61.dfsg.1 gs_incachedevice@Base 8.61.dfsg.1 gs_includecolorspace@Base 8.61.dfsg.1 gs_indexed_limit_and_lookup@Base 8.63.dfsg.1 gs_inferno_device@Base 8.61.dfsg.1 gs_init_file@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# gs_init_file_array@Base 8.61.dfsg.1 gs_init_files@Base 9.07~dfsg-0ubuntu1 gs_init_files_sizeof@Base 9.07~dfsg-0ubuntu1 #MISSING: 8.64~dfsg# gs_init_string@Base 8.61.dfsg.1 #MISSING: 8.64~dfsg# gs_init_string_sizeof@Base 8.61.dfsg.1 gs_initclip@Base 8.61.dfsg.1 gs_initgraphics@Base 8.61.dfsg.1 gs_initialize_wordimagedevice@Base 8.61.dfsg.1 gs_initmatrix@Base 8.61.dfsg.1 gs_initviewclip@Base 8.61.dfsg.1 gs_ink_cov_device@Base 9.14~dfsg-0ubuntu1 gs_inkcov_device@Base 9.05~ gs_interp_alloc_stacks@Base 8.61.dfsg.1 gs_interp_free_stacks@Base 8.61.dfsg.1 gs_interp_init@Base 8.61.dfsg.1 gs_interp_make_oper@Base 8.61.dfsg.1 gs_interp_max_op_num_args@Base 8.61.dfsg.1 gs_interp_num_special_ops@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# gs_interp_reschedule_proc@Base 8.61.dfsg.1 gs_interp_reset@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# gs_interp_time_slice_proc@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# gs_interp_time_slice_ticks@Base 8.61.dfsg.1 gs_interpret@Base 8.61.dfsg.1 gs_iodev_calendar@Base 8.61.dfsg.1 gs_iodev_finit@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_iodev_init@Base 8.61.dfsg.1 gs_iodev_lineedit@Base 8.61.dfsg.1 gs_iodev_null@Base 8.61.dfsg.1 gs_iodev_os@Base 8.61.dfsg.1 gs_iodev_pipe@Base 8.61.dfsg.1 gs_iodev_ram@Base 9.14~dfsg-0ubuntu1 gs_iodev_register_dev@Base 9.18~dfsg~0-0ubuntu1 gs_iodev_rom@Base 9.18~dfsg~0-0ubuntu1 gs_iodev_statementedit@Base 8.61.dfsg.1 gs_iodev_stderr@Base 8.61.dfsg.1 gs_iodev_stdin@Base 8.61.dfsg.1 gs_iodev_stdout@Base 8.61.dfsg.1 gs_is_CIDSystemInfo_compatible@Base 8.61.dfsg.1 gs_is_c_glyph_name@Base 8.61.dfsg.1 gs_is_null_device@Base 8.61.dfsg.1 gs_is_overprint_compositor@Base 8.61.dfsg.1 gs_is_pdf14trans_compositor@Base 8.61.dfsg.1 gs_itk24i_device@Base 9.15~dfsg-0ubuntu1 gs_itk38_device@Base 9.15~dfsg-0ubuntu1 gs_itransform@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_iwhi_device@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_iwlo_device@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_iwlq_device@Base 8.61.dfsg.1 gs_jetp3852_device@Base 8.61.dfsg.1 gs_jj100_device@Base 8.61.dfsg.1 gs_jpeg_alloc_huff_table@Base 8.61.dfsg.1 gs_jpeg_alloc_quant_table@Base 8.61.dfsg.1 gs_jpeg_create_compress@Base 8.61.dfsg.1 gs_jpeg_create_decompress@Base 8.61.dfsg.1 gs_jpeg_destroy@Base 8.61.dfsg.1 gs_jpeg_device@Base 8.61.dfsg.1 gs_jpeg_error_setup@Base 8.61.dfsg.1 gs_jpeg_finish_compress@Base 8.61.dfsg.1 gs_jpeg_finish_decompress@Base 8.61.dfsg.1 gs_jpeg_log_error@Base 8.61.dfsg.1 gs_jpeg_mem_init@Base 9.15~dfsg-0ubuntu1 gs_jpeg_mem_term@Base 9.15~dfsg-0ubuntu1 gs_jpeg_read_header@Base 8.61.dfsg.1 gs_jpeg_read_scanlines@Base 8.61.dfsg.1 gs_jpeg_set_colorspace@Base 8.61.dfsg.1 gs_jpeg_set_defaults@Base 8.61.dfsg.1 gs_jpeg_set_linear_quality@Base 8.61.dfsg.1 gs_jpeg_set_quality@Base 8.61.dfsg.1 gs_jpeg_start_compress@Base 8.61.dfsg.1 gs_jpeg_start_decompress@Base 8.61.dfsg.1 gs_jpeg_write_scanlines@Base 8.61.dfsg.1 gs_jpegcmyk_device@Base 8.61.dfsg.1 gs_jpeggray_device@Base 8.61.dfsg.1 gs_kshow_begin@Base 8.61.dfsg.1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# gs_kshow_n_init@Base 8.61.dfsg.1 gs_kshow_next_char@Base 8.61.dfsg.1 gs_kshow_previous_char@Base 8.61.dfsg.1 gs_la50_device@Base 8.61.dfsg.1 gs_la70_device@Base 8.61.dfsg.1 gs_la75_device@Base 8.61.dfsg.1 gs_la75plus_device@Base 8.61.dfsg.1 gs_laserjet_device@Base 8.61.dfsg.1 gs_lbp310_device@Base 8.61.dfsg.1 gs_lbp320_device@Base 8.61.dfsg.1 gs_lbp8_device@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# gs_lcms2_free@Base 9.04~dfsg #MISSING: 9.05~dfsg-1# gs_lcms2_malloc@Base 9.04~dfsg #MISSING: 9.05~dfsg-1# gs_lcms2_realloc@Base 9.04~dfsg gs_len_glyphs_release@Base 8.61.dfsg.1 gs_lex2050_device@Base 8.61.dfsg.1 gs_lex3200_device@Base 8.61.dfsg.1 gs_lex5700_device@Base 8.61.dfsg.1 gs_lex7000_device@Base 8.61.dfsg.1 gs_lib_ctx_fin@Base 9.07~dfsg-0ubuntu1 gs_lib_ctx_get_cms_context@Base 9.07~dfsg-0ubuntu1 gs_lib_ctx_get_default_device_list@Base 9.15~dfsg-0ubuntu1 gs_lib_ctx_get_interp_instance@Base 9.00~dfsg gs_lib_ctx_get_non_gc_memory_t@Base 8.61.dfsg.1 gs_lib_ctx_init@Base 8.61.dfsg.1 gs_lib_ctx_set_cms_context@Base 9.07~dfsg-0ubuntu1 gs_lib_ctx_set_default_device_list@Base 9.15~dfsg-0ubuntu1 gs_lib_ctx_set_icc_directory@Base 9.04~dfsg gs_lib_default_path@Base 8.61.dfsg.1 gs_lib_device_list@Base 8.61.dfsg.1 gs_lib_finit@Base 8.61.dfsg.1 gs_lib_init0@Base 8.61.dfsg.1 gs_lib_init1@Base 8.61.dfsg.1 gs_lib_init@Base 8.61.dfsg.1 gs_lib_register_device@Base 8.61.dfsg.1 gs_lineto@Base 8.61.dfsg.1 gs_lips2p_device@Base 8.61.dfsg.1 gs_lips3_device@Base 8.61.dfsg.1 gs_lips4_device@Base 8.61.dfsg.1 gs_lips4v_device@Base 8.61.dfsg.1 gs_lj250_device@Base 8.61.dfsg.1 gs_lj3100sw_device@Base 8.61.dfsg.1 gs_lj4dith_device@Base 8.61.dfsg.1 gs_lj4dithp_device@Base 8.61.dfsg.1 gs_lj5gray_device@Base 8.61.dfsg.1 gs_lj5mono_device@Base 8.61.dfsg.1 gs_ljet2p_device@Base 8.61.dfsg.1 gs_ljet3_device@Base 8.61.dfsg.1 gs_ljet3d_device@Base 8.61.dfsg.1 gs_ljet4_device@Base 8.61.dfsg.1 gs_ljet4d_device@Base 8.61.dfsg.1 gs_ljet4pjl_device@Base 8.61.dfsg.1 gs_ljetplus_device@Base 8.61.dfsg.1 gs_ln03_device@Base 8.61.dfsg.1 gs_log_error@Base 8.61.dfsg.1 gs_lp1800_device@Base 8.61.dfsg.1 gs_lp1900_device@Base 8.61.dfsg.1 gs_lp2000_device@Base 8.61.dfsg.1 gs_lp2200_device@Base 8.61.dfsg.1 gs_lp2400_device@Base 8.61.dfsg.1 gs_lp2500_device@Base 8.61.dfsg.1 gs_lp2563_device@Base 8.61.dfsg.1 gs_lp3000c_device@Base 8.61.dfsg.1 gs_lp7500_device@Base 8.61.dfsg.1 gs_lp7700_device@Base 8.61.dfsg.1 gs_lp7900_device@Base 8.61.dfsg.1 gs_lp8000_device@Base 8.61.dfsg.1 gs_lp8000c_device@Base 8.61.dfsg.1 gs_lp8100_device@Base 8.61.dfsg.1 gs_lp8200c_device@Base 8.61.dfsg.1 gs_lp8300c_device@Base 8.61.dfsg.1 gs_lp8300f_device@Base 8.61.dfsg.1 gs_lp8400f_device@Base 8.61.dfsg.1 gs_lp8500c_device@Base 8.61.dfsg.1 gs_lp8600_device@Base 8.61.dfsg.1 gs_lp8600f_device@Base 8.61.dfsg.1 gs_lp8700_device@Base 8.61.dfsg.1 gs_lp8800c_device@Base 8.61.dfsg.1 gs_lp8900_device@Base 8.61.dfsg.1 gs_lp9000b_device@Base 8.61.dfsg.1 gs_lp9000c_device@Base 8.61.dfsg.1 gs_lp9100_device@Base 8.61.dfsg.1 gs_lp9200b_device@Base 8.61.dfsg.1 gs_lp9200c_device@Base 8.61.dfsg.1 gs_lp9300_device@Base 8.61.dfsg.1 gs_lp9400_device@Base 8.61.dfsg.1 gs_lp9500c_device@Base 8.61.dfsg.1 gs_lp9600_device@Base 8.61.dfsg.1 gs_lp9600s_device@Base 8.61.dfsg.1 gs_lp9800c_device@Base 8.61.dfsg.1 gs_lps4500_device@Base 8.61.dfsg.1 gs_lps6500_device@Base 8.61.dfsg.1 gs_lq850_device@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# gs_lx5000_device@Base 8.61.dfsg.1 gs_lxm3200_device@Base 8.61.dfsg.1 gs_lxm5700m_device@Base 8.61.dfsg.1 gs_m8510_device@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_mag16_device@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_mag256_device@Base 8.61.dfsg.1 gs_main_add_lib_path@Base 8.61.dfsg.1 gs_main_alloc_instance@Base 8.61.dfsg.1 gs_main_dump_stack@Base 8.61.dfsg.1 gs_main_finit@Base 8.61.dfsg.1 gs_main_init0@Base 8.61.dfsg.1 gs_main_init1@Base 8.61.dfsg.1 gs_main_init2@Base 8.61.dfsg.1 gs_main_init2aux@Base 9.05~ gs_main_init_with_args@Base 8.61.dfsg.1 gs_main_inst_arg_decode@Base 9.08~rc1~dfsg-0ubuntu1 gs_main_inst_get_arg_decode@Base 9.08~rc1~dfsg-0ubuntu1 gs_main_instance_init_values@Base 8.61.dfsg.1 gs_main_lib_open@Base 8.61.dfsg.1 gs_main_run_file@Base 8.61.dfsg.1 gs_main_run_file_open@Base 8.61.dfsg.1 gs_main_run_start@Base 8.61.dfsg.1 gs_main_run_string@Base 8.61.dfsg.1 gs_main_run_string_begin@Base 8.61.dfsg.1 gs_main_run_string_continue@Base 8.61.dfsg.1 gs_main_run_string_end@Base 8.61.dfsg.1 gs_main_run_string_with_length@Base 8.61.dfsg.1 gs_main_set_lib_paths@Base 8.61.dfsg.1 gs_make_identity@Base 8.61.dfsg.1 gs_make_mem_abuf_device@Base 8.61.dfsg.1 gs_make_mem_alpha_device@Base 8.61.dfsg.1 gs_make_mem_device@Base 8.61.dfsg.1 gs_make_mem_device_with_copydevice@Base 8.71~dfsg gs_make_mem_mono_device@Base 8.61.dfsg.1 gs_make_mem_mono_device_with_copydevice@Base 8.71~dfsg gs_make_null_device@Base 8.61.dfsg.1 gs_make_pattern@Base 8.61.dfsg.1 gs_make_pattern_common@Base 8.61.dfsg.1 gs_make_rotation@Base 8.61.dfsg.1 gs_make_scaling@Base 8.61.dfsg.1 gs_make_translation@Base 8.61.dfsg.1 gs_makebitmappattern_xform@Base 8.61.dfsg.1 gs_makefont@Base 8.61.dfsg.1 gs_makepattern@Base 8.61.dfsg.1 gs_makepixmappattern@Base 8.61.dfsg.1 gs_makewordimagedevice@Base 8.61.dfsg.1 gs_malloc_init@Base 8.61.dfsg.1 gs_malloc_memory_init@Base 8.61.dfsg.1 gs_malloc_release@Base 8.61.dfsg.1 gs_malloc_unwrap@Base 8.61.dfsg.1 gs_malloc_wrap@Base 8.61.dfsg.1 gs_malloc_wrapped_contents@Base 8.61.dfsg.1 gs_mapped_transfer@Base 8.61.dfsg.1 gs_mask_clip_device@Base 8.61.dfsg.1 gs_matrix_compare@Base 9.05~ gs_matrix_fixed_from_matrix@Base 8.61.dfsg.1 gs_matrix_invert@Base 8.61.dfsg.1 gs_matrix_invert_to_double@Base 8.62.dfsg.1 gs_matrix_multiply@Base 8.61.dfsg.1 gs_matrix_multiply_double@Base 8.62.dfsg.1 gs_matrix_rotate@Base 8.61.dfsg.1 gs_matrix_scale@Base 8.61.dfsg.1 gs_matrix_translate@Base 8.61.dfsg.1 gs_md1xMono_device@Base 8.61.dfsg.1 gs_md2k_device@Base 8.61.dfsg.1 gs_md50Eco_device@Base 8.61.dfsg.1 gs_md50Mono_device@Base 8.61.dfsg.1 gs_md5_append@Base 8.61.dfsg.1 gs_md5_finish@Base 8.61.dfsg.1 gs_md5_init@Base 8.61.dfsg.1 gs_md5k_device@Base 8.61.dfsg.1 gs_memory_chunk_release@Base 8.63.dfsg.1 gs_memory_chunk_target@Base 8.63.dfsg.1 gs_memory_chunk_unwrap@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_memory_chunk_wrap@Base 8.63.dfsg.1 gs_memory_gc_status@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_memory_locked_init@Base 9.01~ #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_memory_locked_release@Base 9.01~ #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_memory_locked_target@Base 9.01~ gs_memory_retrying_init@Base 8.61.dfsg.1 gs_memory_retrying_release@Base 8.61.dfsg.1 gs_memory_retrying_set_recover@Base 8.61.dfsg.1 gs_memory_retrying_target@Base 8.61.dfsg.1 gs_memory_set_gc_status@Base 8.61.dfsg.1 gs_memory_set_vm_reclaim@Base 8.61.dfsg.1 gs_memory_set_vm_threshold@Base 8.61.dfsg.1 gs_mgl_e_ps@Base 9.01~ gs_mgr4_device@Base 8.61.dfsg.1 gs_mgr8_device@Base 8.61.dfsg.1 gs_mgrgray2_device@Base 8.61.dfsg.1 gs_mgrgray4_device@Base 8.61.dfsg.1 gs_mgrgray8_device@Base 8.61.dfsg.1 gs_mgrmono_device@Base 8.61.dfsg.1 gs_miff24_device@Base 8.61.dfsg.1 gs_mj500c_device@Base 8.61.dfsg.1 gs_mj6000c_device@Base 8.61.dfsg.1 gs_mj700v2c_device@Base 8.61.dfsg.1 gs_mj8000c_device@Base 8.61.dfsg.1 gs_ml600_device@Base 8.61.dfsg.1 gs_moveto@Base 8.61.dfsg.1 gs_moveto_aux@Base 8.61.dfsg.1 gs_mro_e_ps@Base 9.01~ gs_necp6_device@Base 8.61.dfsg.1 gs_newpath@Base 8.61.dfsg.1 gs_next_ids@Base 8.61.dfsg.1 gs_no_build_char@Base 8.61.dfsg.1 gs_no_decode_glyph@Base 8.61.dfsg.1 gs_no_define_font@Base 8.61.dfsg.1 gs_no_encode_char@Base 8.61.dfsg.1 gs_no_enumerate_glyph@Base 8.61.dfsg.1 gs_no_glyph_name@Base 8.61.dfsg.1 gs_no_glyph_outline@Base 8.61.dfsg.1 gs_no_make_font@Base 8.61.dfsg.1 gs_no_struct_enum_ptrs@Base 8.61.dfsg.1 gs_no_struct_reloc_ptrs@Base 8.61.dfsg.1 gs_nogc_reclaim@Base 8.71~dfsg gs_notify_all@Base 8.61.dfsg.1 gs_notify_init@Base 8.61.dfsg.1 gs_notify_register@Base 8.61.dfsg.1 gs_notify_release@Base 8.61.dfsg.1 gs_notify_unregister@Base 8.61.dfsg.1 gs_notify_unregister_calling@Base 8.61.dfsg.1 gs_npdl_device@Base 8.61.dfsg.1 gs_null_device@Base 8.61.dfsg.1 gs_nulldevice@Base 8.61.dfsg.1 gs_nullpage_device@Base 8.61.dfsg.1 gs_obj_filter_device@Base 9.18~dfsg~0-0ubuntu1 gs_oce9050_device@Base 8.61.dfsg.1 gs_oki182_device@Base 8.61.dfsg.1 gs_oki4w_device@Base 8.61.dfsg.1 gs_okiibm_device@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# gs_omni_device@Base 8.61.dfsg.1 gs_opendevice@Base 8.61.dfsg.1 gs_oprp_device@Base 8.61.dfsg.1 gs_opvp_device@Base 8.61.dfsg.1 gs_output_page@Base 8.61.dfsg.1 gs_overprint_device@Base 8.61.dfsg.1 gs_paintjet_device@Base 8.61.dfsg.1 gs_pam_device@Base 8.61.dfsg.1 gs_pamcmyk32_device@Base 8.62.dfsg.1 gs_pamcmyk4_device@Base 9.02~dfsg gs_param_list_init@Base 8.61.dfsg.1 gs_param_list_serialize@Base 8.61.dfsg.1 gs_param_list_set_persist_keys@Base 8.61.dfsg.1 gs_param_list_unserialize@Base 8.61.dfsg.1 gs_param_read_items@Base 8.61.dfsg.1 gs_param_request_default@Base 8.61.dfsg.1 gs_param_requested_default@Base 8.61.dfsg.1 gs_param_string_eq@Base 8.61.dfsg.1 gs_param_type_base_sizes@Base 8.61.dfsg.1 gs_param_type_sizes@Base 8.61.dfsg.1 gs_param_typed_value_enum_ptrs@Base 8.61.dfsg.1 gs_param_typed_value_reloc_ptrs@Base 8.61.dfsg.1 gs_param_write_items@Base 8.61.dfsg.1 gs_parse_file_name@Base 8.61.dfsg.1 gs_parse_real_file_name@Base 8.61.dfsg.1 gs_path_enum_alloc@Base 8.61.dfsg.1 gs_path_enum_cleanup@Base 8.61.dfsg.1 gs_path_enum_copy_init@Base 8.61.dfsg.1 gs_path_enum_next@Base 8.61.dfsg.1 gs_pattern1_init@Base 8.61.dfsg.1 gs_pattern1_remap_color@Base 8.61.dfsg.1 gs_pattern2_init@Base 8.61.dfsg.1 gs_pattern2_set_shfill@Base 8.61.dfsg.1 gs_pattern_common_init@Base 8.61.dfsg.1 gs_pattern_reference@Base 8.61.dfsg.1 gs_pbm_device@Base 8.61.dfsg.1 gs_pbmraw_device@Base 8.61.dfsg.1 gs_pcl3_device@Base 8.61.dfsg.1 gs_pcl_mono_palette_device@Base 9.18~dfsg~0-0ubuntu1 gs_pcx16_device@Base 8.61.dfsg.1 gs_pcx24b_device@Base 8.61.dfsg.1 gs_pcx256_device@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_pcx2up_device@Base 8.61.dfsg.1 gs_pcxcmyk_device@Base 8.61.dfsg.1 gs_pcxgray_device@Base 8.61.dfsg.1 gs_pcxmono_device@Base 8.61.dfsg.1 gs_pdf14_CMYK_device@Base 8.61.dfsg.1 gs_pdf14_CMYKspot_device@Base 8.61.dfsg.1 gs_pdf14_Gray_device@Base 8.61.dfsg.1 gs_pdf14_Grayspot_device@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_pdf14_RGB_device@Base 8.61.dfsg.1 gs_pdf14_RGBspot_device@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_pdf14_custom_device@Base 8.61.dfsg.1 gs_pdf14_device_color_mon_set@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.14~dfsg-0ubuntu1# gs_pdf14_device_push@Base 8.61.dfsg.1 gs_pdfimage24_device@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_pdfimage32_device@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_pdfimage8_device@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_pdfwrite_device@Base 8.61.dfsg.1 gs_pgm_device@Base 8.61.dfsg.1 gs_pgmraw_device@Base 8.61.dfsg.1 gs_pgnm_device@Base 8.61.dfsg.1 gs_pgnmraw_device@Base 8.61.dfsg.1 gs_photoex_device@Base 8.61.dfsg.1 gs_picty180_device@Base 8.61.dfsg.1 gs_pixel_image_t_init@Base 8.61.dfsg.1 gs_pj_device@Base 8.61.dfsg.1 gs_pjetxl_device@Base 8.61.dfsg.1 gs_pjxl300_device@Base 8.61.dfsg.1 gs_pjxl_device@Base 8.61.dfsg.1 gs_pkm_device@Base 8.61.dfsg.1 gs_pkmraw_device@Base 8.61.dfsg.1 gs_pksm_device@Base 8.61.dfsg.1 gs_pksmraw_device@Base 8.61.dfsg.1 gs_plan9bm_device@Base 8.61.dfsg.1 gs_plan_device@Base 9.05~ gs_planc_device@Base 9.05~ gs_plang_device@Base 9.05~ gs_plank_device@Base 9.05~ gs_planm_device@Base 9.05~ gs_planr_device@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_plib_device@Base 9.16~dfsg~0-0ubuntu1 gs_plibc_device@Base 9.16~dfsg~0-0ubuntu1 gs_plibg_device@Base 9.16~dfsg~0-0ubuntu1 gs_plibk_device@Base 9.16~dfsg~0-0ubuntu1 gs_plibm_device@Base 9.16~dfsg~0-0ubuntu1 gs_png16_device@Base 8.61.dfsg.1 gs_png16m_device@Base 8.61.dfsg.1 gs_png256_device@Base 8.61.dfsg.1 gs_png48_device@Base 8.61.dfsg.1 gs_pngalpha_device@Base 8.61.dfsg.1 gs_pnggray_device@Base 8.61.dfsg.1 gs_pngmono_device@Base 8.61.dfsg.1 gs_pngmonod_device@Base 9.04~dfsg gs_pnm_device@Base 8.61.dfsg.1 gs_pnmcmyk_device@Base 9.08~rc1~dfsg-0ubuntu1 gs_pnmraw_device@Base 8.61.dfsg.1 gs_point_transform2fixed@Base 8.61.dfsg.1 gs_point_transform2fixed_rounding@Base 8.61.dfsg.1 gs_point_transform@Base 8.61.dfsg.1 gs_point_transform_inverse@Base 8.61.dfsg.1 gs_points_bbox@Base 8.61.dfsg.1 gs_pop_boolean@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_pop_device_filter@Base 8.61.dfsg.1 gs_pop_integer@Base 8.61.dfsg.1 gs_pop_pdf14trans_device@Base 8.61.dfsg.1 gs_pop_real@Base 8.61.dfsg.1 gs_pop_string@Base 8.61.dfsg.1 gs_pop_transparency_state@Base 8.71~dfsg gs_ppm_device@Base 8.61.dfsg.1 gs_ppmraw_device@Base 8.61.dfsg.1 gs_pr1000_4_device@Base 8.61.dfsg.1 gs_pr1000_device@Base 8.61.dfsg.1 gs_pr150_device@Base 8.61.dfsg.1 gs_pr201_device@Base 8.61.dfsg.1 gs_product@Base 8.61.dfsg.1 gs_productfamily@Base 8.61.dfsg.1 gs_program_family_name@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_program_name@Base 8.61.dfsg.1 gs_ps2write_device@Base 8.61.dfsg.1 gs_psdcmyk_device@Base 8.61.dfsg.1 gs_psdcmykog_device@Base 9.14~dfsg-0ubuntu1 gs_psdrgb_device@Base 8.61.dfsg.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# gs_psgray_device@Base 8.61.dfsg.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# gs_psmono_device@Base 8.61.dfsg.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# gs_psrgb_device@Base 8.61.dfsg.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# gs_pswrite_device@Base 8.61.dfsg.1 gs_purge_fm_pair@Base 8.61.dfsg.1 gs_purge_font@Base 8.61.dfsg.1 gs_purge_font_from_char_caches@Base 8.61.dfsg.1 gs_purge_font_from_char_caches_completely@Base 8.61.dfsg.1 gs_push_boolean@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_push_device_filter@Base 8.61.dfsg.1 gs_push_integer@Base 8.61.dfsg.1 gs_push_pdf14trans_device@Base 8.61.dfsg.1 gs_push_real@Base 8.61.dfsg.1 gs_push_string@Base 8.61.dfsg.1 gs_push_transparency_state@Base 8.71~dfsg gs_putdeviceparams@Base 8.61.dfsg.1 gs_putdevparams@Base 8.61.dfsg.1 gs_pwgraster_device@Base 9.14~dfsg-0ubuntu1 gs_pxlcolor_device@Base 8.61.dfsg.1 gs_pxlmono_device@Base 8.61.dfsg.1 gs_r4081_device@Base 8.61.dfsg.1 gs_raw_alloc_struct_immovable@Base 8.61.dfsg.1 gs_rcurveto@Base 8.61.dfsg.1 gs_rectappend@Base 8.61.dfsg.1 gs_rectclip@Base 8.61.dfsg.1 gs_rectfill@Base 8.61.dfsg.1 gs_rectstroke@Base 8.61.dfsg.1 gs_ref_memory_procs@Base 8.61.dfsg.1 gs_register_ref_root@Base 8.61.dfsg.1 gs_register_struct_root@Base 8.61.dfsg.1 gs_resize_ref_array@Base 8.61.dfsg.1 gs_resize_struct_array@Base 8.61.dfsg.1 gs_return_check_interrupt@Base 8.61.dfsg.1 gs_reversepath@Base 8.61.dfsg.1 gs_revision@Base 8.61.dfsg.1 gs_revision_number@Base 8.61.dfsg.1 gs_revisiondate@Base 8.61.dfsg.1 gs_rinkj_device@Base 8.63.dfsg.1 gs_rlineto@Base 8.61.dfsg.1 gs_rmoveto@Base 8.61.dfsg.1 gs_romfs@Base 8.62.dfsg.1 gs_romfs_buildtime@Base 9.18~dfsg~0-0ubuntu1 gs_rootfont@Base 8.61.dfsg.1 gs_rotate@Base 8.61.dfsg.1 gs_rpdl_device@Base 8.61.dfsg.1 gs_samsunggdi_device@Base 8.61.dfsg.1 gs_save_any_memory@Base 9.00~dfsg gs_scale@Base 8.61.dfsg.1 gs_scalefont@Base 8.61.dfsg.1 gs_scan_comment_proc@Base 9.01~ gs_scan_dsc_proc@Base 9.01~ gs_scan_handle_refill@Base 9.01~ gs_scan_string_token_options@Base 9.01~ gs_scan_token@Base 9.01~ gs_scanner_error_object@Base 9.01~ gs_scanner_init_options@Base 9.01~ gs_scanner_init_stream_options@Base 9.01~ gs_screen_currentpoint@Base 8.61.dfsg.1 gs_screen_enum_alloc@Base 8.61.dfsg.1 gs_screen_enum_init_memory@Base 8.61.dfsg.1 gs_screen_init@Base 8.61.dfsg.1 gs_screen_init_memory@Base 8.61.dfsg.1 gs_screen_install@Base 8.61.dfsg.1 gs_screen_next@Base 8.61.dfsg.1 gs_screen_order_alloc@Base 8.61.dfsg.1 gs_screen_order_init_memory@Base 8.61.dfsg.1 gs_serialnumber@Base 8.61.dfsg.1 gs_setPDFfontsize@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_set_currentfont@Base 8.61.dfsg.1 gs_set_logical_op@Base 8.61.dfsg.1 #MISSING: 9.04~dfsg-1# gs_set_object_tag@Base 8.61.dfsg.1 gs_setaccuratecurves@Base 8.61.dfsg.1 gs_setaccuratescreens@Base 8.61.dfsg.1 gs_setaligntopixels@Base 8.61.dfsg.1 gs_setalpha@Base 8.61.dfsg.1 gs_setalphaisshape@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_setbbox@Base 8.61.dfsg.1 gs_setblackgeneration@Base 8.61.dfsg.1 gs_setblackgeneration_remap@Base 8.61.dfsg.1 gs_setblackptcomp@Base 9.07~dfsg-0ubuntu1 gs_setblendmode@Base 8.61.dfsg.1 gs_setcachedevice2_double@Base 8.61.dfsg.1 gs_setcachedevice2_float@Base 8.61.dfsg.1 gs_setcachedevice_double@Base 8.61.dfsg.1 gs_setcachedevice_float@Base 8.61.dfsg.1 gs_setcachelower@Base 8.61.dfsg.1 gs_setcachesize@Base 8.61.dfsg.1 gs_setcacheupper@Base 8.61.dfsg.1 gs_setcharmatrix@Base 8.61.dfsg.1 gs_setcharwidth@Base 8.61.dfsg.1 gs_setcmykcolor@Base 8.61.dfsg.1 gs_setcolor@Base 8.61.dfsg.1 gs_setcolorrendering@Base 8.61.dfsg.1 gs_setcolorscreen@Base 8.61.dfsg.1 gs_setcolorspace@Base 8.61.dfsg.1 gs_setcolorspace_only@Base 9.00~dfsg gs_setcolortransfer@Base 8.61.dfsg.1 gs_setcolortransfer_remap@Base 8.61.dfsg.1 gs_setcpsimode@Base 9.00~dfsg gs_setcurvejoin@Base 8.61.dfsg.1 gs_setdash@Base 8.61.dfsg.1 gs_setdashadapt@Base 8.61.dfsg.1 gs_setdefaultcmykicc@Base 9.06~dfsg~20120802-0ubuntu1 gs_setdefaultgrayicc@Base 9.06~dfsg~20120802-0ubuntu1 gs_setdefaultmatrix@Base 8.61.dfsg.1 gs_setdefaultrgbicc@Base 9.06~dfsg~20120802-0ubuntu1 gs_setdevice@Base 8.61.dfsg.1 gs_setdevice_no_erase@Base 8.61.dfsg.1 gs_setdevice_no_init@Base 8.61.dfsg.1 gs_setdevicenprofileicc@Base 9.06~dfsg~20120802-0ubuntu1 gs_setdotlength@Base 8.61.dfsg.1 gs_setdotorientation@Base 8.61.dfsg.1 gs_setfilladjust@Base 8.61.dfsg.1 gs_setfillconstantalpha@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_setfilloverprint@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_setflat@Base 8.61.dfsg.1 gs_setfont@Base 8.61.dfsg.1 gs_setgray@Base 8.61.dfsg.1 gs_setgridfittt@Base 8.61.dfsg.1 gs_setgstate@Base 8.61.dfsg.1 gs_sethalftone@Base 8.61.dfsg.1 gs_sethalftone_allocated@Base 8.61.dfsg.1 gs_sethalftone_prepare@Base 8.61.dfsg.1 gs_sethpglpathmode@Base 9.06~dfsg~20120802-0ubuntu1 gs_seticcdirectory@Base 9.06~dfsg~20120802-0ubuntu1 gs_setlabicc@Base 9.06~dfsg~20120802-0ubuntu1 gs_setlimitclamp@Base 8.61.dfsg.1 gs_setlinecap@Base 8.61.dfsg.1 gs_setlinedashcap@Base 8.71~dfsg gs_setlineendcap@Base 8.71~dfsg gs_setlinejoin@Base 8.61.dfsg.1 gs_setlinestartcap@Base 8.71~dfsg gs_setlinewidth@Base 8.61.dfsg.1 gs_setmatrix@Base 8.61.dfsg.1 gs_setminscreenlevels@Base 8.61.dfsg.1 gs_setmiterlimit@Base 8.61.dfsg.1 gs_setnamedprofileicc@Base 9.06~dfsg~20120802-0ubuntu1 gs_setnullcolor@Base 8.61.dfsg.1 gs_setopacityalpha@Base 8.61.dfsg.1 gs_setoverprint@Base 8.61.dfsg.1 gs_setoverprintmode@Base 8.61.dfsg.1 #MISSING: 9.07~dfsg-0ubuntu1# gs_setoverride_ri@Base 9.04~dfsg gs_setoverrideicc@Base 9.04~dfsg gs_setpattern@Base 8.61.dfsg.1 gs_setpatternspace@Base 8.61.dfsg.1 gs_setrasterop@Base 8.71~dfsg gs_setrenderingintent@Base 8.61.dfsg.1 gs_setrgbcolor@Base 8.61.dfsg.1 gs_setscanconverter@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_setscreen@Base 8.61.dfsg.1 gs_setscreenphase@Base 8.61.dfsg.1 gs_setshapealpha@Base 8.61.dfsg.1 gs_setsmoothness@Base 8.61.dfsg.1 gs_setsourcetransparent@Base 8.71~dfsg gs_setsrcgtagicc@Base 9.06~dfsg~20120802-0ubuntu1 gs_setstrokeadjust@Base 8.61.dfsg.1 gs_setstrokeconstantalpha@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_setstrokeoverprint@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_settexthscaling@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_settextknockout@Base 8.61.dfsg.1 gs_settextleading@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_settextlinematrix@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_settextmatrix@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_settextrenderingmode@Base 8.61.dfsg.1 gs_settextrise@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_settextspacing@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_settexturetransparent@Base 8.71~dfsg gs_settocharmatrix@Base 8.61.dfsg.1 gs_settransfer@Base 8.61.dfsg.1 gs_settransfer_remap@Base 8.61.dfsg.1 gs_setundercolorremoval@Base 8.61.dfsg.1 gs_setundercolorremoval_remap@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# gs_setusewts@Base 8.61.dfsg.1 gs_setwordspacing@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_sgirgb_device@Base 8.61.dfsg.1 gs_shading_A_fill_rectangle@Base 8.61.dfsg.1 gs_shading_A_init@Base 8.61.dfsg.1 gs_shading_A_params_init@Base 8.61.dfsg.1 gs_shading_Cp_fill_rectangle@Base 8.61.dfsg.1 gs_shading_Cp_init@Base 8.61.dfsg.1 gs_shading_Cp_params_init@Base 8.61.dfsg.1 gs_shading_Fb_fill_rectangle@Base 8.61.dfsg.1 gs_shading_Fb_init@Base 8.61.dfsg.1 gs_shading_Fb_params_init@Base 8.61.dfsg.1 gs_shading_FfGt_fill_rectangle@Base 8.61.dfsg.1 gs_shading_FfGt_init@Base 8.61.dfsg.1 gs_shading_FfGt_params_init@Base 8.61.dfsg.1 gs_shading_LfGt_fill_rectangle@Base 8.61.dfsg.1 gs_shading_LfGt_init@Base 8.61.dfsg.1 gs_shading_LfGt_params_init@Base 8.61.dfsg.1 gs_shading_R_fill_rectangle@Base 8.61.dfsg.1 gs_shading_R_init@Base 8.61.dfsg.1 gs_shading_R_params_init@Base 8.61.dfsg.1 gs_shading_Tpp_fill_rectangle@Base 8.61.dfsg.1 gs_shading_Tpp_init@Base 8.61.dfsg.1 gs_shading_Tpp_params_init@Base 8.61.dfsg.1 gs_shading_do_fill_rectangle@Base 8.61.dfsg.1 gs_shading_path_add_box@Base 8.61.dfsg.1 gs_shfill@Base 8.61.dfsg.1 gs_show_begin@Base 8.61.dfsg.1 gs_show_current_char@Base 8.61.dfsg.1 gs_show_current_font@Base 8.61.dfsg.1 gs_show_current_glyph@Base 8.61.dfsg.1 gs_show_current_width@Base 8.61.dfsg.1 gs_show_enum_alloc@Base 8.61.dfsg.1 gs_show_enum_release@Base 8.61.dfsg.1 gs_show_in_charpath@Base 8.61.dfsg.1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# gs_show_n_init@Base 8.61.dfsg.1 gs_show_next@Base 8.61.dfsg.1 gs_show_width@Base 8.61.dfsg.1 gs_show_width_only@Base 8.61.dfsg.1 gs_sin_degrees@Base 8.61.dfsg.1 gs_sincos_degrees@Base 8.61.dfsg.1 gs_sj48_device@Base 8.61.dfsg.1 gs_snprintf@Base 9.08~rc1~dfsg-0ubuntu1 gs_spotcmyk_device@Base 8.61.dfsg.1 gs_sprintf@Base 9.08~rc1~dfsg-0ubuntu1 gs_sqrt@Base 8.61.dfsg.1 #MISSING: 9.18~dfsg~0-0ubuntu1# gs_sscanf@Base 9.08~rc1~dfsg-0ubuntu1 gs_st800_device@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_state_alloc@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_state_client_data@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_state_copy@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_state_free@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_state_free_chain@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_state_memory@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_state_putdeviceparams@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_state_saved@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_state_set_client@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_state_swap_memory@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_state_swap_saved@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_state_update_overprint@Base 8.61.dfsg.1 gs_stcolor_device@Base 8.61.dfsg.1 gs_stringwidth_begin@Base 8.61.dfsg.1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# gs_stringwidth_n_init@Base 8.61.dfsg.1 gs_strlcat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_strlcpy@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_stroke@Base 8.61.dfsg.1 gs_strokepath2@Base 8.71~dfsg gs_strokepath@Base 8.61.dfsg.1 gs_strtok@Base 9.18~dfsg~0-0ubuntu1 gs_struct_type_name@Base 8.61.dfsg.1 gs_struct_type_size@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_sunhmono_device@Base 8.61.dfsg.1 #MISSING: 9.14~dfsg-0ubuntu1# gs_svgwrite_device@Base 9.07~dfsg-0ubuntu1 gs_swapcolors@Base 8.71~dfsg-4~ gs_swapcolors_quick@Base 8.71~dfsg-4~ gs_sxlcrt_device@Base 8.61.dfsg.1 gs_t4693d2_device@Base 8.61.dfsg.1 gs_t4693d4_device@Base 8.61.dfsg.1 gs_t4693d8_device@Base 8.61.dfsg.1 gs_tek4696_device@Base 8.61.dfsg.1 gs_terminate_file_name@Base 8.61.dfsg.1 gs_text_begin@Base 8.61.dfsg.1 gs_text_count_chars@Base 8.61.dfsg.1 gs_text_current_char@Base 8.61.dfsg.1 gs_text_current_font@Base 8.61.dfsg.1 gs_text_current_glyph@Base 8.61.dfsg.1 gs_text_current_width@Base 8.61.dfsg.1 gs_text_enum_alloc@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_text_enum_copy_dynamic@Base 8.61.dfsg.1 gs_text_enum_init@Base 8.61.dfsg.1 gs_text_is_width_only@Base 8.61.dfsg.1 gs_text_next_char@Base 8.61.dfsg.1 gs_text_process@Base 8.61.dfsg.1 gs_text_release@Base 8.61.dfsg.1 gs_text_replaced_width@Base 8.61.dfsg.1 gs_text_restart@Base 8.61.dfsg.1 gs_text_resync@Base 8.61.dfsg.1 gs_text_retry@Base 8.61.dfsg.1 gs_text_set_cache@Base 8.61.dfsg.1 gs_text_setcachedevice2@Base 8.61.dfsg.1 gs_text_setcachedevice@Base 8.61.dfsg.1 gs_text_setcharwidth@Base 8.61.dfsg.1 gs_text_total_width@Base 8.61.dfsg.1 gs_text_update_dev_color@Base 8.61.dfsg.1 gs_throw_imp@Base 8.61.dfsg.1 gs_tiff12nc_device@Base 8.61.dfsg.1 gs_tiff24nc_device@Base 8.61.dfsg.1 gs_tiff32nc_device@Base 8.61.dfsg.1 gs_tiff48nc_device@Base 8.71~dfsg gs_tiff64nc_device@Base 8.71~dfsg gs_tiffcrle_device@Base 8.61.dfsg.1 gs_tiffg32d_device@Base 8.61.dfsg.1 gs_tiffg3_device@Base 8.61.dfsg.1 gs_tiffg4_device@Base 8.61.dfsg.1 gs_tiffgray_device@Base 8.61.dfsg.1 gs_tifflzw_device@Base 8.61.dfsg.1 gs_tiffpack_device@Base 8.61.dfsg.1 gs_tiffscaled24_device@Base 9.04~dfsg gs_tiffscaled32_device@Base 9.08~rc1~dfsg-0ubuntu1 gs_tiffscaled4_device@Base 9.07~dfsg-0ubuntu1 gs_tiffscaled8_device@Base 9.04~dfsg gs_tiffscaled_device@Base 9.01~ gs_tiffsep1_device@Base 8.71~dfsg gs_tiffsep_device@Base 8.61.dfsg.1 gs_to_exit@Base 8.61.dfsg.1 gs_to_exit_with_code@Base 8.61.dfsg.1 gs_trans_group_params_init@Base 8.61.dfsg.1 gs_trans_mask_params_init@Base 8.61.dfsg.1 gs_transform@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gs_transform_color_buffer_generic@Base 8.64~dfsg-3~ gs_translate@Base 8.61.dfsg.1 gs_translate_untransformed@Base 9.05~ gs_transparent_rop@Base 8.71~dfsg gs_truetype_font_info@Base 8.61.dfsg.1 gs_txtwrite_device@Base 9.05~ gs_type0_define_font@Base 8.61.dfsg.1 gs_type0_init_fstack@Base 8.61.dfsg.1 gs_type0_make_font@Base 8.61.dfsg.1 gs_type0_next_char_glyph@Base 8.61.dfsg.1 gs_type1_blend@Base 8.61.dfsg.1 gs_type1_check_float@Base 8.61.dfsg.1 gs_type1_decrypt@Base 8.61.dfsg.1 gs_type1_encrypt@Base 8.61.dfsg.1 gs_type1_endchar@Base 8.61.dfsg.1 gs_type1_finish_init@Base 8.61.dfsg.1 gs_type1_glyph_info@Base 8.61.dfsg.1 gs_type1_interp_init@Base 8.61.dfsg.1 gs_type1_interpret@Base 8.61.dfsg.1 gs_type1_piece_codes@Base 8.61.dfsg.1 gs_type1_sbw@Base 8.61.dfsg.1 gs_type1_seac@Base 8.61.dfsg.1 gs_type1_set_callback_data@Base 8.61.dfsg.1 gs_type1_set_lsb@Base 8.61.dfsg.1 gs_type1_set_width@Base 8.61.dfsg.1 gs_type2_interpret@Base 8.61.dfsg.1 gs_type42_append@Base 8.61.dfsg.1 gs_type42_default_get_metrics@Base 8.61.dfsg.1 gs_type42_enumerate_glyph@Base 8.61.dfsg.1 gs_type42_font_info@Base 8.61.dfsg.1 gs_type42_font_init@Base 8.61.dfsg.1 gs_type42_get_metrics@Base 8.61.dfsg.1 gs_type42_get_outline_from_TT_file@Base 8.61.dfsg.1 #MISSING: 8.64~dfsg# gs_type42_glyph_fbbox@Base 8.61.dfsg.1 gs_type42_glyph_info@Base 8.61.dfsg.1 gs_type42_glyph_info_by_gid@Base 8.61.dfsg.1 gs_type42_glyph_outline@Base 8.61.dfsg.1 gs_type42_parse_component@Base 8.71~dfsg gs_type42_read_data@Base 8.61.dfsg.1 gs_type42_substitute_glyph_index_vertical@Base 8.64~dfsg gs_uniprint_device@Base 8.61.dfsg.1 gs_upathbbox@Base 8.61.dfsg.1 gs_update_trans_marking_params@Base 9.04~dfsg gs_upmergepath@Base 8.61.dfsg.1 gs_viewclip@Base 8.61.dfsg.1 gs_viewclippath@Base 8.61.dfsg.1 gs_vsnprintf@Base 9.08~rc1~dfsg-0ubuntu1 gs_vsprintf@Base 9.08~rc1~dfsg-0ubuntu1 gs_widthshow_begin@Base 8.61.dfsg.1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# gs_widthshow_n_init@Base 8.61.dfsg.1 gs_woff2sfnt_buffer@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gs_woff2sfnt_stream@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.05~dfsg-1# gs_wts_free_enum@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# gs_wts_free_screen@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# gs_wts_from_buf@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# gs_wts_screen_enum_currentpoint@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# gs_wts_screen_enum_new@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# gs_wts_screen_enum_next@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# gs_wtscmyk_device@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# gs_wtsimdi_device@Base 8.61.dfsg.1 gs_xcf_device@Base 8.61.dfsg.1 gs_xcfcmyk_device@Base 8.61.dfsg.1 gs_xes_device@Base 8.61.dfsg.1 gs_xpswrite_device@Base 9.08~rc1~dfsg-0ubuntu1 gs_xyshow_begin@Base 8.61.dfsg.1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# gs_xyshow_n_init@Base 8.61.dfsg.1 gsapi_delete_instance@Base 8.61.dfsg.1 gsapi_exit@Base 8.61.dfsg.1 gsapi_get_default_device_list@Base 9.15~dfsg-0ubuntu1 gsapi_init_with_args@Base 8.61.dfsg.1 gsapi_new_instance@Base 8.61.dfsg.1 gsapi_revision@Base 8.61.dfsg.1 gsapi_run_file@Base 8.61.dfsg.1 gsapi_run_string@Base 8.61.dfsg.1 gsapi_run_string_begin@Base 8.61.dfsg.1 gsapi_run_string_continue@Base 8.61.dfsg.1 gsapi_run_string_end@Base 8.61.dfsg.1 gsapi_run_string_with_length@Base 8.61.dfsg.1 gsapi_set_arg_encoding@Base 9.08~rc1~dfsg-0ubuntu1 gsapi_set_default_device_list@Base 9.15~dfsg-0ubuntu1 gsapi_set_display_callback@Base 8.61.dfsg.1 gsapi_set_poll@Base 8.61.dfsg.1 gsapi_set_stdio@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gsapi_set_visual_tracer@Base 8.61.dfsg.1 gsbittab_dummy@Base 8.61.dfsg.1 gscms_avoid_white_fix_flag@Base 9.14~dfsg-0ubuntu1 gscms_create@Base 9.00~dfsg gscms_destroy@Base 9.00~dfsg gscms_get_clrtname@Base 9.00~dfsg gscms_get_device_class@Base 9.15~dfsg-0ubuntu1 gscms_get_input_channel_count@Base 9.00~dfsg gscms_get_link@Base 9.00~dfsg gscms_get_link_dim@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.05~dfsg-1# gscms_get_link_proof@Base 9.00~dfsg gscms_get_link_proof_devlink@Base 9.05~ gscms_get_name2device_link@Base 9.00~dfsg gscms_get_numberclrtnames@Base 9.00~dfsg gscms_get_output_channel_count@Base 9.00~dfsg gscms_get_profile_data_space@Base 9.00~dfsg gscms_get_profile_handle_file@Base 9.00~dfsg gscms_get_profile_handle_mem@Base 9.00~dfsg gscms_is_device_link@Base 9.07~dfsg-0ubuntu1 gscms_is_input@Base 9.14~dfsg-0ubuntu1 gscms_is_threadsafe@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gscms_release_link@Base 9.00~dfsg gscms_release_profile@Base 9.00~dfsg #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gscms_set_icc_range@Base 9.05~ gscms_transform_color@Base 9.00~dfsg gscms_transform_color_buffer@Base 9.00~dfsg gscms_transform_named_color@Base 9.00~dfsg gsicc_add_cs@Base 9.00~dfsg gsicc_adjust_profile_rc@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gsicc_alloc_link_dev@Base 9.18~dfsg~0-0ubuntu1 gsicc_alloc_link_entry@Base 9.05~ gsicc_cache_new@Base 9.00~dfsg gsicc_clone_profile@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gsicc_create_from_cal@Base 9.00~dfsg gsicc_create_froma@Base 9.00~dfsg gsicc_create_fromabc@Base 9.00~dfsg gsicc_create_fromcrd@Base 9.00~dfsg gsicc_create_fromdef@Base 9.00~dfsg gsicc_create_fromdefg@Base 9.00~dfsg gsicc_create_getv2buffer@Base 9.15~dfsg-0ubuntu1 gsicc_currentcoloraccuracy@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gsicc_extract_profile@Base 9.04~dfsg gsicc_find_cs@Base 9.00~dfsg gsicc_findcachelink@Base 9.05~ gsicc_finddevicen@Base 9.00~dfsg gsicc_free_link_dev@Base 9.18~dfsg~0-0ubuntu1 gsicc_get_default_type@Base 9.00~dfsg gsicc_get_dev_icccolorants@Base 9.07~dfsg-0ubuntu1 gsicc_get_device_class@Base 9.15~dfsg-0ubuntu1 gsicc_get_device_profile_comps@Base 9.05~ gsicc_get_gscs_profile@Base 9.00~dfsg gsicc_get_hash@Base 9.16~dfsg~0-0ubuntu1 gsicc_get_icc_buff_hash@Base 9.00~dfsg gsicc_get_link@Base 9.00~dfsg gsicc_get_link_profile@Base 9.00~dfsg gsicc_get_profile_handle_buffer@Base 9.00~dfsg gsicc_get_profile_handle_clist@Base 9.00~dfsg gsicc_get_profile_handle_file@Base 9.00~dfsg #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gsicc_get_srcprofile@Base 9.04~dfsg gsicc_getprofilesize@Base 9.00~dfsg gsicc_getprofilevers@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gsicc_getsrc_channel_count@Base 9.00~dfsg gsicc_init_buffer@Base 9.00~dfsg #MISSING: 9.04~dfsg-1# gsicc_init_device_profile@Base 9.00~dfsg gsicc_init_device_profile_struct@Base 9.04~dfsg gsicc_init_gs_colors@Base 9.01~ gsicc_init_hash_cs@Base 9.00~dfsg gsicc_init_iccmanager@Base 9.00~dfsg gsicc_init_profile_info@Base 9.00~dfsg gsicc_initialize_default_profile@Base 9.06~dfsg~20120802-0ubuntu1 gsicc_initialize_iccsmask@Base 9.00~dfsg gsicc_link_free@Base 9.05~ gsicc_manager_new@Base 9.00~dfsg gsicc_mcm_begin_monitor@Base 9.08~rc1~dfsg-0ubuntu1 gsicc_mcm_end_monitor@Base 9.08~rc1~dfsg-0ubuntu1 gsicc_mcm_monitor_cmyk@Base 9.08~rc1~dfsg-0ubuntu1 gsicc_mcm_monitor_lab@Base 9.08~rc1~dfsg-0ubuntu1 gsicc_mcm_monitor_rgb@Base 9.08~rc1~dfsg-0ubuntu1 gsicc_mcm_set_link@Base 9.08~rc1~dfsg-0ubuntu1 gsicc_new_device_profile_array@Base 9.04~dfsg gsicc_new_iccsmask@Base 9.00~dfsg gsicc_nocm_get_link@Base 9.05~ gsicc_profile_from_ps@Base 9.14~dfsg-0ubuntu1 gsicc_profile_new@Base 9.00~dfsg #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gsicc_profile_reference@Base 9.00~dfsg gsicc_profile_serialize@Base 9.00~dfsg gsicc_profilecache_new@Base 9.00~dfsg gsicc_rcm_get_link@Base 9.07~dfsg-0ubuntu1 gsicc_read_serial_icc@Base 9.00~dfsg gsicc_release_link@Base 9.00~dfsg gsicc_set_device_blackpreserve@Base 9.07~dfsg-0ubuntu1 gsicc_set_device_blackptcomp@Base 9.07~dfsg-0ubuntu1 gsicc_set_device_profile@Base 9.04~dfsg gsicc_set_device_profile_colorants@Base 9.07~dfsg-0ubuntu1 gsicc_set_device_profile_intent@Base 9.04~dfsg gsicc_set_devicen_equiv_colors@Base 9.07~dfsg-0ubuntu1 gsicc_set_gscs_profile@Base 9.00~dfsg #MISSING: 9.04~dfsg-1# gsicc_set_icc_directory@Base 9.00~dfsg gsicc_set_icc_range@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gsicc_set_iccsmaskprofile@Base 9.04~dfsg #MISSING: 9.08~rc1~dfsg-0ubuntu1# gsicc_set_link_data@Base 9.05~ gsicc_set_profile@Base 9.00~dfsg #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gsicc_set_srcgtag_struct@Base 9.04~dfsg gsicc_setcoloraccuracy@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gsicc_setrange_lab@Base 9.05~ gsicc_transform_named_color@Base 9.00~dfsg gstate_pattern_cache@Base 8.61.dfsg.1 gstate_set_pattern_cache@Base 8.61.dfsg.1 gx_abort_trans_device@Base 9.14~dfsg-0ubuntu1 gx_add_cached_char@Base 8.61.dfsg.1 gx_add_char_bits@Base 8.61.dfsg.1 gx_add_fm_pair@Base 8.61.dfsg.1 gx_alloc_char_bits@Base 8.61.dfsg.1 gx_alloc_rop_texture_device@Base 8.61.dfsg.1 gx_backwards_compatible_gray_encode@Base 8.61.dfsg.1 gx_begin_image1@Base 8.61.dfsg.1 gx_begin_image3_generic@Base 8.61.dfsg.1 gx_begin_image3x_generic@Base 8.61.dfsg.1 gx_begin_transparency_group@Base 8.61.dfsg.1 gx_begin_transparency_mask@Base 8.61.dfsg.1 gx_bits_cache_alloc@Base 8.61.dfsg.1 gx_bits_cache_chunk_init@Base 8.61.dfsg.1 gx_bits_cache_free@Base 8.61.dfsg.1 gx_bits_cache_init@Base 8.61.dfsg.1 gx_bits_cache_shorten@Base 8.61.dfsg.1 gx_blend_image_buffer@Base 9.01~ gx_build_blended_image_row@Base 8.64~dfsg gx_build_cie_space@Base 8.61.dfsg.1 gx_change_color_model@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_char_cache_alloc@Base 8.61.dfsg.1 gx_char_cache_init@Base 8.61.dfsg.1 gx_check_fixed_diff_overflow@Base 8.61.dfsg.1 gx_check_fixed_sum_overflow@Base 8.61.dfsg.1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# gx_check_tile_cache@Base 8.61.dfsg.1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# gx_check_tile_cache_current@Base 8.61.dfsg.1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# gx_check_tile_size@Base 8.61.dfsg.1 gx_cie_check_rendering@Base 8.61.dfsg.1 gx_cie_common_complete@Base 8.61.dfsg.1 gx_cie_load_common_cache@Base 8.61.dfsg.1 gx_cie_real_remap_finish@Base 8.61.dfsg.1 gx_cie_remap_finish@Base 8.61.dfsg.1 gx_cie_to_xyz_alloc@Base 8.61.dfsg.1 gx_cie_to_xyz_free@Base 8.61.dfsg.1 gx_cie_xyz_remap_finish@Base 8.61.dfsg.1 gx_clip_list_free@Base 8.61.dfsg.1 gx_clip_list_init@Base 8.61.dfsg.1 gx_clip_to_path@Base 8.61.dfsg.1 gx_clip_to_rectangle@Base 8.61.dfsg.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# gx_clist_reader_free_band_complexity_array@Base 8.61.dfsg.1 gx_color_frac_map@Base 8.61.dfsg.1 gx_color_index2usage@Base 9.06~dfsg~20120802-0ubuntu1 gx_color_info_equal@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_color_interpolate_linear@Base 8.61.dfsg.1 gx_color_interpolate_nearest@Base 8.61.dfsg.1 gx_color_space_needs_cie_caches@Base 8.61.dfsg.1 gx_complete_halftone@Base 8.61.dfsg.1 gx_compute_ccache_key@Base 8.61.dfsg.1 gx_compute_cell_values@Base 8.61.dfsg.1 gx_compute_char_matrix@Base 8.61.dfsg.1 gx_compute_text_oversampling@Base 8.61.dfsg.1 gx_concrete_space_CIE@Base 8.61.dfsg.1 gx_concretize_CIEA@Base 8.61.dfsg.1 gx_concretize_CIEABC@Base 8.61.dfsg.1 gx_concretize_CIEDEF@Base 8.61.dfsg.1 gx_concretize_CIEDEFG@Base 8.61.dfsg.1 gx_concretize_DeviceCMYK@Base 8.61.dfsg.1 gx_concretize_DeviceGray@Base 8.61.dfsg.1 gx_concretize_DeviceRGB@Base 8.61.dfsg.1 gx_copy_alpha_unaligned@Base 8.61.dfsg.1 gx_copy_color_unaligned@Base 8.61.dfsg.1 gx_copy_device_procs@Base 9.18~dfsg~0-0ubuntu1 gx_copy_mono_unaligned@Base 8.61.dfsg.1 gx_copy_rop_unaligned@Base 8.71~dfsg gx_cpath_accum_begin@Base 8.61.dfsg.1 gx_cpath_accum_discard@Base 8.61.dfsg.1 gx_cpath_accum_end@Base 8.61.dfsg.1 gx_cpath_accum_set_cbox@Base 8.61.dfsg.1 gx_cpath_alloc_shared@Base 8.61.dfsg.1 gx_cpath_assign_free@Base 8.61.dfsg.1 gx_cpath_assign_preserve@Base 8.61.dfsg.1 gx_cpath_clip@Base 8.61.dfsg.1 gx_cpath_copy@Base 8.61.dfsg.1 gx_cpath_ensure_path_list@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_cpath_enum_init@Base 8.61.dfsg.1 gx_cpath_enum_next@Base 8.61.dfsg.1 gx_cpath_enum_notes@Base 8.61.dfsg.1 gx_cpath_free@Base 8.61.dfsg.1 gx_cpath_from_rectangle@Base 8.61.dfsg.1 gx_cpath_includes_rectangle@Base 8.61.dfsg.1 gx_cpath_init_contained_shared@Base 8.61.dfsg.1 gx_cpath_init_local_shared@Base 8.61.dfsg.1 gx_cpath_init_local_shared_nested@Base 9.05~ gx_cpath_inner_box@Base 8.61.dfsg.1 gx_cpath_intersect@Base 8.61.dfsg.1 gx_cpath_intersect_path_slow@Base 8.61.dfsg.1 gx_cpath_intersect_with_params@Base 8.61.dfsg.1 gx_cpath_list@Base 8.61.dfsg.1 gx_cpath_outer_box@Base 8.61.dfsg.1 gx_cpath_rect_visible@Base 8.61.dfsg.1 gx_cpath_reset@Base 8.61.dfsg.1 gx_cpath_scale_exp2_shared@Base 8.61.dfsg.1 gx_cpath_set_outer_box@Base 8.61.dfsg.1 gx_cpath_to_path@Base 8.61.dfsg.1 gx_cpath_to_path_synthesize@Base 8.61.dfsg.1 gx_cpath_unshare@Base 8.61.dfsg.1 gx_cspace_is_linear_default@Base 8.61.dfsg.1 gx_cspace_no_linear@Base 8.61.dfsg.1 gx_curr_bbox@Base 9.06~dfsg~20120802-0ubuntu1 gx_current_char@Base 8.61.dfsg.1 gx_current_path@Base 8.61.dfsg.1 gx_currentciecaches@Base 8.61.dfsg.1 gx_curve_log2_samples@Base 8.61.dfsg.1 gx_curve_monotonic_points@Base 8.61.dfsg.1 gx_curve_monotonize@Base 8.61.dfsg.1 gx_data_image_source_size@Base 8.61.dfsg.1 gx_dc_binary_masked@Base 8.61.dfsg.1 gx_dc_binary_masked_fill_rect@Base 8.61.dfsg.1 gx_dc_cannot_read@Base 8.63.dfsg.1 gx_dc_cannot_write@Base 8.63.dfsg.1 gx_dc_colored_masked@Base 8.61.dfsg.1 gx_dc_colored_masked_fill_rect@Base 8.61.dfsg.1 gx_dc_default_fill_masked@Base 8.61.dfsg.1 gx_dc_devn_fill_masked@Base 9.06~dfsg~20120802-0ubuntu1 gx_dc_devn_get_nonzero_comps@Base 9.06~dfsg~20120802-0ubuntu1 gx_dc_devn_masked@Base 9.06~dfsg~20120802-0ubuntu1 gx_dc_devn_masked_fill_rect@Base 9.06~dfsg~20120802-0ubuntu1 gx_dc_ht_binary_get_nonzero_comps@Base 8.61.dfsg.1 gx_dc_ht_colored_get_nonzero_comps@Base 8.61.dfsg.1 gx_dc_ht_get_phase@Base 8.61.dfsg.1 gx_dc_is_pattern1_color@Base 8.61.dfsg.1 gx_dc_is_pattern1_color_clist_based@Base 8.63.dfsg.1 gx_dc_is_pattern1_color_with_trans@Base 9.06~dfsg~20120802-0ubuntu1 gx_dc_is_pattern2_color@Base 8.61.dfsg.1 gx_dc_no_get_phase@Base 8.61.dfsg.1 gx_dc_pat_trans_fill_rectangle@Base 9.00~dfsg gx_dc_pattern2@Base 8.61.dfsg.1 gx_dc_pattern2_can_overlap@Base 8.61.dfsg.1 gx_dc_pattern2_clip_with_bbox@Base 8.71~dfsg gx_dc_pattern2_clip_with_bbox_simple@Base 8.62.dfsg.1 gx_dc_pattern2_color_has_bbox@Base 8.61.dfsg.1 gx_dc_pattern2_get_bbox@Base 8.61.dfsg.1 gx_dc_pattern2_get_color_space@Base 8.61.dfsg.1 gx_dc_pattern2_has_background@Base 8.61.dfsg.1 gx_dc_pattern2_is_rectangular_cell@Base 8.62.dfsg.1 gx_dc_pattern2_shade_bbox_transform2fixed@Base 8.61.dfsg.1 gx_dc_pattern@Base 8.61.dfsg.1 gx_dc_pattern_fill_rectangle@Base 8.61.dfsg.1 gx_dc_pattern_get_nonzero_comps@Base 8.61.dfsg.1 gx_dc_pattern_read@Base 8.61.dfsg.1 gx_dc_pattern_save_dc@Base 8.61.dfsg.1 gx_dc_pattern_trans@Base 9.00~dfsg gx_dc_pattern_write@Base 8.61.dfsg.1 gx_dc_pure_get_nonzero_comps@Base 8.61.dfsg.1 gx_dc_pure_masked@Base 8.61.dfsg.1 gx_dc_pure_masked_fill_rect@Base 8.61.dfsg.1 gx_dc_read_color@Base 8.61.dfsg.1 gx_dc_type_data_devn@Base 9.06~dfsg~20120802-0ubuntu1 gx_dc_type_data_ht_binary@Base 8.61.dfsg.1 gx_dc_type_data_ht_colored@Base 8.61.dfsg.1 gx_dc_type_data_none@Base 8.61.dfsg.1 gx_dc_type_data_null@Base 8.61.dfsg.1 gx_dc_type_data_pure@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# gx_dc_type_data_wts@Base 8.61.dfsg.1 gx_dc_type_devn@Base 9.06~dfsg~20120802-0ubuntu1 gx_dc_type_ht_binary@Base 8.61.dfsg.1 gx_dc_type_ht_colored@Base 8.61.dfsg.1 gx_dc_type_none@Base 8.61.dfsg.1 gx_dc_type_null@Base 8.61.dfsg.1 gx_dc_type_pattern@Base 8.61.dfsg.1 gx_dc_type_pure@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# gx_dc_type_wts@Base 8.61.dfsg.1 gx_dc_write_color@Base 8.61.dfsg.1 gx_default_8bit_map_color_gray@Base 8.61.dfsg.1 gx_default_8bit_map_gray_color@Base 8.61.dfsg.1 gx_default_DevCMYK_get_color_comp_index@Base 8.61.dfsg.1 gx_default_DevCMYK_get_color_mapping_procs@Base 8.61.dfsg.1 gx_default_DevGray_get_color_comp_index@Base 8.61.dfsg.1 gx_default_DevGray_get_color_mapping_procs@Base 8.61.dfsg.1 gx_default_DevRGBK_get_color_comp_index@Base 8.61.dfsg.1 gx_default_DevRGBK_get_color_mapping_procs@Base 8.61.dfsg.1 gx_default_DevRGB_get_color_comp_index@Base 8.61.dfsg.1 gx_default_DevRGB_get_color_mapping_procs@Base 8.61.dfsg.1 gx_default_b_w_map_color_rgb@Base 8.61.dfsg.1 gx_default_b_w_map_rgb_color@Base 8.61.dfsg.1 gx_default_begin_image@Base 8.61.dfsg.1 gx_default_begin_page@Base 8.61.dfsg.1 gx_default_begin_transparency_group@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_default_begin_transparency_mask@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_default_begin_typed_image@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gx_default_buffer_page@Base 8.61.dfsg.1 gx_default_clip_box@Base 8.61.dfsg.1 gx_default_close_device@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gx_default_close_render_device@Base 8.61.dfsg.1 gx_default_composite_adjust_ctm@Base 8.62.dfsg.1 gx_default_composite_clist_read_update@Base 8.61.dfsg.1 gx_default_composite_clist_write_update@Base 8.61.dfsg.1 gx_default_composite_get_cropping@Base 8.63.dfsg.1 gx_default_composite_is_closing@Base 8.62.dfsg.1 gx_default_composite_is_friendly@Base 8.62.dfsg.1 gx_default_copy_alpha@Base 8.61.dfsg.1 gx_default_copy_alpha_hl_color@Base 9.06~dfsg~20120802-0ubuntu1 gx_default_copy_color@Base 8.61.dfsg.1 gx_default_copy_mono@Base 8.61.dfsg.1 gx_default_copy_planes@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_default_copy_rop@Base 8.61.dfsg.1 gx_default_create_buf_device@Base 8.61.dfsg.1 gx_default_create_compositor@Base 8.61.dfsg.1 gx_default_decode_color@Base 8.61.dfsg.1 gx_default_destroy_buf_device@Base 8.61.dfsg.1 gx_default_dev_spec_op@Base 9.04~dfsg gx_default_discard_transparency_layer@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_default_draw_line@Base 8.61.dfsg.1 gx_default_draw_thin_line@Base 8.61.dfsg.1 gx_default_encode_color@Base 8.61.dfsg.1 gx_default_end_image@Base 8.61.dfsg.1 gx_default_end_page@Base 8.61.dfsg.1 gx_default_end_transparency_group@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_default_end_transparency_mask@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_default_fill_linear_color_scanline@Base 8.61.dfsg.1 gx_default_fill_linear_color_trapezoid@Base 8.61.dfsg.1 gx_default_fill_linear_color_triangle@Base 8.61.dfsg.1 gx_default_fill_mask@Base 8.61.dfsg.1 gx_default_fill_parallelogram@Base 8.61.dfsg.1 gx_default_fill_path@Base 8.61.dfsg.1 gx_default_fill_rectangle_hl_color@Base 8.61.dfsg.1 gx_default_fill_trapezoid@Base 8.61.dfsg.1 gx_default_fill_triangle@Base 8.61.dfsg.1 gx_default_fillpage@Base 8.64~dfsg gx_default_finish_copydevice@Base 8.61.dfsg.1 gx_default_get_alpha_bits@Base 8.61.dfsg.1 gx_default_get_band@Base 8.61.dfsg.1 gx_default_get_bits@Base 8.61.dfsg.1 gx_default_get_bits_rectangle@Base 8.61.dfsg.1 gx_default_get_clipping_box@Base 8.61.dfsg.1 gx_default_get_cmap_procs@Base 8.61.dfsg.1 gx_default_get_hardware_params@Base 8.61.dfsg.1 gx_default_get_initial_matrix@Base 8.61.dfsg.1 gx_default_get_page_device@Base 8.61.dfsg.1 gx_default_get_param@Base 9.15~dfsg-0ubuntu1 gx_default_get_params@Base 8.61.dfsg.1 gx_default_get_profile@Base 9.04~dfsg gx_default_get_space_params@Base 8.61.dfsg.1 gx_default_get_xfont_device@Base 8.61.dfsg.1 gx_default_get_xfont_procs@Base 8.61.dfsg.1 gx_default_gray_encode@Base 8.61.dfsg.1 gx_default_gray_fast_encode@Base 8.61.dfsg.1 gx_default_gray_map_color_rgb@Base 8.61.dfsg.1 gx_default_gray_map_rgb_color@Base 8.61.dfsg.1 gx_default_image_data@Base 8.61.dfsg.1 gx_default_include_color_space@Base 8.61.dfsg.1 gx_default_install@Base 8.61.dfsg.1 gx_default_map_cmyk_color@Base 8.61.dfsg.1 gx_default_map_color_rgb_alpha@Base 8.61.dfsg.1 gx_default_map_rgb_alpha_color@Base 8.61.dfsg.1 gx_default_no_copy_alpha_hl_color@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_default_open_device@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gx_default_open_render_device@Base 8.61.dfsg.1 gx_default_output_page@Base 8.61.dfsg.1 gx_default_pattern_manage@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_default_pop_transparency_state@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_default_print_page_copies@Base 8.61.dfsg.1 gx_default_process_page@Base 9.14~dfsg-0ubuntu1 gx_default_push_transparency_state@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_default_put_image@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_default_put_params@Base 8.61.dfsg.1 gx_default_remap_color@Base 8.61.dfsg.1 gx_default_ret_devn_params@Base 8.61.dfsg.1 gx_default_rgb_map_color_rgb@Base 8.61.dfsg.1 gx_default_rgb_map_rgb_color@Base 8.61.dfsg.1 gx_default_set_graphics_type_tag@Base 9.04~dfsg gx_default_setup_buf_device@Base 8.61.dfsg.1 gx_default_size_buf_device@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gx_default_start_render_thread@Base 8.61.dfsg.1 gx_default_strip_copy_rop2@Base 9.05~ gx_default_strip_copy_rop@Base 8.61.dfsg.1 gx_default_strip_tile_rect_devn@Base 9.06~dfsg~20120802-0ubuntu1 gx_default_strip_tile_rectangle@Base 8.61.dfsg.1 gx_default_stroke_path@Base 8.61.dfsg.1 gx_default_sync_output@Base 8.61.dfsg.1 gx_default_text_begin@Base 8.61.dfsg.1 gx_default_text_release@Base 8.61.dfsg.1 gx_default_text_restore_state@Base 8.61.dfsg.1 gx_default_tile_rectangle@Base 8.61.dfsg.1 gx_default_transform_pixel_region@Base 9.26~dfsg+0-0ubuntu0.14.04.1 gx_default_update_spot_equivalent_colors@Base 8.61.dfsg.1 gx_default_w_b_map_color_rgb@Base 8.61.dfsg.1 gx_default_w_b_map_rgb_color@Base 8.61.dfsg.1 gx_destroy_clip_device_on_stack@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_device_adjust_resolution@Base 8.61.dfsg.1 gx_device_bbox_bbox@Base 8.61.dfsg.1 gx_device_bbox_fwd_open_close@Base 8.61.dfsg.1 gx_device_bbox_init@Base 8.61.dfsg.1 gx_device_bbox_release@Base 8.61.dfsg.1 gx_device_bbox_set_white_opaque@Base 8.61.dfsg.1 gx_device_black@Base 8.61.dfsg.1 gx_device_close_output_file@Base 8.61.dfsg.1 gx_device_color_equal@Base 8.61.dfsg.1 gx_device_copy_color_params@Base 8.61.dfsg.1 gx_device_copy_color_procs@Base 8.61.dfsg.1 gx_device_copy_params@Base 8.61.dfsg.1 gx_device_decache_colors@Base 8.61.dfsg.1 gx_device_delete_output_file@Base 9.14~dfsg-0ubuntu1 gx_device_enum_ptr@Base 8.61.dfsg.1 gx_device_fill_in_procs@Base 8.61.dfsg.1 gx_device_finalize@Base 8.61.dfsg.1 gx_device_forward_color_procs@Base 8.61.dfsg.1 gx_device_forward_fill_in_procs@Base 8.61.dfsg.1 gx_device_free_local@Base 8.61.dfsg.1 gx_device_halftone_list@Base 8.61.dfsg.1 gx_device_halftone_release@Base 8.61.dfsg.1 gx_device_init@Base 8.61.dfsg.1 gx_device_init_on_stack@Base 9.07~dfsg-0ubuntu1 gx_device_is_pattern_accum@Base 9.14~dfsg-0ubuntu1 gx_device_is_pattern_clist@Base 9.14~dfsg-0ubuntu1 gx_device_open_output_file@Base 8.61.dfsg.1 gx_device_raster@Base 8.61.dfsg.1 gx_device_raster_chunky@Base 9.14~dfsg-0ubuntu1 gx_device_raster_plane@Base 9.14~dfsg-0ubuntu1 gx_device_reloc_ptr@Base 8.61.dfsg.1 gx_device_request_leadingedge@Base 8.61.dfsg.1 gx_device_retain@Base 8.61.dfsg.1 gx_device_set_margins@Base 8.61.dfsg.1 gx_device_set_media_size@Base 8.61.dfsg.1 gx_device_set_procs@Base 8.61.dfsg.1 gx_device_set_resolution@Base 8.61.dfsg.1 gx_device_set_target@Base 8.61.dfsg.1 gx_device_set_width_height@Base 8.61.dfsg.1 gx_device_subclass@Base 9.18~dfsg~0-0ubuntu1 gx_device_text_begin@Base 8.61.dfsg.1 gx_device_unsubclass@Base 9.18~dfsg~0-0ubuntu1 gx_device_uses_std_cmap_procs@Base 9.01~ gx_device_white@Base 8.61.dfsg.1 gx_devn_prn_decode_color@Base 9.14~dfsg-0ubuntu1 gx_devn_prn_device_finalize@Base 9.14~dfsg-0ubuntu1 gx_devn_prn_encode_color@Base 9.14~dfsg-0ubuntu1 gx_devn_prn_get_color_comp_index@Base 9.14~dfsg-0ubuntu1 gx_devn_prn_get_color_mapping_procs@Base 9.14~dfsg-0ubuntu1 gx_devn_prn_get_params@Base 9.14~dfsg-0ubuntu1 gx_devn_prn_put_params@Base 9.14~dfsg-0ubuntu1 gx_devn_prn_ret_devn_params@Base 9.14~dfsg-0ubuntu1 gx_devn_prn_update_spot_equivalent_colors@Base 9.14~dfsg-0ubuntu1 gx_devn_reduce_colored_halftone@Base 8.61.dfsg.1 gx_downscaler_adjust_bandheight@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gx_downscaler_copy_scan_lines@Base 9.04~dfsg gx_downscaler_fin@Base 9.04~dfsg gx_downscaler_get_bits_rectangle@Base 9.06~dfsg~20120802-0ubuntu1 gx_downscaler_getbits@Base 9.04~dfsg gx_downscaler_init@Base 9.04~dfsg gx_downscaler_init_cm@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_downscaler_init_cm_ets@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_downscaler_init_ets@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_downscaler_init_planar@Base 9.06~dfsg~20120802-0ubuntu1 gx_downscaler_init_planar_trapped@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_downscaler_init_planar_trapped_cm@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_downscaler_init_trapped@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_downscaler_init_trapped_cm@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_downscaler_init_trapped_cm_ets@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_downscaler_init_trapped_ets@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_downscaler_process_page@Base 9.14~dfsg-0ubuntu1 gx_downscaler_read_params@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_downscaler_scale@Base 9.06~dfsg~20120802-0ubuntu1 gx_downscaler_scale_rounded@Base 9.14~dfsg-0ubuntu1 gx_downscaler_write_params@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_edgebuffer_fin@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_edgebuffer_init@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_effective_clip_path@Base 8.61.dfsg.1 gx_end_transparency_group@Base 8.61.dfsg.1 gx_end_transparency_mask@Base 8.61.dfsg.1 gx_erase_colored_pattern@Base 9.00~dfsg gx_error_decode_color@Base 8.61.dfsg.1 gx_error_encode_color@Base 8.61.dfsg.1 gx_error_get_color_comp_index@Base 8.61.dfsg.1 gx_error_get_color_mapping_procs@Base 8.61.dfsg.1 gx_extendeg_glyph_name_separator@Base 8.61.dfsg.1 gx_fill_edgebuffer@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_fill_edgebuffer_app@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_fill_edgebuffer_tr@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_fill_edgebuffer_tr_app@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_fill_path@Base 8.61.dfsg.1 gx_fill_trapezoid_cf_fd@Base 8.61.dfsg.1 gx_fill_trapezoid_cf_nd@Base 8.61.dfsg.1 gx_fill_triangle_small@Base 8.61.dfsg.1 gx_filter_edgebuffer@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_filter_edgebuffer_app@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_filter_edgebuffer_tr@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_filter_edgebuffer_tr_app@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_finish_output_page@Base 8.61.dfsg.1 gx_flattened_iterator__init@Base 8.61.dfsg.1 gx_flattened_iterator__init_line@Base 8.61.dfsg.1 gx_flattened_iterator__next@Base 8.61.dfsg.1 gx_flattened_iterator__prev@Base 8.61.dfsg.1 gx_flattened_iterator__switch_to_backscan@Base 8.61.dfsg.1 gx_forward_begin_image@Base 8.61.dfsg.1 gx_forward_begin_typed_image@Base 8.61.dfsg.1 gx_forward_close_device@Base 8.61.dfsg.1 gx_forward_copy_alpha@Base 8.61.dfsg.1 gx_forward_copy_alpha_hl_color@Base 9.06~dfsg~20120802-0ubuntu1 gx_forward_copy_color@Base 8.61.dfsg.1 gx_forward_copy_mono@Base 8.61.dfsg.1 gx_forward_copy_planes@Base 9.06~dfsg~20120802-0ubuntu1 gx_forward_copy_rop@Base 8.61.dfsg.1 gx_forward_create_compositor@Base 9.04~dfsg gx_forward_decode_color@Base 8.61.dfsg.1 gx_forward_dev_spec_op@Base 9.04~dfsg gx_forward_draw_thin_line@Base 8.61.dfsg.1 gx_forward_encode_color@Base 8.61.dfsg.1 gx_forward_fill_linear_color_scanline@Base 8.61.dfsg.1 gx_forward_fill_linear_color_trapezoid@Base 8.61.dfsg.1 gx_forward_fill_linear_color_triangle@Base 8.61.dfsg.1 gx_forward_fill_mask@Base 8.61.dfsg.1 gx_forward_fill_parallelogram@Base 8.61.dfsg.1 gx_forward_fill_path@Base 8.61.dfsg.1 gx_forward_fill_rectangle@Base 8.61.dfsg.1 gx_forward_fill_rectangle_hl_color@Base 8.61.dfsg.1 gx_forward_fill_trapezoid@Base 8.61.dfsg.1 gx_forward_fill_triangle@Base 8.61.dfsg.1 gx_forward_fillpage@Base 8.64~dfsg gx_forward_get_band@Base 8.61.dfsg.1 gx_forward_get_bits@Base 8.61.dfsg.1 gx_forward_get_bits_rectangle@Base 8.61.dfsg.1 gx_forward_get_clipping_box@Base 8.61.dfsg.1 gx_forward_get_color_comp_index@Base 8.61.dfsg.1 gx_forward_get_color_mapping_procs@Base 8.61.dfsg.1 gx_forward_get_hardware_params@Base 8.61.dfsg.1 gx_forward_get_initial_matrix@Base 8.61.dfsg.1 gx_forward_get_page_device@Base 8.61.dfsg.1 gx_forward_get_params@Base 8.61.dfsg.1 gx_forward_get_profile@Base 9.04~dfsg gx_forward_get_xfont_device@Base 8.61.dfsg.1 gx_forward_get_xfont_procs@Base 8.61.dfsg.1 gx_forward_include_color_space@Base 8.61.dfsg.1 gx_forward_map_cmyk_color@Base 8.61.dfsg.1 gx_forward_map_color_rgb@Base 8.61.dfsg.1 gx_forward_map_color_rgb_alpha@Base 8.61.dfsg.1 gx_forward_map_rgb_alpha_color@Base 8.61.dfsg.1 gx_forward_map_rgb_color@Base 8.61.dfsg.1 gx_forward_output_page@Base 8.61.dfsg.1 #MISSING: 9.04~dfsg-1# gx_forward_pattern_manage@Base 8.61.dfsg.1 gx_forward_put_image@Base 9.26~dfsg+0-0ubuntu0.14.04.1 gx_forward_put_params@Base 8.61.dfsg.1 gx_forward_ret_devn_params@Base 8.61.dfsg.1 gx_forward_set_graphics_type_tag@Base 9.04~dfsg gx_forward_strip_copy_rop2@Base 9.05~ gx_forward_strip_copy_rop@Base 8.61.dfsg.1 gx_forward_strip_tile_rect_devn@Base 9.06~dfsg~20120802-0ubuntu1 gx_forward_strip_tile_rectangle@Base 8.61.dfsg.1 gx_forward_stroke_path@Base 8.61.dfsg.1 gx_forward_sync_output@Base 8.61.dfsg.1 gx_forward_text_begin@Base 8.61.dfsg.1 gx_forward_tile_rectangle@Base 8.61.dfsg.1 gx_forward_transform_pixel_region@Base 9.26~dfsg+0-0ubuntu0.14.04.1 gx_forward_update_spot_equivalent_colors@Base 8.61.dfsg.1 gx_free_cached_char@Base 8.61.dfsg.1 gx_get_bits_copy@Base 8.61.dfsg.1 gx_get_bits_return_pointer@Base 8.61.dfsg.1 gx_get_clip_path_id@Base 8.61.dfsg.1 gx_get_cmap_procs@Base 8.61.dfsg.1 gx_get_cmapper@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_get_dc_type_from_index@Base 8.61.dfsg.1 gx_get_dc_type_index@Base 8.61.dfsg.1 gx_get_largest_clipping_box@Base 8.61.dfsg.1 gx_gstate_dev_ht_install@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_gstate_set_effective_xfer@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_gstate_setscreenphase@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_gstate_stroke_add@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_has_transfer@Base 9.00~dfsg gx_hl_fill_linear_color_scanline@Base 9.06~dfsg~20120802-0ubuntu1 gx_hld_get_color_component@Base 8.61.dfsg.1 gx_hld_get_color_space_and_ccolor@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gx_hld_get_gstate_ptr@Base 8.61.dfsg.1 gx_hld_get_number_color_components@Base 8.61.dfsg.1 gx_hld_is_hl_color_available@Base 8.61.dfsg.1 gx_hld_save_color@Base 8.61.dfsg.1 gx_hld_saved_color_equal@Base 8.61.dfsg.1 gx_hld_saved_color_init@Base 8.61.dfsg.1 gx_hld_saved_color_same_cspace@Base 8.61.dfsg.1 gx_hld_stringwidth_begin@Base 8.61.dfsg.1 gx_ht_alloc_cache@Base 8.61.dfsg.1 gx_ht_alloc_client_order@Base 8.61.dfsg.1 gx_ht_alloc_ht_order@Base 8.61.dfsg.1 gx_ht_alloc_order@Base 8.61.dfsg.1 gx_ht_alloc_threshold_order@Base 8.61.dfsg.1 gx_ht_cache_default_bits_size@Base 8.62.dfsg.1 gx_ht_cache_default_tiles@Base 8.61.dfsg.1 gx_ht_complete_threshold_order@Base 8.61.dfsg.1 gx_ht_construct_bit@Base 8.61.dfsg.1 gx_ht_construct_bits@Base 8.61.dfsg.1 gx_ht_construct_spot_order@Base 8.61.dfsg.1 gx_ht_construct_threshold@Base 9.02~dfsg gx_ht_construct_threshold_order@Base 8.61.dfsg.1 gx_ht_free_cache@Base 8.61.dfsg.1 gx_ht_init_cache@Base 8.61.dfsg.1 gx_ht_install@Base 8.61.dfsg.1 gx_ht_order_release@Base 8.61.dfsg.1 gx_ht_process_screen_memory@Base 8.61.dfsg.1 gx_ht_read_and_install@Base 8.61.dfsg.1 gx_ht_threshold_landscape@Base 9.02~dfsg gx_ht_threshold_landscape_sub@Base 9.05~ gx_ht_threshold_row_bit@Base 9.02~dfsg gx_ht_threshold_row_bit_sub@Base 9.05~ gx_ht_write@Base 8.61.dfsg.1 gx_ignore_end_image@Base 8.61.dfsg.1 gx_image1_end_image@Base 8.61.dfsg.1 gx_image1_flush@Base 8.61.dfsg.1 gx_image1_plane_data@Base 8.61.dfsg.1 gx_image_cached_char@Base 8.61.dfsg.1 gx_image_class_table@Base 8.61.dfsg.1 gx_image_class_table_count@Base 8.61.dfsg.1 gx_image_compute_mat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_image_data@Base 8.61.dfsg.1 gx_image_default_release@Base 8.61.dfsg.1 gx_image_end@Base 8.61.dfsg.1 gx_image_enum_alloc@Base 8.61.dfsg.1 gx_image_enum_begin@Base 8.61.dfsg.1 gx_image_enum_common_init@Base 8.61.dfsg.1 gx_image_fill_masked@Base 8.61.dfsg.1 gx_image_fill_masked_end@Base 8.61.dfsg.1 gx_image_fill_masked_start@Base 8.61.dfsg.1 gx_image_flush@Base 8.61.dfsg.1 gx_image_free_enum@Base 8.63.dfsg.1 gx_image_matrix_is_default@Base 8.61.dfsg.1 gx_image_matrix_set_default@Base 8.61.dfsg.1 gx_image_no_sget@Base 8.61.dfsg.1 gx_image_no_sput@Base 8.61.dfsg.1 gx_image_plane_data@Base 8.61.dfsg.1 gx_image_plane_data_rows@Base 8.61.dfsg.1 gx_image_planes_wanted@Base 8.61.dfsg.1 gx_image_scale_mask_colors@Base 8.61.dfsg.1 gx_image_type_table@Base 8.61.dfsg.1 gx_image_type_table_count@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gx_imager_dev_ht_install@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gx_imager_set_effective_xfer@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gx_imager_setscreenphase@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gx_imager_stroke_add@Base 8.61.dfsg.1 gx_init_CIE@Base 8.61.dfsg.1 gx_init_paint_1@Base 8.61.dfsg.1 gx_init_paint_3@Base 8.61.dfsg.1 gx_init_paint_4@Base 8.61.dfsg.1 gx_init_patch_fill_state_for_clist@Base 8.61.dfsg.1 gx_init_table@Base 8.61.dfsg.1 gx_install_CIE@Base 8.61.dfsg.1 gx_install_CIEA@Base 8.61.dfsg.1 gx_install_CIEABC@Base 8.61.dfsg.1 gx_install_CIEDEF@Base 8.61.dfsg.1 gx_install_CIEDEFG@Base 8.61.dfsg.1 gx_install_cie_abc@Base 8.61.dfsg.1 gx_intersect_small_bars@Base 8.61.dfsg.1 gx_io_device_table@Base 8.61.dfsg.1 gx_io_device_table_count@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# gx_load_icc_profile@Base 8.61.dfsg.1 gx_lookup_cached_char@Base 8.61.dfsg.1 gx_lookup_fm_pair@Base 8.61.dfsg.1 #MISSING: 9.04~dfsg-1# gx_lookup_xfont@Base 8.61.dfsg.1 #MISSING: 9.04~dfsg-1# gx_lookup_xfont_char@Base 8.61.dfsg.1 gx_make_clip_device_in_heap@Base 8.61.dfsg.1 gx_make_clip_device_on_stack@Base 8.61.dfsg.1 gx_make_clip_device_on_stack_if_needed@Base 9.06~dfsg~20120802-0ubuntu1 gx_make_rop_texture_device@Base 8.61.dfsg.1 gx_mask_clip_initialize@Base 8.61.dfsg.1 gx_matrix_to_fixed_coeff@Base 8.61.dfsg.1 gx_monitor_alloc@Base 8.61.dfsg.1 gx_monitor_free@Base 8.61.dfsg.1 gx_monitor_label@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_no_adjust_color_count@Base 8.61.dfsg.1 gx_no_concrete_space@Base 8.61.dfsg.1 gx_no_concretize_color@Base 8.61.dfsg.1 gx_no_copy_alpha@Base 8.61.dfsg.1 gx_no_copy_rop@Base 8.61.dfsg.1 gx_no_create_compositor@Base 8.61.dfsg.1 gx_no_get_bits@Base 8.61.dfsg.1 gx_no_get_bits_rectangle@Base 8.61.dfsg.1 gx_no_install_cspace@Base 8.61.dfsg.1 gx_no_plane_data@Base 8.61.dfsg.1 gx_no_strip_copy_rop@Base 8.61.dfsg.1 gx_null_create_compositor@Base 8.61.dfsg.1 gx_num_components_1@Base 8.61.dfsg.1 gx_num_components_3@Base 8.61.dfsg.1 gx_num_components_4@Base 8.61.dfsg.1 gx_open_cache_device@Base 8.61.dfsg.1 gx_outputfile_is_separate_pages@Base 9.05~ gx_overprint_generic_fill_rectangle@Base 8.61.dfsg.1 gx_overprint_sep_fill_rectangle_1@Base 8.61.dfsg.1 gx_overprint_sep_fill_rectangle_2@Base 8.61.dfsg.1 gx_page_device_get_page_device@Base 8.61.dfsg.1 gx_page_info_color_usage@Base 9.06~dfsg~20120802-0ubuntu1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# gx_page_info_colors_used@Base 8.61.dfsg.1 gx_parse_output_file_name@Base 8.61.dfsg.1 gx_pat_cache_default_bits@Base 8.61.dfsg.1 gx_pat_cache_default_tiles@Base 8.61.dfsg.1 gx_path__check_curves@Base 8.61.dfsg.1 gx_path_add_char_path@Base 8.61.dfsg.1 gx_path_add_curve_notes@Base 8.61.dfsg.1 gx_path_add_dash_expansion@Base 8.61.dfsg.1 gx_path_add_dash_notes@Base 8.61.dfsg.1 gx_path_add_gap_notes@Base 9.06~dfsg~20120802-0ubuntu1 gx_path_add_line_notes@Base 8.61.dfsg.1 gx_path_add_lines_notes@Base 8.61.dfsg.1 gx_path_add_partial_arc_notes@Base 8.61.dfsg.1 gx_path_add_path@Base 8.61.dfsg.1 gx_path_add_point@Base 8.61.dfsg.1 gx_path_add_rectangle@Base 8.61.dfsg.1 gx_path_add_relative_point@Base 8.61.dfsg.1 gx_path_alloc_shared@Base 8.61.dfsg.1 gx_path_append_reversed@Base 8.71~dfsg gx_path_assign_free@Base 8.61.dfsg.1 gx_path_assign_preserve@Base 8.61.dfsg.1 gx_path_bbox@Base 8.61.dfsg.1 gx_path_bbox_set@Base 8.61.dfsg.1 gx_path_close_subpath_notes@Base 8.61.dfsg.1 gx_path_copy_reducing@Base 8.61.dfsg.1 gx_path_copy_reversed@Base 8.61.dfsg.1 gx_path_current_point@Base 8.61.dfsg.1 gx_path_elide_1d@Base 9.26~dfsg+0-0ubuntu0.14.04.1 gx_path_enum_backup@Base 8.61.dfsg.1 gx_path_enum_init@Base 8.61.dfsg.1 gx_path_enum_next@Base 8.61.dfsg.1 gx_path_enum_notes@Base 8.61.dfsg.1 gx_path_free@Base 8.61.dfsg.1 gx_path_get_state_flags@Base 8.61.dfsg.1 gx_path_has_curves@Base 8.61.dfsg.1 gx_path_has_long_segments@Base 8.61.dfsg.1 gx_path_init_bbox_accumulator@Base 8.61.dfsg.1 gx_path_init_contained_shared@Base 8.61.dfsg.1 gx_path_init_local_shared@Base 8.61.dfsg.1 gx_path_is_drawing@Base 8.61.dfsg.1 gx_path_is_null@Base 8.61.dfsg.1 gx_path_is_rectangular@Base 8.61.dfsg.1 gx_path_is_void@Base 8.61.dfsg.1 gx_path_merge_contacting_contours@Base 8.61.dfsg.1 gx_path_new@Base 8.61.dfsg.1 gx_path_pop_close_notes@Base 8.61.dfsg.1 gx_path_scale_exp2_shared@Base 8.61.dfsg.1 gx_path_set_state_flags@Base 8.61.dfsg.1 gx_path_subpath_start_point@Base 8.61.dfsg.1 gx_path_translate@Base 8.61.dfsg.1 gx_path_unshare@Base 8.61.dfsg.1 gx_pattern1_clist_has_trans@Base 9.04~dfsg gx_pattern1_get_transptr@Base 8.70~ gx_pattern_accum_alloc@Base 8.61.dfsg.1 gx_pattern_alloc_cache@Base 8.61.dfsg.1 gx_pattern_cache_add_dummy_entry@Base 8.61.dfsg.1 gx_pattern_cache_add_entry@Base 8.61.dfsg.1 gx_pattern_cache_ensure_space@Base 9.04~dfsg gx_pattern_cache_free@Base 8.63.dfsg.1 gx_pattern_cache_get_entry@Base 8.63.dfsg.1 gx_pattern_cache_lookup@Base 8.61.dfsg.1 gx_pattern_cache_update_used@Base 9.04~dfsg gx_pattern_cache_winnow@Base 8.61.dfsg.1 gx_pattern_load@Base 8.61.dfsg.1 gx_pattern_procs_istrans@Base 9.00~dfsg gx_pattern_tile_is_clist@Base 8.61.dfsg.1 gx_pixel_image_release@Base 8.61.dfsg.1 gx_pixel_image_sget@Base 8.61.dfsg.1 gx_pixel_image_sput@Base 8.61.dfsg.1 gx_point_scale_exp2@Base 8.61.dfsg.1 gx_polarity_additive@Base 9.14~dfsg-0ubuntu1 gx_polarity_subtractive@Base 9.14~dfsg-0ubuntu1 gx_polarity_unknown@Base 9.14~dfsg-0ubuntu1 gx_pop_transparency_state@Base 8.71~dfsg gx_print_page_single_copy@Base 8.61.dfsg.1 gx_provide_fm_pair_attributes@Base 8.61.dfsg.1 gx_psconcretize_CIEA@Base 9.00~dfsg gx_psconcretize_CIEABC@Base 9.00~dfsg gx_psconcretize_CIEDEF@Base 9.00~dfsg gx_psconcretize_CIEDEFG@Base 9.00~dfsg gx_purge_selected_cached_chars@Base 8.61.dfsg.1 gx_push_transparency_state@Base 8.71~dfsg gx_put_blended_image_cmykspot@Base 8.64~dfsg gx_put_blended_image_custom@Base 8.64~dfsg gx_rect_scale_exp2@Base 8.61.dfsg.1 gx_remap_CIEA@Base 9.00~dfsg gx_remap_CIEABC@Base 8.61.dfsg.1 gx_remap_CIEDEF@Base 9.00~dfsg gx_remap_CIEDEFG@Base 9.00~dfsg gx_remap_DeviceCMYK@Base 8.61.dfsg.1 gx_remap_DeviceGray@Base 8.61.dfsg.1 gx_remap_DeviceRGB@Base 8.61.dfsg.1 gx_remap_ICC_imagelab@Base 9.06~dfsg~20120802-0ubuntu1 gx_remap_color@Base 8.61.dfsg.1 gx_remap_concrete_DCMYK@Base 8.61.dfsg.1 gx_remap_concrete_DGray@Base 8.61.dfsg.1 gx_remap_concrete_DRGB@Base 8.61.dfsg.1 gx_remap_named_color@Base 9.16~dfsg~0-0ubuntu1 gx_render_device_DeviceN@Base 8.61.dfsg.1 gx_render_plane_init@Base 8.61.dfsg.1 gx_restrict01_paint_1@Base 8.61.dfsg.1 gx_restrict01_paint_3@Base 8.61.dfsg.1 gx_restrict01_paint_4@Base 8.61.dfsg.1 gx_restrict_CIEA@Base 8.61.dfsg.1 gx_restrict_CIEABC@Base 8.61.dfsg.1 gx_restrict_CIEDEF@Base 8.61.dfsg.1 gx_restrict_CIEDEFG@Base 8.61.dfsg.1 gx_same_concrete_space@Base 8.61.dfsg.1 gx_san__obtain@Base 8.61.dfsg.1 gx_san__release@Base 8.61.dfsg.1 gx_san_begin@Base 8.61.dfsg.1 gx_san_end@Base 8.61.dfsg.1 gx_san_generate_stems@Base 8.61.dfsg.1 gx_san_trap_store@Base 8.61.dfsg.1 gx_saved_pages_list_add@Base 9.14~dfsg-0ubuntu1 gx_saved_pages_list_free@Base 9.14~dfsg-0ubuntu1 gx_saved_pages_list_new@Base 9.14~dfsg-0ubuntu1 gx_saved_pages_list_print@Base 9.14~dfsg-0ubuntu1 gx_saved_pages_param_process@Base 9.14~dfsg-0ubuntu1 gx_scale_char_matrix@Base 8.61.dfsg.1 gx_scan_convert@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_scan_convert_app@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_scan_convert_tr@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_scan_convert_tr_app@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_semaphore_alloc@Base 8.61.dfsg.1 gx_semaphore_free@Base 8.61.dfsg.1 gx_semaphore_label@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gx_serialize_cie_common_elements@Base 8.61.dfsg.1 gx_serialize_cspace_type@Base 8.61.dfsg.1 gx_serialize_device_n_map@Base 8.61.dfsg.1 gx_set_cmap_procs@Base 8.61.dfsg.1 gx_set_common_cie_defaults@Base 8.61.dfsg.1 gx_set_dash@Base 8.61.dfsg.1 gx_set_device_color_1@Base 8.61.dfsg.1 gx_set_device_only@Base 8.61.dfsg.1 gx_set_dot_length@Base 8.61.dfsg.1 gx_set_effective_transfer@Base 8.61.dfsg.1 gx_set_identity_transfer@Base 8.61.dfsg.1 gx_set_miter_limit@Base 8.61.dfsg.1 gx_set_overprint_cmyk@Base 9.00~dfsg #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gx_set_overprint_rgb@Base 9.06~dfsg~20120802-0ubuntu1 gx_set_pattern_procs_standard@Base 9.00~dfsg gx_set_pattern_procs_trans@Base 9.00~dfsg gx_set_rop_no_source@Base 8.61.dfsg.1 gx_setcurrentpoint_from_path@Base 8.61.dfsg.1 gx_shade_background@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# gx_simulated_set_overprint@Base 9.07~dfsg-0ubuntu1 gx_sort_ht_order@Base 8.61.dfsg.1 gx_spot_colors_set_overprint@Base 8.61.dfsg.1 gx_strip_copy_rop_unaligned@Base 8.71~dfsg gx_stroke_add@Base 8.61.dfsg.1 gx_stroke_fill@Base 8.61.dfsg.1 gx_stroke_path_expansion@Base 8.61.dfsg.1 gx_stroke_path_only@Base 8.61.dfsg.1 gx_subclass_create_compositor@Base 9.18~dfsg~0-0ubuntu1 gx_subdivide_curve@Base 8.61.dfsg.1 gx_subpath_is_rectangular@Base 8.61.dfsg.1 gx_touch_fm_pair@Base 8.61.dfsg.1 gx_trans_pattern_fill_rect@Base 8.70~ gx_transfer_is_monotonic@Base 9.18~dfsg~0-0ubuntu1 gx_translate_to_fixed@Base 8.61.dfsg.1 gx_ttfReader__create@Base 8.61.dfsg.1 gx_ttfReader__destroy@Base 8.61.dfsg.1 gx_ttfReader__set_font@Base 8.61.dfsg.1 gx_ttf_outline@Base 8.61.dfsg.1 gx_unit_frac@Base 8.62.dfsg.1 gx_unshare_cie_caches@Base 8.61.dfsg.1 gx_update_from_subclass@Base 9.18~dfsg~0-0ubuntu1 gx_upright_get_initial_matrix@Base 8.61.dfsg.1 gxclip2_dummy@Base 8.61.dfsg.1 gxht_dda_length@Base 9.25~dfsg+1-0ubuntu0.14.04.1 gxht_thresh_image_init@Base 9.02~dfsg #MISSING: 9.05~dfsg-1# gxht_thresh_plane@Base 9.04~dfsg gxht_thresh_planes@Base 9.05~ hc_put_code_proc@Base 8.61.dfsg.1 hc_put_last_bits_proc@Base 8.61.dfsg.1 hdr_id@Base 9.08~rc1~dfsg-0ubuntu1 height@Base 8.61.dfsg.1 ht_order_procs_table@Base 8.61.dfsg.1 htsc_gen_ordered@Base 9.25~dfsg+1-0ubuntu0.14.04.1 htsc_set_default_params@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.00~dfsg-1# iWrite2@Base 8.61.dfsg.1 i_initial_enter_name@Base 8.61.dfsg.1 i_initial_enter_name_copy@Base 9.25~dfsg+1-0ubuntu0.14.04.1 i_initial_remove_name@Base 8.61.dfsg.1 i_io_device_table@Base 9.18~dfsg~0-0ubuntu1 i_io_device_table_count@Base 9.18~dfsg~0-0ubuntu1 i_iodev_finit@Base 9.25~dfsg+1-0ubuntu0.14.04.1 i_iodev_init@Base 9.18~dfsg~0-0ubuntu1 i_plugin_find@Base 8.61.dfsg.1 i_plugin_finit@Base 8.61.dfsg.1 i_plugin_get_list@Base 8.61.dfsg.1 i_plugin_init@Base 8.61.dfsg.1 i_plugin_make_memory@Base 8.61.dfsg.1 i_plugin_table@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# ialloc_add_chunk@Base 8.61.dfsg.1 ialloc_add_clump@Base 9.25~dfsg+1-0ubuntu0.14.04.1 ialloc_alloc_state@Base 8.61.dfsg.1 ialloc_consolidate_free@Base 8.61.dfsg.1 ialloc_finit@Base 9.25~dfsg+1-0ubuntu0.14.04.1 ialloc_free_state@Base 9.08~rc1~dfsg-0ubuntu1 ialloc_gc_prepare@Base 8.61.dfsg.1 ialloc_init@Base 8.61.dfsg.1 ialloc_reset@Base 8.61.dfsg.1 ialloc_reset_free@Base 8.61.dfsg.1 ialloc_reset_requested@Base 8.61.dfsg.1 ialloc_set_limit@Base 8.61.dfsg.1 ialloc_set_space@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# ialloc_validate_chunk@Base 8.61.dfsg.1 ialloc_validate_clump@Base 9.25~dfsg+1-0ubuntu0.14.04.1 ialloc_validate_memory@Base 8.61.dfsg.1 ialloc_validate_object@Base 8.61.dfsg.1 ialloc_validate_spaces@Base 8.61.dfsg.1 icc_link_finalize@Base 9.06~dfsg~20120802-0ubuntu1 icc_linkcache_finalize@Base 9.06~dfsg~20120802-0ubuntu1 #MISSING: 9.00~dfsg-1# icm2str@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# icmBlack@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# icmCIE94@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# icmCIE94sq@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# icmChromAdaptMatrix@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# icmD50@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# icmD65@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# icmLab2XYZ@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# icmLabDE@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# icmLabDEsq@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# icmXYZ2Lab@Base 8.61.dfsg.1 idivmod@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# ifont_dir@Base 8.61.dfsg.1 igc_reloc_const_string@Base 8.61.dfsg.1 igc_reloc_param_string@Base 8.61.dfsg.1 igc_reloc_ref_ptr@Base 8.61.dfsg.1 igc_reloc_ref_ptr_nocheck@Base 8.61.dfsg.1 igc_reloc_refs@Base 8.61.dfsg.1 igc_reloc_string@Base 8.61.dfsg.1 igcd@Base 8.61.dfsg.1 ilog2@Base 8.61.dfsg.1 image1_setup@Base 8.61.dfsg.1 image_flip_planes@Base 8.61.dfsg.1 image_init_clues@Base 8.61.dfsg.1 image_init_color_cache@Base 9.02~dfsg image_init_map@Base 9.08~rc1~dfsg-0ubuntu1 imagen_procs@Base 8.61.dfsg.1 imasktab@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# imdi_tab@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# imdi_tab_free@Base 8.61.dfsg.1 imemory_new_mask@Base 8.61.dfsg.1 imemory_save_level@Base 8.61.dfsg.1 imemory_space@Base 8.61.dfsg.1 imod@Base 8.61.dfsg.1 init_gs_simple_font@Base 8.61.dfsg.1 init_p9color@Base 8.61.dfsg.1 init_patch_fill_state@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# init_section@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# init_write_tab@Base 8.61.dfsg.1 initial_dictionaries@Base 8.61.dfsg.1 initial_dstack@Base 8.61.dfsg.1 install_internal_subclass_devices@Base 9.18~dfsg~0-0ubuntu1 int_gstate_alloc@Base 8.61.dfsg.1 int_param@Base 8.61.dfsg.1 int_pattern_alloc@Base 8.61.dfsg.1 int_rect_difference@Base 8.61.dfsg.1 interp1_op_defs@Base 8.61.dfsg.1 interp2_op_defs@Base 8.61.dfsg.1 interp_reclaim@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# invalid_file_entry@Base 8.61.dfsg.1 io_device_finalize@Base 9.25~dfsg+1-0ubuntu0.14.04.1 iodev_dtype_stdio@Base 8.61.dfsg.1 iodev_no_delete_file@Base 8.61.dfsg.1 iodev_no_enumerate_files@Base 8.61.dfsg.1 iodev_no_fclose@Base 8.61.dfsg.1 iodev_no_file_status@Base 8.61.dfsg.1 iodev_no_finit@Base 9.25~dfsg+1-0ubuntu0.14.04.1 iodev_no_fopen@Base 8.61.dfsg.1 iodev_no_get_params@Base 8.61.dfsg.1 iodev_no_init@Base 8.61.dfsg.1 iodev_no_open_device@Base 8.61.dfsg.1 iodev_no_open_file@Base 8.61.dfsg.1 iodev_no_put_params@Base 8.61.dfsg.1 iodev_no_rename_file@Base 8.61.dfsg.1 iodev_os_fclose@Base 8.61.dfsg.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# iodev_os_fopen@Base 8.61.dfsg.1 iodev_os_gp_fopen@Base 9.08~rc1~dfsg-0ubuntu1 ireclaim_l2_op_defs@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# isLegalUTF8Sequence@Base 8.61.dfsg.1 ivalidate_clean_spaces@Base 9.06~dfsg~20120802-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# j2k_calculate_tp@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# j2k_convert_progression_order@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# j2k_create_compress@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# j2k_create_decompress@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# j2k_dec_mstab@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# j2k_decode@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# j2k_decode_jpt_stream@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# j2k_destroy_compress@Base 9.06~dfsg-0ubuntu1 j2k_destroy_cstr_index@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# j2k_destroy_decompress@Base 9.06~dfsg-0ubuntu1 j2k_dump@Base 9.14~dfsg-0ubuntu1 j2k_dump_image_comp_header@Base 9.14~dfsg-0ubuntu1 j2k_dump_image_header@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# j2k_encode@Base 9.06~dfsg-0ubuntu1 j2k_get_cstr_index@Base 9.14~dfsg-0ubuntu1 j2k_get_cstr_info@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# j2k_mct_read_functions_to_float@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# j2k_mct_read_functions_to_int32@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# j2k_mct_write_functions_from_float@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# j2k_memory_marker_handler_tab@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# j2k_prog_order_list@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# j2k_setup_decoder@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# j2k_setup_encoder@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# jp2_create_compress@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# jp2_create_decompress@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.07~dfsg-0ubuntu1# jp2_decode@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# jp2_destroy_compress@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# jp2_destroy_decompress@Base 9.06~dfsg-0ubuntu1 jp2_dump@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.07~dfsg-0ubuntu1# jp2_encode@Base 9.06~dfsg-0ubuntu1 jp2_get_cstr_index@Base 9.14~dfsg-0ubuntu1 jp2_get_cstr_info@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# jp2_header@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# jp2_img_header@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# jp2_read_jp2h@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# jp2_setup_decoder@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# jp2_setup_encoder@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# jp2_write_jp2h@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.05~dfsg-3# jpeg_free_large@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-3# jpeg_free_small@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-3# jpeg_get_large@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-3# jpeg_get_small@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-3# jpeg_mem_available@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-3# jpeg_mem_init@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-3# jpeg_mem_term@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-3# jpeg_open_backing_store@Base 8.61.dfsg.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# jpt_init_msg_header@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# jpt_read_VBAS_info@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# jpt_read_msg_header@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# jpt_reinit_msg_header@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.05~dfsg-1# ktable@Base 8.61.dfsg.1 lib_file_open@Base 8.61.dfsg.1 lib_fopen@Base 8.61.dfsg.1 lips_media_selection@Base 8.61.dfsg.1 lips_mode3format_encode@Base 8.61.dfsg.1 lips_packbits_encode@Base 8.61.dfsg.1 lips_rle_encode@Base 8.61.dfsg.1 load_transfer_map@Base 8.61.dfsg.1 lookup4x1to32_identity@Base 8.61.dfsg.1 lookup4x1to32_inverted@Base 8.61.dfsg.1 lookup_gs_simple_font_encoding@Base 8.61.dfsg.1 lookup_indexed_map@Base 8.61.dfsg.1 lprintf_file_and_line@Base 8.61.dfsg.1 lprn_get_params@Base 8.61.dfsg.1 lprn_print_image@Base 8.61.dfsg.1 lprn_put_params@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# main@Base 8.61.dfsg.1 make_floats@Base 8.61.dfsg.1 make_invalid_file@Base 8.61.dfsg.1 make_packed_array@Base 8.61.dfsg.1 make_quadrant_arc@Base 8.61.dfsg.1 make_reals@Base 8.61.dfsg.1 make_rss@Base 8.71~dfsg make_sampled_function@Base 8.64~dfsg make_stream_file@Base 8.61.dfsg.1 make_type4_function@Base 8.64~dfsg make_upath@Base 8.61.dfsg.1 map_devn_using_function@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# margin_interior@Base 8.61.dfsg.1 mark_font_descriptor_symbolic@Base 8.71~dfsg matrix2@Base 8.61.dfsg.1 matrix_equal@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mct_decode@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mct_decode_real@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mct_encode@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mct_encode_real@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mct_getnorm@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mct_getnorm_real@Base 9.06~dfsg-0ubuntu1 media@Base 8.61.dfsg.1 mem_close@Base 8.61.dfsg.1 mem_default_strip_copy_rop2@Base 9.05~ mem_default_strip_copy_rop@Base 8.61.dfsg.1 mem_draw_thin_line@Base 8.61.dfsg.1 mem_get_bits_rectangle@Base 8.61.dfsg.1 mem_get_initial_matrix@Base 8.61.dfsg.1 mem_gray8_rgb24_strip_copy_rop@Base 8.61.dfsg.1 mem_gray_strip_copy_rop@Base 8.61.dfsg.1 mem_mapped2_device@Base 8.61.dfsg.1 mem_mapped4_device@Base 8.61.dfsg.1 mem_mapped8_device@Base 8.61.dfsg.1 mem_mapped_map_color_rgb@Base 8.61.dfsg.1 mem_mapped_map_rgb_color@Base 8.61.dfsg.1 mem_mono_b_w_palette@Base 8.61.dfsg.1 mem_mono_device@Base 8.61.dfsg.1 mem_mono_strip_copy_rop@Base 8.61.dfsg.1 mem_mono_strip_copy_rop_dev@Base 9.02~dfsg mem_mono_w_b_palette@Base 8.61.dfsg.1 mem_open@Base 8.61.dfsg.1 mem_transform_pixel_region@Base 9.26~dfsg+0-0ubuntu0.14.04.1 mem_true16_device@Base 8.61.dfsg.1 mem_true24_device@Base 8.61.dfsg.1 mem_true32_device@Base 8.61.dfsg.1 mem_true40_device@Base 8.61.dfsg.1 mem_true48_device@Base 8.61.dfsg.1 mem_true56_device@Base 8.61.dfsg.1 mem_true64_device@Base 8.61.dfsg.1 mem_x_device@Base 9.06~dfsg~20120802-0ubuntu1 memflip8x8@Base 8.61.dfsg.1 mesh_init_fill_state@Base 8.61.dfsg.1 mesh_padding@Base 8.61.dfsg.1 mesh_triangle@Base 8.61.dfsg.1 mgr_8bit_map_color_rgb@Base 8.61.dfsg.1 mgr_8bit_map_rgb_color@Base 8.61.dfsg.1 min_feature_size_dnit@Base 9.01~ min_feature_size_init@Base 9.01~ min_feature_size_process@Base 9.01~ mlprintf_file_and_line@Base 9.07~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mqc_bypass_enc@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mqc_bypass_flush_enc@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mqc_bypass_init_enc@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mqc_create@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mqc_decode@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mqc_destroy@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mqc_encode@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mqc_erterm_enc@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mqc_flush@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mqc_init_dec@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mqc_init_enc@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mqc_numbytes@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mqc_reset_enc@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mqc_resetstates@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mqc_restart_enc@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mqc_restart_init_enc@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mqc_segmark_enc@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# mqc_setstate@Base 9.06~dfsg-0ubuntu1 ms_find_code_from_name@Base 8.61.dfsg.1 ms_find_name_from_code@Base 8.61.dfsg.1 ms_find_size_from_code@Base 8.61.dfsg.1 name_max_string@Base 8.61.dfsg.1 named_color_equivalent_cmyk_colors@Base 9.16~dfsg~0-0ubuntu1 names_enter_string@Base 8.61.dfsg.1 names_free@Base 9.25~dfsg+1-0ubuntu0.14.04.1 names_from_string@Base 8.61.dfsg.1 names_index@Base 8.61.dfsg.1 names_index_ptr@Base 8.61.dfsg.1 names_index_ref@Base 8.61.dfsg.1 names_index_string_sub_table@Base 8.61.dfsg.1 names_index_sub_table@Base 8.61.dfsg.1 names_init@Base 8.61.dfsg.1 names_invalidate_value_cache@Base 8.61.dfsg.1 names_mark_index@Base 8.61.dfsg.1 names_memory@Base 8.61.dfsg.1 names_next_valid_index@Base 8.61.dfsg.1 names_ref@Base 8.61.dfsg.1 names_ref_sub_table@Base 8.61.dfsg.1 names_restore@Base 8.61.dfsg.1 names_string_ref@Base 8.61.dfsg.1 names_trace_finish@Base 8.61.dfsg.1 names_unmark_all@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# new_icc@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# new_icc_a@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# new_icmAllocStd@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# new_icmFileMem@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# new_icmFileStd_fp@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# new_icmFileStd_name@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# new_imdi@Base 8.61.dfsg.1 new_pattern_trans_buff@Base 8.70~ new_resize_input@Base 9.08~rc1~dfsg-0ubuntu1 new_setup_image_filters@Base 9.08~rc1~dfsg-0ubuntu1 new_setup_lossless_filters@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.05~dfsg-1# no_kfuncs@Base 8.61.dfsg.1 num_array_format@Base 8.61.dfsg.1 num_array_get@Base 8.61.dfsg.1 num_array_size@Base 8.61.dfsg.1 #MISSING: 9.18~dfsg~0-0ubuntu1# num_comp_bits@Base 8.61.dfsg.1 num_params@Base 8.61.dfsg.1 obj_cvp@Base 8.61.dfsg.1 obj_cvs@Base 8.61.dfsg.1 obj_eq@Base 8.61.dfsg.1 obj_ident_eq@Base 8.61.dfsg.1 obj_init@Base 8.61.dfsg.1 obj_string_data@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# op_array_table_global@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# op_array_table_local@Base 8.61.dfsg.1 op_def_count@Base 8.61.dfsg.1 op_defs_all@Base 8.61.dfsg.1 op_find_index@Base 8.61.dfsg.1 op_index_ref@Base 8.61.dfsg.1 op_init@Base 8.61.dfsg.1 op_show_continue@Base 8.61.dfsg.1 op_show_continue_dispatch@Base 8.61.dfsg.1 op_show_continue_pop@Base 8.61.dfsg.1 op_show_enum_setup@Base 8.61.dfsg.1 op_show_find@Base 8.61.dfsg.1 op_show_finish_setup@Base 8.61.dfsg.1 op_show_free@Base 8.61.dfsg.1 op_show_setup@Base 8.61.dfsg.1 opdfread_ps@Base 9.01~ opj_aligned_32_malloc@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_aligned_free@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_aligned_malloc@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_alloc_tile_component_data@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_bio_create@Base 9.14~dfsg-0ubuntu1 opj_bio_destroy@Base 9.14~dfsg-0ubuntu1 opj_bio_flush@Base 9.14~dfsg-0ubuntu1 opj_bio_inalign@Base 9.14~dfsg-0ubuntu1 opj_bio_init_dec@Base 9.14~dfsg-0ubuntu1 opj_bio_init_enc@Base 9.14~dfsg-0ubuntu1 opj_bio_numbytes@Base 9.14~dfsg-0ubuntu1 opj_bio_read@Base 9.14~dfsg-0ubuntu1 opj_bio_write@Base 9.14~dfsg-0ubuntu1 opj_calculate_norms@Base 9.14~dfsg-0ubuntu1 opj_calloc@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_check_EPHuse@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# opj_cio_close@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# opj_cio_open@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_clock@Base 9.14~dfsg-0ubuntu1 opj_cond_create@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_cond_destroy@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_cond_signal@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_cond_wait@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_copy_image_header@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_create_compress@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_create_decompress@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_decode@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_decode_tile_data@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# opj_decode_with_info@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_destroy_codec@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# opj_destroy_compress@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_destroy_cstr_index@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_destroy_cstr_info@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# opj_destroy_decompress@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_dump_codec@Base 9.14~dfsg-0ubuntu1 opj_dwt_calc_explicit_stepsizes@Base 9.14~dfsg-0ubuntu1 opj_dwt_decode@Base 9.14~dfsg-0ubuntu1 opj_dwt_decode_real@Base 9.14~dfsg-0ubuntu1 opj_dwt_encode@Base 9.14~dfsg-0ubuntu1 opj_dwt_encode_real@Base 9.14~dfsg-0ubuntu1 opj_dwt_getgain@Base 9.14~dfsg-0ubuntu1 opj_dwt_getgain_real@Base 9.14~dfsg-0ubuntu1 opj_dwt_getnorm@Base 9.14~dfsg-0ubuntu1 opj_dwt_getnorm_real@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_encode@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# opj_encode_with_info@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_end_compress@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_end_decompress@Base 9.14~dfsg-0ubuntu1 opj_event_msg@Base 9.14~dfsg-0ubuntu1 opj_free@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_get_cstr_index@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_get_cstr_info@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_get_decoded_tile@Base 9.14~dfsg-0ubuntu1 opj_image_comp_header_update@Base 9.14~dfsg-0ubuntu1 opj_image_create0@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_image_create@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_image_destroy@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_image_tile_create@Base 9.14~dfsg-0ubuntu1 opj_j2k_convert_progression_order@Base 9.14~dfsg-0ubuntu1 opj_j2k_create_compress@Base 9.14~dfsg-0ubuntu1 opj_j2k_create_decompress@Base 9.14~dfsg-0ubuntu1 opj_j2k_decode@Base 9.14~dfsg-0ubuntu1 opj_j2k_decode_tile@Base 9.14~dfsg-0ubuntu1 opj_j2k_destroy@Base 9.14~dfsg-0ubuntu1 opj_j2k_encode@Base 9.14~dfsg-0ubuntu1 opj_j2k_end_compress@Base 9.14~dfsg-0ubuntu1 opj_j2k_end_decompress@Base 9.14~dfsg-0ubuntu1 opj_j2k_get_tile@Base 9.14~dfsg-0ubuntu1 opj_j2k_read_header@Base 9.14~dfsg-0ubuntu1 opj_j2k_read_tile_header@Base 9.14~dfsg-0ubuntu1 opj_j2k_set_decode_area@Base 9.14~dfsg-0ubuntu1 opj_j2k_set_decoded_components@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_j2k_set_decoded_resolution_factor@Base 9.14~dfsg-0ubuntu1 opj_j2k_set_threads@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_j2k_setup_decoder@Base 9.14~dfsg-0ubuntu1 opj_j2k_setup_encoder@Base 9.14~dfsg-0ubuntu1 opj_j2k_setup_mct_encoding@Base 9.14~dfsg-0ubuntu1 opj_j2k_start_compress@Base 9.14~dfsg-0ubuntu1 opj_j2k_write_tile@Base 9.14~dfsg-0ubuntu1 opj_jp2_create@Base 9.14~dfsg-0ubuntu1 opj_jp2_decode@Base 9.14~dfsg-0ubuntu1 opj_jp2_decode_tile@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_jp2_default_validation@Base 9.14~dfsg-0ubuntu1 opj_jp2_destroy@Base 9.14~dfsg-0ubuntu1 opj_jp2_encode@Base 9.14~dfsg-0ubuntu1 opj_jp2_end_compress@Base 9.14~dfsg-0ubuntu1 opj_jp2_end_decompress@Base 9.14~dfsg-0ubuntu1 opj_jp2_get_tile@Base 9.14~dfsg-0ubuntu1 opj_jp2_read_header@Base 9.14~dfsg-0ubuntu1 opj_jp2_read_tile_header@Base 9.14~dfsg-0ubuntu1 opj_jp2_set_decode_area@Base 9.14~dfsg-0ubuntu1 opj_jp2_set_decoded_components@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_jp2_set_decoded_resolution_factor@Base 9.14~dfsg-0ubuntu1 opj_jp2_set_threads@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_jp2_setup_decoder@Base 9.14~dfsg-0ubuntu1 opj_jp2_setup_encoder@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_jp2_skip_jp2c@Base 9.14~dfsg-0ubuntu1 opj_jp2_start_compress@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_jp2_write_jp2h@Base 9.14~dfsg-0ubuntu1 opj_jp2_write_tile@Base 9.14~dfsg-0ubuntu1 opj_malloc@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_matrix_inversion_f@Base 9.14~dfsg-0ubuntu1 opj_mct_decode@Base 9.14~dfsg-0ubuntu1 opj_mct_decode_custom@Base 9.14~dfsg-0ubuntu1 opj_mct_decode_real@Base 9.14~dfsg-0ubuntu1 opj_mct_encode@Base 9.14~dfsg-0ubuntu1 opj_mct_encode_custom@Base 9.14~dfsg-0ubuntu1 opj_mct_encode_real@Base 9.14~dfsg-0ubuntu1 opj_mct_get_mct_norms@Base 9.14~dfsg-0ubuntu1 opj_mct_get_mct_norms_real@Base 9.14~dfsg-0ubuntu1 opj_mct_getnorm@Base 9.14~dfsg-0ubuntu1 opj_mct_getnorm_real@Base 9.14~dfsg-0ubuntu1 opj_mqc_bypass_enc@Base 9.14~dfsg-0ubuntu1 opj_mqc_bypass_flush_enc@Base 9.14~dfsg-0ubuntu1 opj_mqc_bypass_get_extra_bytes@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_mqc_bypass_init_enc@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_mqc_create@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_mqc_decode@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_mqc_destroy@Base 9.14~dfsg-0ubuntu1 opj_mqc_encode@Base 9.14~dfsg-0ubuntu1 opj_mqc_erterm_enc@Base 9.14~dfsg-0ubuntu1 opj_mqc_flush@Base 9.14~dfsg-0ubuntu1 opj_mqc_init_dec@Base 9.14~dfsg-0ubuntu1 opj_mqc_init_enc@Base 9.14~dfsg-0ubuntu1 opj_mqc_numbytes@Base 9.14~dfsg-0ubuntu1 opj_mqc_raw_init_dec@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_mqc_reset_enc@Base 9.14~dfsg-0ubuntu1 opj_mqc_resetstates@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_mqc_restart_enc@Base 9.14~dfsg-0ubuntu1 opj_mqc_restart_init_enc@Base 9.14~dfsg-0ubuntu1 opj_mqc_segmark_enc@Base 9.14~dfsg-0ubuntu1 opj_mqc_setstate@Base 9.14~dfsg-0ubuntu1 opj_mutex_create@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_mutex_destroy@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_mutex_lock@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_mutex_unlock@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_pi_check_next_level@Base 9.14~dfsg-0ubuntu1 opj_pi_create_decode@Base 9.14~dfsg-0ubuntu1 opj_pi_create_encode@Base 9.14~dfsg-0ubuntu1 opj_pi_destroy@Base 9.14~dfsg-0ubuntu1 opj_pi_initialise_encode@Base 9.14~dfsg-0ubuntu1 opj_pi_next@Base 9.14~dfsg-0ubuntu1 opj_pi_update_encoding_parameters@Base 9.14~dfsg-0ubuntu1 opj_procedure_list_add_procedure@Base 9.14~dfsg-0ubuntu1 opj_procedure_list_clear@Base 9.14~dfsg-0ubuntu1 opj_procedure_list_create@Base 9.14~dfsg-0ubuntu1 opj_procedure_list_destroy@Base 9.14~dfsg-0ubuntu1 opj_procedure_list_get_first_procedure@Base 9.14~dfsg-0ubuntu1 opj_procedure_list_get_nb_procedures@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_raw_create@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_raw_decode@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_raw_destroy@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_raw_init_dec@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_raw_numbytes@Base 9.14~dfsg-0ubuntu1 opj_read_bytes_BE@Base 9.14~dfsg-0ubuntu1 opj_read_bytes_LE@Base 9.14~dfsg-0ubuntu1 opj_read_double_BE@Base 9.14~dfsg-0ubuntu1 opj_read_double_LE@Base 9.14~dfsg-0ubuntu1 opj_read_float_BE@Base 9.14~dfsg-0ubuntu1 opj_read_float_LE@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_read_header@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_read_tile_header@Base 9.14~dfsg-0ubuntu1 opj_realloc@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_set_MCT@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_set_decode_area@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_set_decoded_resolution_factor@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_set_default_decoder_parameters@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_set_default_encoder_parameters@Base 9.14~dfsg-0ubuntu1 opj_set_default_event_handler@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_set_error_handler@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# opj_set_event_mgr@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_set_info_handler@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_set_warning_handler@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_setup_decoder@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_setup_encoder@Base 9.14~dfsg-0ubuntu1 opj_sparse_array_int32_create@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_sparse_array_int32_free@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_sparse_array_int32_read@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_sparse_array_int32_write@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_sparse_array_is_region_valid@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_start_compress@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_stream_create@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_stream_create_default_file_stream@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.15~dfsg-0ubuntu1# opj_stream_create_default_file_stream_v3@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_stream_create_file_stream@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.15~dfsg-0ubuntu1# opj_stream_create_file_stream_v3@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_stream_default_create@Base 9.14~dfsg-0ubuntu1 opj_stream_default_read@Base 9.14~dfsg-0ubuntu1 opj_stream_default_seek@Base 9.14~dfsg-0ubuntu1 opj_stream_default_skip@Base 9.14~dfsg-0ubuntu1 opj_stream_default_write@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_stream_destroy@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.15~dfsg-0ubuntu1# opj_stream_destroy_v3@Base 9.14~dfsg-0ubuntu1 opj_stream_flush@Base 9.14~dfsg-0ubuntu1 opj_stream_get_number_byte_left@Base 9.14~dfsg-0ubuntu1 opj_stream_has_seek@Base 9.14~dfsg-0ubuntu1 opj_stream_read_data@Base 9.14~dfsg-0ubuntu1 opj_stream_read_seek@Base 9.14~dfsg-0ubuntu1 opj_stream_read_skip@Base 9.14~dfsg-0ubuntu1 opj_stream_seek@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_stream_set_read_function@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_stream_set_seek_function@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_stream_set_skip_function@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_stream_set_user_data@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_stream_set_user_data_length@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_stream_set_write_function@Base 9.14~dfsg-0ubuntu1 opj_stream_skip@Base 9.14~dfsg-0ubuntu1 opj_stream_tell@Base 9.14~dfsg-0ubuntu1 opj_stream_write_data@Base 9.14~dfsg-0ubuntu1 opj_stream_write_seek@Base 9.14~dfsg-0ubuntu1 opj_stream_write_skip@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_t1_allocate_buffers@Base 9.14~dfsg-0ubuntu1 opj_t1_create@Base 9.14~dfsg-0ubuntu1 opj_t1_decode_cblks@Base 9.14~dfsg-0ubuntu1 opj_t1_destroy@Base 9.14~dfsg-0ubuntu1 opj_t1_encode_cblks@Base 9.14~dfsg-0ubuntu1 opj_t2_create@Base 9.14~dfsg-0ubuntu1 opj_t2_decode_packets@Base 9.14~dfsg-0ubuntu1 opj_t2_destroy@Base 9.14~dfsg-0ubuntu1 opj_t2_encode_packets@Base 9.14~dfsg-0ubuntu1 opj_tcd_copy_tile_data@Base 9.14~dfsg-0ubuntu1 opj_tcd_create@Base 9.14~dfsg-0ubuntu1 opj_tcd_decode_tile@Base 9.14~dfsg-0ubuntu1 opj_tcd_destroy@Base 9.14~dfsg-0ubuntu1 opj_tcd_encode_tile@Base 9.14~dfsg-0ubuntu1 opj_tcd_get_decoded_tile_size@Base 9.14~dfsg-0ubuntu1 opj_tcd_get_encoded_tile_size@Base 9.14~dfsg-0ubuntu1 opj_tcd_init@Base 9.14~dfsg-0ubuntu1 opj_tcd_init_decode_tile@Base 9.14~dfsg-0ubuntu1 opj_tcd_init_encode_tile@Base 9.14~dfsg-0ubuntu1 opj_tcd_is_band_empty@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_tcd_is_subband_area_of_interest@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_tcd_makelayer@Base 9.14~dfsg-0ubuntu1 opj_tcd_makelayer_fixed@Base 9.14~dfsg-0ubuntu1 opj_tcd_rateallocate@Base 9.14~dfsg-0ubuntu1 opj_tcd_rateallocate_fixed@Base 9.14~dfsg-0ubuntu1 opj_tcd_reinit_segment@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_tcd_update_tile_data@Base 9.14~dfsg-0ubuntu1 opj_tgt_create@Base 9.14~dfsg-0ubuntu1 opj_tgt_decode@Base 9.14~dfsg-0ubuntu1 opj_tgt_destroy@Base 9.14~dfsg-0ubuntu1 opj_tgt_encode@Base 9.14~dfsg-0ubuntu1 opj_tgt_init@Base 9.14~dfsg-0ubuntu1 opj_tgt_reset@Base 9.14~dfsg-0ubuntu1 opj_tgt_setvalue@Base 9.14~dfsg-0ubuntu1 opj_thread_create@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_thread_join@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_thread_pool_create@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_thread_pool_destroy@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_thread_pool_get_thread_count@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_thread_pool_submit_job@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_thread_pool_wait_completion@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_tls_get@Base 9.25~dfsg+1-0ubuntu0.14.04.1 opj_tls_set@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_version@Base 9.14~dfsg-0ubuntu1 opj_write_bytes_BE@Base 9.14~dfsg-0ubuntu1 opj_write_bytes_LE@Base 9.14~dfsg-0ubuntu1 opj_write_cidx@Base 9.14~dfsg-0ubuntu1 opj_write_cptr@Base 9.14~dfsg-0ubuntu1 opj_write_double_BE@Base 9.14~dfsg-0ubuntu1 opj_write_double_LE@Base 9.14~dfsg-0ubuntu1 opj_write_float_BE@Base 9.14~dfsg-0ubuntu1 opj_write_float_LE@Base 9.14~dfsg-0ubuntu1 opj_write_mainmhix@Base 9.14~dfsg-0ubuntu1 opj_write_manf@Base 9.14~dfsg-0ubuntu1 opj_write_phix@Base 9.14~dfsg-0ubuntu1 opj_write_phixfaix@Base 9.14~dfsg-0ubuntu1 opj_write_ppix@Base 9.14~dfsg-0ubuntu1 opj_write_ppixfaix@Base 9.14~dfsg-0ubuntu1 opj_write_thix@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# opj_write_tile@Base 9.14~dfsg-0ubuntu1 opj_write_tilemhix@Base 9.14~dfsg-0ubuntu1 opj_write_tpix@Base 9.14~dfsg-0ubuntu1 opj_write_tpixfaix@Base 9.14~dfsg-0ubuntu1 opq_mqc_finish_dec@Base 9.25~dfsg+1-0ubuntu0.14.04.1 outflush@Base 8.61.dfsg.1 outprintf@Base 8.61.dfsg.1 outwrite@Base 8.61.dfsg.1 #MISSING: 8.64~dfsg-3# p9color@Base 8.61.dfsg.1 pSHA256_Data@Base 9.14~dfsg-0ubuntu1 pSHA256_End@Base 9.14~dfsg-0ubuntu1 pSHA256_Final@Base 9.05~ pSHA256_Init@Base 9.05~ pSHA256_Transform@Base 9.05~ pSHA256_Update@Base 9.05~ pSHA384_Data@Base 9.14~dfsg-0ubuntu1 pSHA384_End@Base 9.14~dfsg-0ubuntu1 pSHA384_Final@Base 9.14~dfsg-0ubuntu1 pSHA384_Init@Base 9.14~dfsg-0ubuntu1 pSHA384_Update@Base 9.14~dfsg-0ubuntu1 pSHA512_Data@Base 9.14~dfsg-0ubuntu1 pSHA512_End@Base 9.14~dfsg-0ubuntu1 pSHA512_Final@Base 9.14~dfsg-0ubuntu1 pSHA512_Init@Base 9.14~dfsg-0ubuntu1 pSHA512_Last@Base 9.14~dfsg-0ubuntu1 pSHA512_Transform@Base 9.05~ pSHA512_Update@Base 9.14~dfsg-0ubuntu1 packed_get@Base 8.61.dfsg.1 pantone_op_defs@Base 8.61.dfsg.1 paperTable@Base 8.61.dfsg.1 paramStringToParam@Base 8.61.dfsg.1 paramValueToParam@Base 8.61.dfsg.1 param_check_password@Base 8.61.dfsg.1 param_coerce_typed@Base 8.61.dfsg.1 param_get_cie_render1@Base 8.61.dfsg.1 param_init_enumerator@Base 8.61.dfsg.1 param_list_copy@Base 8.61.dfsg.1 param_printer_params_default@Base 8.61.dfsg.1 param_put_bool@Base 8.61.dfsg.1 param_put_cie_render1@Base 8.61.dfsg.1 param_put_enum@Base 8.61.dfsg.1 param_put_int@Base 8.61.dfsg.1 param_put_long@Base 8.61.dfsg.1 param_read_bool@Base 8.61.dfsg.1 param_read_float@Base 8.61.dfsg.1 param_read_float_array@Base 8.61.dfsg.1 param_read_int@Base 8.61.dfsg.1 param_read_int_array@Base 8.61.dfsg.1 param_read_long@Base 8.61.dfsg.1 param_read_name@Base 8.61.dfsg.1 param_read_name_array@Base 8.61.dfsg.1 param_read_null@Base 8.61.dfsg.1 param_read_password@Base 8.61.dfsg.1 param_read_requested_typed@Base 8.61.dfsg.1 param_read_string@Base 8.61.dfsg.1 param_read_string_array@Base 8.61.dfsg.1 param_write_bool@Base 8.61.dfsg.1 param_write_cie_render1@Base 8.61.dfsg.1 param_write_float@Base 8.61.dfsg.1 param_write_float_array@Base 8.61.dfsg.1 param_write_float_values@Base 8.61.dfsg.1 param_write_int@Base 8.61.dfsg.1 param_write_int_array@Base 8.61.dfsg.1 param_write_int_values@Base 8.61.dfsg.1 param_write_long@Base 8.61.dfsg.1 param_write_name@Base 8.61.dfsg.1 param_write_name_array@Base 8.61.dfsg.1 param_write_null@Base 8.61.dfsg.1 param_write_password@Base 8.61.dfsg.1 param_write_string@Base 8.61.dfsg.1 param_write_string_array@Base 8.61.dfsg.1 patch_color_to_device_color@Base 8.61.dfsg.1 patch_fill@Base 8.61.dfsg.1 patch_resolve_color@Base 8.61.dfsg.1 pattern_accum_dev_spec_op@Base 9.25~dfsg+1-0ubuntu0.14.04.1 pattern_clist_open_device@Base 8.61.dfsg.1 pc_4bit_map_color_rgb@Base 8.61.dfsg.1 pc_4bit_map_rgb_color@Base 8.61.dfsg.1 pc_8bit_map_color_rgb@Base 8.61.dfsg.1 pc_8bit_map_rgb_color@Base 8.61.dfsg.1 pc_write_palette@Base 8.61.dfsg.1 pcf_getcount@Base 8.61.dfsg.1 pcf_inccount@Base 8.61.dfsg.1 pcl3_begin_page@Base 8.61.dfsg.1 pcl3_begin_raster@Base 8.61.dfsg.1 pcl3_end_file@Base 8.61.dfsg.1 pcl3_end_page@Base 8.61.dfsg.1 pcl3_end_raster@Base 8.61.dfsg.1 pcl3_fill_defaults@Base 8.61.dfsg.1 pcl3_init_file@Base 8.61.dfsg.1 pcl3_levels_to_planes@Base 8.61.dfsg.1 pcl3_media_code@Base 8.61.dfsg.1 pcl3_page_size@Base 8.61.dfsg.1 pcl3_printers@Base 8.61.dfsg.1 pcl3_set_mediatype@Base 8.61.dfsg.1 pcl3_set_oldquality@Base 8.61.dfsg.1 pcl3_set_printquality@Base 8.61.dfsg.1 pcl3_size_description@Base 8.61.dfsg.1 pcl3_skip_groups@Base 8.61.dfsg.1 pcl3_transfer_group@Base 8.61.dfsg.1 pcl_compress@Base 8.61.dfsg.1 pdf14_accum_CMYK@Base 9.14~dfsg-0ubuntu1 pdf14_accum_Gray@Base 9.14~dfsg-0ubuntu1 pdf14_accum_RGB@Base 9.14~dfsg-0ubuntu1 pdf14_clist_CMYK_device@Base 8.61.dfsg.1 pdf14_clist_CMYKspot_device@Base 8.61.dfsg.1 pdf14_clist_Gray_device@Base 8.61.dfsg.1 pdf14_clist_RGB_device@Base 8.61.dfsg.1 pdf14_clist_custom_device@Base 8.61.dfsg.1 pdf14_cmyk_cs_to_cmyk_cm@Base 8.61.dfsg.1 pdf14_cmyk_cs_to_grayspot_cm@Base 9.25~dfsg+1-0ubuntu0.14.04.1 pdf14_cmyk_cs_to_rgbspot_cm@Base 9.25~dfsg+1-0ubuntu0.14.04.1 pdf14_compose_alphaless_group@Base 9.25~dfsg+1-0ubuntu0.14.04.1 pdf14_compose_group@Base 8.64~dfsg #MISSING: 9.18~dfsg~0-0ubuntu1# pdf14_compressed_decode_color@Base 8.64~dfsg #MISSING: 9.18~dfsg~0-0ubuntu1# pdf14_compressed_encode_color@Base 8.64~dfsg pdf14_decode_color@Base 8.64~dfsg #MISSING: 9.01~dfsg-1# pdf14_decode_smask_color@Base 8.64~dfsg-3~ pdf14_device_finalize@Base 9.18~dfsg~0-0ubuntu1 pdf14_disable_device@Base 8.70~ pdf14_encode_color@Base 8.64~dfsg pdf14_encode_color_tag@Base 9.01~ #MISSING: 9.01~dfsg-1# pdf14_encode_smask_color@Base 8.64~dfsg-3~ pdf14_get_buffer_information@Base 8.70~ pdf14_gray_cs_to_cmyk_cm@Base 8.64~dfsg pdf14_gray_cs_to_grayspot_cm@Base 9.25~dfsg+1-0ubuntu0.14.04.1 pdf14_gray_cs_to_rgbspot_cm@Base 9.25~dfsg+1-0ubuntu0.14.04.1 pdf14_mark_fill_rectangle@Base 9.25~dfsg+1-0ubuntu0.14.04.1 pdf14_ok_to_optimize@Base 9.16~dfsg~0-0ubuntu1 pdf14_preserve_backdrop@Base 8.64~dfsg pdf14_preserve_backdrop_cm@Base 9.14~dfsg-0ubuntu1 pdf14_put_devn_params@Base 8.61.dfsg.1 pdf14_rgb_cs_to_cmyk_cm@Base 8.64~dfsg pdf14_rgb_cs_to_grayspot_cm@Base 9.25~dfsg+1-0ubuntu0.14.04.1 pdf14_rgb_cs_to_rgbspot_cm@Base 9.25~dfsg+1-0ubuntu0.14.04.1 pdf14_unpack_additive@Base 8.64~dfsg #MISSING: 9.18~dfsg~0-0ubuntu1# pdf14_unpack_compressed@Base 8.64~dfsg pdf14_unpack_custom@Base 8.64~dfsg pdf14_unpack_gray_mix@Base 9.25~dfsg+1-0ubuntu0.14.04.1 pdf14_unpack_rgb_mix@Base 9.25~dfsg+1-0ubuntu0.14.04.1 pdf14_unpack_subtractive@Base 8.64~dfsg pdf_add_ToUnicode@Base 8.61.dfsg.1 pdf_add_procsets@Base 8.61.dfsg.1 pdf_add_resource@Base 8.61.dfsg.1 pdf_add_subset_prefix@Base 8.61.dfsg.1 pdf_alloc_aside@Base 8.61.dfsg.1 pdf_alloc_resource@Base 8.61.dfsg.1 pdf_append_chars@Base 8.61.dfsg.1 pdf_append_data_stream_filters@Base 8.61.dfsg.1 pdf_assign_font_object_id@Base 8.61.dfsg.1 pdf_attach_font_resource@Base 8.61.dfsg.1 pdf_attached_font_resource@Base 8.61.dfsg.1 pdf_base_font_alloc@Base 8.61.dfsg.1 pdf_base_font_copy_glyph@Base 8.61.dfsg.1 pdf_base_font_drop_complete@Base 8.61.dfsg.1 pdf_base_font_font@Base 8.61.dfsg.1 pdf_base_font_is_subset@Base 8.61.dfsg.1 pdf_base_font_name@Base 8.61.dfsg.1 pdf_begin_aside@Base 8.61.dfsg.1 pdf_begin_char_proc@Base 8.61.dfsg.1 pdf_begin_data@Base 8.61.dfsg.1 pdf_begin_data_stream@Base 8.61.dfsg.1 pdf_begin_encrypt@Base 8.61.dfsg.1 pdf_begin_image_data@Base 8.61.dfsg.1 pdf_begin_obj@Base 8.61.dfsg.1 pdf_begin_resource@Base 8.61.dfsg.1 pdf_begin_resource_body@Base 8.61.dfsg.1 pdf_begin_separate@Base 8.61.dfsg.1 pdf_begin_write_image@Base 8.61.dfsg.1 pdf_bitmap_char_update_bbox@Base 9.14~dfsg-0ubuntu1 pdf_bitmap_fonts_alloc@Base 8.61.dfsg.1 pdf_calculate_text_size@Base 8.61.dfsg.1 pdf_cancel_resource@Base 8.61.dfsg.1 pdf_charproc_x_offset@Base 8.70~ pdf_charproc_y_offset@Base 8.70~ pdf_check_encoding_compatibility@Base 8.61.dfsg.1 pdf_check_soft_mask@Base 9.18~dfsg~0-0ubuntu1 pdf_choose_compression@Base 8.61.dfsg.1 pdf_clean_standard_fonts@Base 8.61.dfsg.1 pdf_close_aside@Base 8.61.dfsg.1 pdf_close_contents@Base 8.61.dfsg.1 pdf_close_text_contents@Base 8.61.dfsg.1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# pdf_close_text_document@Base 8.61.dfsg.1 pdf_close_text_page@Base 8.61.dfsg.1 pdf_cmap_alloc@Base 8.61.dfsg.1 #MISSING: 8.64~dfsg-2# pdf_color_space@Base 8.61.dfsg.1 pdf_color_space_named@Base 8.61.dfsg.1 pdf_color_space_names@Base 8.61.dfsg.1 pdf_color_space_names_short@Base 8.61.dfsg.1 pdf_color_space_procsets@Base 8.61.dfsg.1 pdf_compare_text_state_for_charpath@Base 8.61.dfsg.1 pdf_complete_image_data@Base 8.61.dfsg.1 pdf_compute_BaseFont@Base 8.61.dfsg.1 pdf_compute_font_descriptor@Base 8.61.dfsg.1 pdf_convert_ICC@Base 9.05~ pdf_convert_cie_space@Base 8.61.dfsg.1 pdf_convert_truetype_font@Base 8.61.dfsg.1 pdf_convert_truetype_font_descriptor@Base 8.61.dfsg.1 pdf_copy_color_bits@Base 8.61.dfsg.1 pdf_copy_color_data@Base 8.61.dfsg.1 pdf_copy_data@Base 8.61.dfsg.1 pdf_copy_data_safe@Base 8.61.dfsg.1 pdf_copy_mask_bits@Base 8.61.dfsg.1 pdf_create_named@Base 8.61.dfsg.1 pdf_create_named_dict@Base 8.61.dfsg.1 pdf_cs_Pattern_colored@Base 8.61.dfsg.1 pdf_cs_Pattern_uncolored@Base 8.61.dfsg.1 pdf_cs_Pattern_uncolored_hl@Base 8.61.dfsg.1 pdf_cspace_init_Device@Base 8.61.dfsg.1 pdf_current_page@Base 8.61.dfsg.1 pdf_current_page_dict@Base 8.61.dfsg.1 pdf_default_text_begin@Base 8.61.dfsg.1 pdf_delete_base_space_function@Base 9.08~rc1~dfsg-0ubuntu1 pdf_delete_sampled_base_space_function@Base 9.08~rc1~dfsg-0ubuntu1 pdf_different_encoding_index@Base 8.61.dfsg.1 pdf_do_char_image@Base 8.61.dfsg.1 pdf_do_image@Base 8.61.dfsg.1 pdf_do_image_by_id@Base 8.61.dfsg.1 pdf_do_subset_font@Base 8.61.dfsg.1 pdf_document_metadata@Base 8.61.dfsg.1 pdf_drop_resource_from_chain@Base 9.25~dfsg+1-0ubuntu0.14.04.1 pdf_drop_resources@Base 8.61.dfsg.1 pdf_dump_converted_image@Base 8.61.dfsg.1 pdf_encode_glyph@Base 8.61.dfsg.1 pdf_encrypt_init@Base 8.61.dfsg.1 pdf_end_aside@Base 8.61.dfsg.1 pdf_end_char_proc@Base 8.61.dfsg.1 pdf_end_charproc_accum@Base 8.61.dfsg.1 pdf_end_data@Base 8.61.dfsg.1 pdf_end_encrypt@Base 8.61.dfsg.1 pdf_end_gstate@Base 8.61.dfsg.1 pdf_end_image_binary@Base 8.61.dfsg.1 pdf_end_obj@Base 8.61.dfsg.1 pdf_end_resource@Base 8.61.dfsg.1 pdf_end_separate@Base 8.61.dfsg.1 pdf_end_write_image@Base 8.61.dfsg.1 pdf_enter_substream@Base 8.61.dfsg.1 pdf_exit_substream@Base 8.61.dfsg.1 pdf_find_base14_name@Base 9.05~ pdf_find_glyph@Base 8.61.dfsg.1 pdf_find_named@Base 8.61.dfsg.1 pdf_find_resource_by_gs_id@Base 8.61.dfsg.1 pdf_find_resource_by_resource_id@Base 8.61.dfsg.1 pdf_find_same_resource@Base 8.61.dfsg.1 pdf_finish_FontDescriptor@Base 8.61.dfsg.1 pdf_finish_cie_space@Base 8.61.dfsg.1 pdf_finish_resources@Base 8.61.dfsg.1 pdf_finish_write_contents_type3@Base 8.61.dfsg.1 pdf_font_cidfont_alloc@Base 8.61.dfsg.1 pdf_font_descriptor_FontType@Base 8.61.dfsg.1 pdf_font_descriptor_alloc@Base 8.61.dfsg.1 pdf_font_descriptor_base_name@Base 8.61.dfsg.1 pdf_font_descriptor_drop_complete_font@Base 8.61.dfsg.1 pdf_font_descriptor_embedding@Base 8.61.dfsg.1 pdf_font_descriptor_font@Base 8.61.dfsg.1 pdf_font_descriptor_free@Base 9.06~dfsg~20120802-0ubuntu1 pdf_font_descriptor_id@Base 8.61.dfsg.1 pdf_font_descriptor_is_subset@Base 8.61.dfsg.1 pdf_font_descriptor_name@Base 8.61.dfsg.1 pdf_font_embed_status@Base 8.61.dfsg.1 pdf_font_id@Base 8.61.dfsg.1 #MISSING: 8.64~dfsg-2# pdf_font_metadata@Base 8.61.dfsg.1 pdf_font_orig_matrix@Base 8.61.dfsg.1 pdf_font_resource_font@Base 8.61.dfsg.1 pdf_font_simple_alloc@Base 8.61.dfsg.1 pdf_font_std_alloc@Base 8.61.dfsg.1 pdf_font_type0_alloc@Base 8.61.dfsg.1 pdf_font_type3_alloc@Base 8.61.dfsg.1 pdf_font_used_glyph@Base 8.61.dfsg.1 pdf_fontfile_hash@Base 9.07~dfsg-0ubuntu1 pdf_forget_resource@Base 8.61.dfsg.1 pdf_free_charproc_ownership@Base 9.06~dfsg~20120802-0ubuntu1 pdf_free_font_cache@Base 8.61.dfsg.1 pdf_free_resource_objects@Base 8.61.dfsg.1 pdf_from_stream_to_text@Base 8.61.dfsg.1 pdf_from_string_to_text@Base 8.61.dfsg.1 pdf_function@Base 8.61.dfsg.1 pdf_function_scaled@Base 8.61.dfsg.1 pdf_get_FontFile_object@Base 8.61.dfsg.1 pdf_get_docinfo_item@Base 9.01~ pdf_get_named@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# pdf_get_stoted_text_size@Base 8.61.dfsg.1 pdf_get_text_render_mode@Base 8.64~dfsg pdf_get_text_state_values@Base 8.61.dfsg.1 pdf_glyph_widths@Base 8.61.dfsg.1 pdf_has_subset_prefix@Base 8.61.dfsg.1 pdf_iccbased_color_space@Base 8.61.dfsg.1 pdf_image_close@Base 9.25~dfsg+1-0ubuntu0.14.04.1 pdf_image_get_params_downscale@Base 9.25~dfsg+1-0ubuntu0.14.04.1 pdf_image_get_params_downscale_cmyk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 pdf_image_get_params_downscale_cmyk_ets@Base 9.25~dfsg+1-0ubuntu0.14.04.1 pdf_image_names_full@Base 8.61.dfsg.1 pdf_image_names_short@Base 8.61.dfsg.1 pdf_image_open@Base 9.25~dfsg+1-0ubuntu0.14.04.1 pdf_image_put_params_downscale@Base 9.25~dfsg+1-0ubuntu0.14.04.1 pdf_image_put_params_downscale_cmyk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 pdf_image_put_params_downscale_cmyk_ets@Base 9.25~dfsg+1-0ubuntu0.14.04.1 pdf_image_writer_init@Base 8.61.dfsg.1 pdf_indexed_color_space@Base 9.08~rc1~dfsg-0ubuntu1 pdf_initialize_ids@Base 8.61.dfsg.1 pdf_is_CID_font@Base 8.61.dfsg.1 pdf_is_simple_font@Base 8.61.dfsg.1 pdf_is_standard_font@Base 8.61.dfsg.1 pdf_key_eq@Base 8.61.dfsg.1 pdf_locate_font_cache_elem@Base 8.61.dfsg.1 pdf_make_alt_stream@Base 8.61.dfsg.1 pdf_make_base_space_function@Base 9.08~rc1~dfsg-0ubuntu1 pdf_make_bitmap_matrix@Base 8.61.dfsg.1 pdf_make_font3_resource@Base 8.61.dfsg.1 pdf_make_named@Base 8.61.dfsg.1 pdf_make_named_dict@Base 8.61.dfsg.1 pdf_make_sampled_base_space_function@Base 9.08~rc1~dfsg-0ubuntu1 pdf_mark_font_descriptor_used@Base 8.61.dfsg.1 pdf_mark_glyph_names@Base 8.61.dfsg.1 pdf_modify_text_render_mode@Base 8.61.dfsg.1 pdf_must_put_clip_path@Base 8.61.dfsg.1 pdf_obj_forward_ref@Base 9.00~dfsg pdf_obj_mark_unused@Base 9.15~dfsg-0ubuntu1 pdf_obj_ref@Base 8.61.dfsg.1 pdf_objname_is_valid@Base 8.61.dfsg.1 pdf_obtain_cidfont_resource@Base 8.61.dfsg.1 pdf_obtain_cidfont_widths_arrays@Base 8.61.dfsg.1 pdf_obtain_font_resource@Base 8.61.dfsg.1 pdf_obtain_font_resource_unencoded@Base 8.61.dfsg.1 pdf_obtain_parent_type0_font_resource@Base 8.61.dfsg.1 pdf_open_aside@Base 8.61.dfsg.1 pdf_open_contents@Base 8.61.dfsg.1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# pdf_open_document@Base 8.61.dfsg.1 pdf_open_obj@Base 8.61.dfsg.1 pdf_open_page@Base 8.61.dfsg.1 pdf_open_separate@Base 8.61.dfsg.1 pdf_outline_fonts_alloc@Base 8.61.dfsg.1 pdf_page_id@Base 8.61.dfsg.1 pdf_pop_namespace@Base 8.61.dfsg.1 pdf_prepare_drawing@Base 8.61.dfsg.1 pdf_prepare_fill@Base 8.61.dfsg.1 pdf_prepare_image@Base 8.61.dfsg.1 pdf_prepare_imagemask@Base 8.61.dfsg.1 pdf_prepare_initial_viewer_state@Base 8.61.dfsg.1 pdf_prepare_stroke@Base 8.61.dfsg.1 pdf_print_resource_statistics@Base 8.61.dfsg.1 pdf_process_string_aux@Base 8.61.dfsg.1 pdf_push_namespace@Base 8.61.dfsg.1 pdf_put_clip_path@Base 8.61.dfsg.1 pdf_put_colored_pattern@Base 8.61.dfsg.1 pdf_put_filters@Base 8.61.dfsg.1 pdf_put_image_filters@Base 8.61.dfsg.1 pdf_put_image_matrix@Base 8.61.dfsg.1 pdf_put_image_values@Base 8.61.dfsg.1 pdf_put_lab_color_space@Base 8.61.dfsg.1 pdf_put_matrix@Base 8.61.dfsg.1 pdf_put_name@Base 8.61.dfsg.1 pdf_put_name_chars@Base 8.61.dfsg.1 pdf_put_name_chars_proc@Base 8.61.dfsg.1 pdf_put_pattern2@Base 8.61.dfsg.1 pdf_put_string@Base 8.61.dfsg.1 pdf_put_uncolored_pattern@Base 8.61.dfsg.1 pdf_record_usage@Base 9.07~dfsg-0ubuntu1 pdf_record_usage_by_parent@Base 9.07~dfsg-0ubuntu1 pdf_refer_named@Base 8.61.dfsg.1 pdf_release_FontDescriptor_components@Base 8.61.dfsg.1 pdf_remember_clip_path@Base 8.61.dfsg.1 pdf_remove_masked_image_converter@Base 8.61.dfsg.1 pdf_render_mode_uses_stroke@Base 8.61.dfsg.1 pdf_replace_names@Base 8.61.dfsg.1 pdf_reserve_object_id@Base 8.61.dfsg.1 pdf_reset_color@Base 8.61.dfsg.1 pdf_reset_graphics@Base 8.61.dfsg.1 pdf_reset_text@Base 8.61.dfsg.1 pdf_reset_text_page@Base 8.61.dfsg.1 pdf_reset_text_state@Base 8.61.dfsg.1 pdf_resize_resource_arrays@Base 8.61.dfsg.1 pdf_resource_id@Base 8.61.dfsg.1 pdf_resource_type_names@Base 8.61.dfsg.1 pdf_resource_type_structs@Base 8.61.dfsg.1 pdf_restore_viewer_state@Base 8.61.dfsg.1 pdf_reverse_resource_chain@Base 8.61.dfsg.1 pdf_save_viewer_state@Base 8.61.dfsg.1 pdf_scan_token@Base 8.61.dfsg.1 pdf_scan_token_composite@Base 8.61.dfsg.1 pdf_set_FontFile_object@Base 8.61.dfsg.1 pdf_set_PaintType0_params@Base 8.64~dfsg pdf_set_charproc_attrs@Base 8.61.dfsg.1 pdf_set_drawing_color@Base 8.61.dfsg.1 pdf_set_font_descriptor_usage@Base 9.07~dfsg-0ubuntu1 pdf_set_initial_color@Base 8.61.dfsg.1 pdf_set_process_color_model@Base 8.61.dfsg.1 pdf_set_pure_color@Base 8.61.dfsg.1 pdf_set_text_process_state@Base 8.61.dfsg.1 pdf_set_text_render_mode@Base 8.64~dfsg pdf_set_text_state_default@Base 8.61.dfsg.1 pdf_set_text_state_values@Base 8.61.dfsg.1 pdf_set_text_wmode@Base 8.61.dfsg.1 pdf_setup_masked_image_converter@Base 8.61.dfsg.1 pdf_shift_text_currentpoint@Base 8.61.dfsg.1 pdf_standard_fonts@Base 8.61.dfsg.1 pdf_start_charproc_accum@Base 8.61.dfsg.1 pdf_stell@Base 8.61.dfsg.1 pdf_store_default_Producer@Base 8.61.dfsg.1 pdf_store_page_resources@Base 8.61.dfsg.1 pdf_store_pattern1_params@Base 8.61.dfsg.1 pdf_string_to_cos_name@Base 8.61.dfsg.1 pdf_substitute_pattern@Base 8.61.dfsg.1 pdf_substitute_resource@Base 8.61.dfsg.1 pdf_text_data_alloc@Base 8.61.dfsg.1 pdf_text_distance_transform@Base 8.61.dfsg.1 pdf_text_position@Base 8.61.dfsg.1 pdf_text_release_cgp@Base 8.61.dfsg.1 pdf_text_state_alloc@Base 8.61.dfsg.1 pdf_text_state_copy@Base 8.61.dfsg.1 pdf_try_prepare_fill@Base 8.61.dfsg.1 pdf_unclip@Base 8.61.dfsg.1 pdf_update_text_state@Base 8.61.dfsg.1 pdf_used_charproc_resources@Base 8.61.dfsg.1 pdf_vector_procs@Base 8.61.dfsg.1 pdf_viewer_state_from_gs_gstate@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# pdf_viewer_state_from_imager_state@Base 8.61.dfsg.1 pdf_write_CIDSet@Base 8.61.dfsg.1 pdf_write_CharSet@Base 8.61.dfsg.1 pdf_write_FontDescriptor@Base 8.61.dfsg.1 pdf_write_FontFile_entry@Base 8.61.dfsg.1 pdf_write_OneByteIdentityH@Base 8.61.dfsg.1 #MISSING: 9.06~dfsg~20120802-0ubuntu1# pdf_write_and_free_all_resource_objects@Base 8.61.dfsg.1 pdf_write_bitmap_fonts_Encoding@Base 8.61.dfsg.1 pdf_write_cid_systemInfo_separate@Base 8.61.dfsg.1 pdf_write_cid_system_info@Base 8.61.dfsg.1 pdf_write_cmap@Base 8.61.dfsg.1 pdf_write_contents_bitmap@Base 8.61.dfsg.1 pdf_write_contents_cid0@Base 8.61.dfsg.1 pdf_write_contents_cid2@Base 8.61.dfsg.1 pdf_write_contents_simple@Base 8.61.dfsg.1 pdf_write_contents_std@Base 8.61.dfsg.1 pdf_write_contents_type0@Base 8.61.dfsg.1 pdf_write_embedded_font@Base 8.61.dfsg.1 pdf_write_encoding@Base 8.61.dfsg.1 pdf_write_encoding_ref@Base 8.61.dfsg.1 pdf_write_font_bbox@Base 8.61.dfsg.1 pdf_write_font_bbox_float@Base 8.61.dfsg.1 pdf_write_function@Base 8.61.dfsg.1 pdf_write_resource_objects@Base 8.61.dfsg.1 pdf_write_saved_string@Base 8.61.dfsg.1 pdf_write_value@Base 8.61.dfsg.1 pdfmark_close_outline@Base 8.61.dfsg.1 pdfmark_end_pagelabels@Base 8.61.dfsg.1 pdfmark_process@Base 8.61.dfsg.1 pdfmark_scan_int@Base 8.61.dfsg.1 pdfmark_write_article@Base 8.61.dfsg.1 pdfwrite_pdf_open_document@Base 9.06~dfsg~20120802-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# pi_create_decode@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# pi_create_encode@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# pi_destroy@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# pi_initialise_encode@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# pi_next@Base 9.06~dfsg-0ubuntu1 pixel_image_params@Base 8.61.dfsg.1 pixmap_high_level_pattern@Base 9.08~rc1~dfsg-0ubuntu1 plane_device_init@Base 8.61.dfsg.1 png_push_fill_buffer@Base 8.61.dfsg.1 pop_estack@Base 8.61.dfsg.1 pprintd1@Base 8.61.dfsg.1 pprintd2@Base 8.61.dfsg.1 pprintd3@Base 8.61.dfsg.1 pprintd4@Base 8.61.dfsg.1 pprintg1@Base 8.61.dfsg.1 pprintg2@Base 8.61.dfsg.1 pprintg3@Base 8.61.dfsg.1 pprintg4@Base 8.61.dfsg.1 pprintg6@Base 8.61.dfsg.1 pprintld1@Base 8.61.dfsg.1 pprintld2@Base 8.61.dfsg.1 pprintld3@Base 8.61.dfsg.1 pprints1@Base 8.61.dfsg.1 pprints2@Base 8.61.dfsg.1 pprints3@Base 8.61.dfsg.1 #MISSING: 9.18~dfsg~0-0ubuntu1# print_compressed_color_list@Base 8.61.dfsg.1 print_reloc_proc@Base 8.61.dfsg.1 print_resource_usage@Base 8.61.dfsg.1 printf_program_ident@Base 8.61.dfsg.1 prn_bg_procs@Base 9.08~rc1~dfsg-0ubuntu1 prn_bj10v_procs@Base 8.61.dfsg.1 prn_std_procs@Base 8.61.dfsg.1 process_cid_text@Base 8.61.dfsg.1 process_cmap_text@Base 8.61.dfsg.1 process_composite_text@Base 8.61.dfsg.1 process_float_array@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# process_h_lists@Base 8.61.dfsg.1 process_non_source_image@Base 8.61.dfsg.1 process_plain_text@Base 8.61.dfsg.1 process_text_modify_width@Base 8.61.dfsg.1 ps2write_dsc_header@Base 9.01~ psd_allow_multiple_pages@Base 9.25~dfsg+1-0ubuntu0.14.04.1 psd_setup@Base 9.14~dfsg-0ubuntu1 psd_write@Base 9.14~dfsg-0ubuntu1 psd_write_16@Base 9.14~dfsg-0ubuntu1 psd_write_32@Base 9.14~dfsg-0ubuntu1 psd_write_8@Base 9.14~dfsg-0ubuntu1 psd_write_header@Base 9.14~dfsg-0ubuntu1 psdf_CFE_binary@Base 8.61.dfsg.1 psdf_DCT_filter@Base 8.61.dfsg.1 psdf_adjust_color_index@Base 8.61.dfsg.1 psdf_begin_binary@Base 8.61.dfsg.1 psdf_beginpath@Base 8.61.dfsg.1 psdf_closepath@Base 8.61.dfsg.1 psdf_create_compositor@Base 8.61.dfsg.1 psdf_curveto@Base 8.61.dfsg.1 psdf_dorect@Base 8.61.dfsg.1 psdf_encode_binary@Base 8.61.dfsg.1 psdf_end_binary@Base 8.61.dfsg.1 psdf_get_bits@Base 8.61.dfsg.1 psdf_get_bits_rectangle@Base 8.61.dfsg.1 psdf_is_converting_image_to_RGB@Base 8.61.dfsg.1 psdf_lineto@Base 8.61.dfsg.1 psdf_moveto@Base 8.61.dfsg.1 psdf_round@Base 8.61.dfsg.1 psdf_set_color@Base 8.61.dfsg.1 psdf_set_fill_color_commands@Base 8.61.dfsg.1 psdf_set_stroke_color_commands@Base 8.61.dfsg.1 psdf_setdash@Base 8.61.dfsg.1 psdf_setflat@Base 8.61.dfsg.1 psdf_setlinecap@Base 8.61.dfsg.1 psdf_setlinejoin@Base 8.61.dfsg.1 psdf_setlinewidth@Base 8.61.dfsg.1 psdf_setlogop@Base 8.61.dfsg.1 psdf_setmiterlimit@Base 8.61.dfsg.1 psdf_setup_compression_chooser@Base 8.61.dfsg.1 psdf_setup_image_colors_filter@Base 8.61.dfsg.1 psdf_setup_image_filters@Base 8.61.dfsg.1 psdf_setup_image_to_mask_filter@Base 8.61.dfsg.1 psdf_setup_lossless_filters@Base 8.61.dfsg.1 psf_add_subset_pieces@Base 8.61.dfsg.1 psf_check_outline_glyphs@Base 8.61.dfsg.1 psf_convert_type1_to_type2@Base 8.61.dfsg.1 psf_enumerate_bits_begin@Base 8.61.dfsg.1 psf_enumerate_glyphs_next@Base 8.61.dfsg.1 psf_enumerate_glyphs_reset@Base 8.61.dfsg.1 psf_enumerate_list_begin@Base 8.61.dfsg.1 psf_get_outline_glyphs@Base 8.61.dfsg.1 psf_get_type1_glyphs@Base 8.61.dfsg.1 psf_sort_glyphs@Base 8.61.dfsg.1 psf_sorted_glyphs_include@Base 8.61.dfsg.1 psf_sorted_glyphs_index_of@Base 8.61.dfsg.1 psf_type1_glyph_data@Base 8.61.dfsg.1 psf_write_cid0_font@Base 8.61.dfsg.1 psf_write_cid2_font@Base 8.61.dfsg.1 psf_write_cid2_stripped@Base 8.61.dfsg.1 psf_write_cmap@Base 8.61.dfsg.1 psf_write_truetype_font@Base 8.61.dfsg.1 psf_write_truetype_stripped@Base 8.61.dfsg.1 psf_write_type1_font@Base 8.61.dfsg.1 psf_write_type2_font@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# psh_inc@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# psh_init@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# psh_reset@Base 8.61.dfsg.1 #MISSING: 9.15~dfsg-0ubuntu1# psw_begin_file_header@Base 8.61.dfsg.1 #MISSING: 9.15~dfsg-0ubuntu1# psw_end_file@Base 8.61.dfsg.1 #MISSING: 9.15~dfsg-0ubuntu1# psw_end_file_header@Base 8.61.dfsg.1 #MISSING: 9.15~dfsg-0ubuntu1# psw_print_lines@Base 8.61.dfsg.1 #MISSING: 9.15~dfsg-0ubuntu1# psw_write_page_header@Base 8.61.dfsg.1 #MISSING: 9.15~dfsg-0ubuntu1# psw_write_page_trailer@Base 8.61.dfsg.1 ptr_const_string_procs@Base 8.61.dfsg.1 ptr_is_within_mem_clumps@Base 9.25~dfsg+1-0ubuntu0.14.04.1 ptr_name_index_procs@Base 9.06~dfsg~20120802-0ubuntu1 ptr_ref_mark@Base 8.61.dfsg.1 ptr_ref_procs@Base 8.61.dfsg.1 ptr_ref_unmark@Base 8.61.dfsg.1 ptr_string_procs@Base 8.61.dfsg.1 ptr_struct_procs@Base 8.61.dfsg.1 #MISSING: 9.18~dfsg~0-0ubuntu1# put_param_compressed_color_list_elem@Base 8.61.dfsg.1 put_param_pdf14_spot_names@Base 8.61.dfsg.1 put_u32_msb@Base 9.25~dfsg+1-0ubuntu0.14.04.1 px_put_a@Base 8.61.dfsg.1 px_put_ac@Base 8.61.dfsg.1 px_put_bytes@Base 8.61.dfsg.1 px_put_data_length@Base 8.61.dfsg.1 px_put_l@Base 8.61.dfsg.1 px_put_r@Base 8.61.dfsg.1 px_put_rl@Base 8.61.dfsg.1 px_put_rp@Base 8.71~dfsg px_put_rpa@Base 8.71~dfsg px_put_s@Base 8.61.dfsg.1 px_put_ss@Base 8.61.dfsg.1 px_put_ssp@Base 8.61.dfsg.1 px_put_u@Base 8.61.dfsg.1 px_put_ub@Base 8.61.dfsg.1 px_put_uba@Base 8.61.dfsg.1 px_put_ubaa@Base 9.07~dfsg-0ubuntu1 px_put_us@Base 8.61.dfsg.1 px_put_usa@Base 8.61.dfsg.1 px_put_usp@Base 8.61.dfsg.1 px_put_usq_fixed@Base 8.61.dfsg.1 px_write_file_header@Base 8.61.dfsg.1 px_write_file_trailer@Base 8.61.dfsg.1 px_write_page_header@Base 8.61.dfsg.1 px_write_select_media@Base 8.61.dfsg.1 ramfile_close@Base 9.14~dfsg-0ubuntu1 ramfile_eof@Base 9.14~dfsg-0ubuntu1 ramfile_error@Base 9.14~dfsg-0ubuntu1 ramfile_read@Base 9.14~dfsg-0ubuntu1 ramfile_seek@Base 9.14~dfsg-0ubuntu1 ramfile_size@Base 9.14~dfsg-0ubuntu1 ramfile_tell@Base 9.14~dfsg-0ubuntu1 ramfile_write@Base 9.14~dfsg-0ubuntu1 ramfs_blocksfree@Base 9.14~dfsg-0ubuntu1 ramfs_blocksize@Base 9.14~dfsg-0ubuntu1 ramfs_destroy@Base 9.14~dfsg-0ubuntu1 ramfs_enum_end@Base 9.14~dfsg-0ubuntu1 ramfs_enum_new@Base 9.14~dfsg-0ubuntu1 ramfs_enum_next@Base 9.14~dfsg-0ubuntu1 ramfs_error@Base 9.14~dfsg-0ubuntu1 ramfs_new@Base 9.14~dfsg-0ubuntu1 ramfs_open@Base 9.14~dfsg-0ubuntu1 ramfs_rename@Base 9.14~dfsg-0ubuntu1 ramfs_unlink@Base 9.14~dfsg-0ubuntu1 rand_state_initial@Base 8.61.dfsg.1 range_equal@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# raw_create@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# raw_decode@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# raw_destroy@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# raw_init_dec@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# raw_numbytes@Base 9.06~dfsg-0ubuntu1 rc_decrement_cs@Base 9.00~dfsg rc_decrement_only_cs@Base 9.00~dfsg rc_free_pattern_instance@Base 8.61.dfsg.1 rc_free_struct_only@Base 8.61.dfsg.1 rc_free_text_enum@Base 8.61.dfsg.1 rc_increment_cs@Base 9.00~dfsg read_matrix@Base 8.61.dfsg.1 real_param@Base 8.61.dfsg.1 ref_function@Base 8.61.dfsg.1 ref_stack_allow_expansion@Base 8.61.dfsg.1 ref_stack_array_sanitize@Base 9.26~dfsg+0-0ubuntu0.14.04.4 ref_stack_cleanup@Base 8.61.dfsg.1 ref_stack_count@Base 8.61.dfsg.1 ref_stack_counttomark@Base 8.61.dfsg.1 ref_stack_enum_begin@Base 8.61.dfsg.1 ref_stack_enum_next@Base 8.61.dfsg.1 ref_stack_extend@Base 8.61.dfsg.1 ref_stack_free@Base 8.61.dfsg.1 ref_stack_index@Base 8.61.dfsg.1 ref_stack_init@Base 8.61.dfsg.1 ref_stack_pop@Base 8.61.dfsg.1 ref_stack_pop_block@Base 8.61.dfsg.1 ref_stack_push@Base 8.61.dfsg.1 ref_stack_release@Base 8.61.dfsg.1 ref_stack_set_error_codes@Base 8.61.dfsg.1 ref_stack_set_margin@Base 8.61.dfsg.1 ref_stack_set_max_count@Base 8.61.dfsg.1 ref_stack_store@Base 8.61.dfsg.1 ref_stack_store_check@Base 8.61.dfsg.1 ref_struct_clear_marks@Base 8.61.dfsg.1 ref_struct_enum_ptrs@Base 8.61.dfsg.1 ref_struct_reloc_ptrs@Base 8.61.dfsg.1 ref_to_string@Base 8.61.dfsg.1 ref_type_properties@Base 8.61.dfsg.1 refcpy_to_new@Base 8.61.dfsg.1 refcpy_to_old@Base 8.61.dfsg.1 refs_check_space@Base 8.61.dfsg.1 refset_null_new@Base 8.61.dfsg.1 release_colors@Base 8.61.dfsg.1 reloc_bytestring@Base 8.61.dfsg.1 reloc_const_bytestring@Base 8.61.dfsg.1 repack_data@Base 8.61.dfsg.1 rescale_cie_color@Base 9.08~rc1~dfsg-0ubuntu1 rescale_cie_colors@Base 9.14~dfsg-0ubuntu1 reserve_colors@Base 8.61.dfsg.1 restore_check_save@Base 9.25~dfsg+1-0ubuntu0.14.04.1 rgb_cs_to_devn_cm@Base 8.61.dfsg.1 rgb_cs_to_rgb_cm@Base 8.61.dfsg.1 rinkj_byte_stream_close@Base 8.63.dfsg.1 rinkj_byte_stream_file_new@Base 8.63.dfsg.1 rinkj_byte_stream_printf@Base 8.63.dfsg.1 rinkj_byte_stream_puts@Base 8.63.dfsg.1 rinkj_byte_stream_write@Base 8.63.dfsg.1 rinkj_config_get@Base 8.63.dfsg.1 rinkj_config_keyval@Base 8.63.dfsg.1 rinkj_device_init@Base 8.63.dfsg.1 rinkj_device_set@Base 8.63.dfsg.1 rinkj_device_set_param@Base 8.63.dfsg.1 rinkj_device_set_param_int@Base 8.63.dfsg.1 rinkj_device_set_param_string@Base 8.63.dfsg.1 rinkj_device_write@Base 8.63.dfsg.1 rinkj_dither_close@Base 8.63.dfsg.1 rinkj_dither_line@Base 8.63.dfsg.1 rinkj_epson870_new@Base 8.63.dfsg.1 rinkj_screen_eb_new@Base 8.63.dfsg.1 rinkj_screen_eb_set_gamma@Base 8.63.dfsg.1 rinkj_screen_eb_set_lut@Base 8.63.dfsg.1 rinkj_screen_eb_set_scale@Base 8.63.dfsg.1 rinkj_strdup_size@Base 8.63.dfsg.1 rop_get_run_op@Base 9.01~ rop_proc_table@Base 8.61.dfsg.1 rop_release_run_op@Base 9.01~ rop_run@Base 9.01~ rop_run_subbyte@Base 9.01~ rop_set_s_bitmap@Base 9.01~ rop_set_s_bitmap_subbyte@Base 9.01~ rop_set_s_colors@Base 9.01~ rop_set_s_constant@Base 9.01~ rop_set_t_bitmap@Base 9.01~ rop_set_t_bitmap_subbyte@Base 9.01~ rop_set_t_colors@Base 9.01~ rop_set_t_constant@Base 9.01~ rop_usage_table@Base 8.61.dfsg.1 s_1248_init@Base 8.61.dfsg.1 s_12_8_template@Base 8.61.dfsg.1 s_16_8_template@Base 9.08~rc1~dfsg-0ubuntu1 s_1_8_template@Base 8.61.dfsg.1 s_2_8_template@Base 8.61.dfsg.1 s_4_8_template@Base 8.61.dfsg.1 s_8_1_template@Base 8.61.dfsg.1 s_8_2_template@Base 8.61.dfsg.1 s_8_4_template@Base 8.61.dfsg.1 s_A85D_template@Base 8.61.dfsg.1 s_A85E_template@Base 8.61.dfsg.1 s_AXD_template@Base 8.61.dfsg.1 s_AXE_template@Base 8.61.dfsg.1 s_Average_template@Base 8.61.dfsg.1 s_BCPD_template@Base 8.61.dfsg.1 s_BCPE_template@Base 8.61.dfsg.1 s_BTD_template@Base 8.61.dfsg.1 s_BTE_template@Base 8.61.dfsg.1 s_Bicubic_template@Base 9.08~rc1~dfsg-0ubuntu1 s_C2R_init@Base 8.61.dfsg.1 s_C2R_template@Base 8.61.dfsg.1 s_CFD_template@Base 8.61.dfsg.1 s_CFE_template@Base 8.61.dfsg.1 s_CF_get_params@Base 8.61.dfsg.1 s_CF_put_params@Base 8.61.dfsg.1 s_DCTD_get_params@Base 8.61.dfsg.1 s_DCTD_put_params@Base 8.61.dfsg.1 s_DCTD_template@Base 8.61.dfsg.1 s_DCTE_get_params@Base 8.61.dfsg.1 s_DCTE_put_params@Base 8.61.dfsg.1 s_DCTE_template@Base 8.61.dfsg.1 s_DCT_byte_params@Base 8.61.dfsg.1 s_DCT_get_huffman_tables@Base 8.61.dfsg.1 s_DCT_get_params@Base 8.61.dfsg.1 s_DCT_get_quantization_tables@Base 8.61.dfsg.1 s_DCT_put_huffman_tables@Base 8.61.dfsg.1 s_DCT_put_params@Base 8.61.dfsg.1 s_DCT_put_quantization_tables@Base 8.61.dfsg.1 s_DCT_set_defaults@Base 8.61.dfsg.1 s_Downsample_size_out@Base 8.61.dfsg.1 s_IE_template@Base 8.61.dfsg.1 s_IIEncode_template@Base 8.61.dfsg.1 s_IScale_template@Base 8.61.dfsg.1 s_ISpecialDownScale_template@Base 8.61.dfsg.1 s_LZWD_template@Base 8.61.dfsg.1 s_LZWE_template@Base 8.61.dfsg.1 s_LZW_release@Base 8.61.dfsg.1 s_LZW_set_defaults@Base 8.61.dfsg.1 s_MD5C_get_digest@Base 8.61.dfsg.1 s_MD5C_make_stream@Base 8.61.dfsg.1 s_MD5C_template@Base 8.61.dfsg.1 s_MD5E_make_stream@Base 8.61.dfsg.1 s_MD5E_template@Base 8.61.dfsg.1 s_NullD_template@Base 8.61.dfsg.1 s_NullE_template@Base 8.61.dfsg.1 s_PDiffD_template@Base 8.61.dfsg.1 s_PDiffE_template@Base 8.61.dfsg.1 s_PFBD_template@Base 8.61.dfsg.1 s_PNGPD_template@Base 8.61.dfsg.1 s_PNGPE_template@Base 8.61.dfsg.1 s_PSSD_init@Base 8.61.dfsg.1 s_PSSD_template@Base 8.61.dfsg.1 s_PSSE_template@Base 8.61.dfsg.1 s_PWGD_template@Base 9.25~dfsg+1-0ubuntu0.14.04.1 s_RLD_template@Base 8.61.dfsg.1 s_RLE_template@Base 8.61.dfsg.1 s_SFD_template@Base 8.61.dfsg.1 s_SHA256E_make_stream@Base 9.00~dfsg s_SHA256E_template@Base 9.00~dfsg s_Subsample_template@Base 8.61.dfsg.1 s_TBCPD_template@Base 8.61.dfsg.1 s_TBCPE_template@Base 8.61.dfsg.1 s__image_colors_template@Base 8.61.dfsg.1 s_add_filter@Base 8.61.dfsg.1 s_aes_set_key@Base 8.64~dfsg s_aes_set_padding@Base 9.00~dfsg s_aes_template@Base 8.64~dfsg s_alloc@Base 8.61.dfsg.1 s_alloc_param_printer@Base 8.61.dfsg.1 s_alloc_position_stream@Base 8.61.dfsg.1 s_alloc_state@Base 8.61.dfsg.1 s_arcfour_process_buffer@Base 8.61.dfsg.1 s_arcfour_set_key@Base 8.61.dfsg.1 s_arcfour_template@Base 8.61.dfsg.1 s_close_disable@Base 8.61.dfsg.1 s_close_filters@Base 8.61.dfsg.1 s_compr_chooser__get_choice@Base 8.61.dfsg.1 s_compr_chooser_set_dimensions@Base 8.61.dfsg.1 s_compr_chooser_template@Base 8.61.dfsg.1 s_disable@Base 8.61.dfsg.1 s_exD_template@Base 8.61.dfsg.1 s_exE_template@Base 8.61.dfsg.1 s_filter_close@Base 8.61.dfsg.1 s_filter_read_procs@Base 8.61.dfsg.1 s_filter_write_flush@Base 8.61.dfsg.1 s_filter_write_procs@Base 8.61.dfsg.1 s_free_param_printer@Base 8.61.dfsg.1 s_handle_read_exception@Base 8.61.dfsg.1 s_handle_write_exception@Base 8.61.dfsg.1 s_hex_process@Base 8.61.dfsg.1 s_image_colors_set_color_space@Base 8.61.dfsg.1 s_image_colors_set_dimensions@Base 8.61.dfsg.1 s_image_colors_set_mask_colors@Base 8.61.dfsg.1 s_imscale_template@Base 8.61.dfsg.1 s_init@Base 8.61.dfsg.1 s_init_filter@Base 8.61.dfsg.1 s_init_param_printer@Base 8.61.dfsg.1 s_init_state@Base 8.61.dfsg.1 s_is_proc@Base 8.61.dfsg.1 s_jbig2decode_finalize@Base 9.18~dfsg~0-0ubuntu1 s_jbig2decode_free_global_data@Base 8.61.dfsg.1 s_jbig2decode_make_global_data@Base 8.61.dfsg.1 s_jbig2decode_set_global_data@Base 8.61.dfsg.1 s_jbig2decode_template@Base 8.61.dfsg.1 s_jpxd_template@Base 9.14~dfsg-0ubuntu1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# s_new_image_colors_set_color_space@Base 9.08~rc1~dfsg-0ubuntu1 s_no_report_error@Base 8.61.dfsg.1 s_process_read_buf@Base 8.61.dfsg.1 s_process_write_buf@Base 8.61.dfsg.1 s_release_param_printer@Base 8.61.dfsg.1 s_std_close@Base 8.61.dfsg.1 s_std_init@Base 8.61.dfsg.1 s_std_noavailable@Base 8.61.dfsg.1 s_std_noseek@Base 8.61.dfsg.1 s_std_null@Base 8.61.dfsg.1 s_std_read_flush@Base 8.61.dfsg.1 s_std_read_reset@Base 8.61.dfsg.1 s_std_switch_mode@Base 8.61.dfsg.1 s_std_write_flush@Base 8.61.dfsg.1 s_std_write_reset@Base 8.61.dfsg.1 s_write_ps_string@Base 8.61.dfsg.1 s_zlibD_template@Base 8.61.dfsg.1 s_zlibE_template@Base 8.61.dfsg.1 s_zlib_alloc@Base 8.61.dfsg.1 s_zlib_alloc_dynamic_state@Base 8.61.dfsg.1 s_zlib_free@Base 8.61.dfsg.1 s_zlib_free_dynamic_state@Base 8.61.dfsg.1 s_zlib_set_defaults@Base 8.61.dfsg.1 sample_device_crd_get_params@Base 8.61.dfsg.1 sample_unpack_12@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# sample_unpack_12_proc@Base 8.61.dfsg.1 sample_unpack_16@Base 9.25~dfsg+1-0ubuntu0.14.04.1 sample_unpack_16_proc@Base 8.61.dfsg.1 sample_unpack_1@Base 8.61.dfsg.1 sample_unpack_1_interleaved@Base 8.61.dfsg.1 sample_unpack_2@Base 8.61.dfsg.1 sample_unpack_2_interleaved@Base 8.61.dfsg.1 sample_unpack_4@Base 8.61.dfsg.1 sample_unpack_4_interleaved@Base 8.61.dfsg.1 sample_unpack_8@Base 8.61.dfsg.1 sample_unpack_8_interleaved@Base 8.61.dfsg.1 sample_unpack_copy@Base 8.61.dfsg.1 sample_unpackicc_16@Base 9.25~dfsg+1-0ubuntu0.14.04.1 sample_unpackicc_16_proc@Base 9.00~dfsg san_open@Base 8.61.dfsg.1 sappend_file@Base 8.61.dfsg.1 savailable@Base 8.61.dfsg.1 scan_binary_token@Base 8.61.dfsg.1 scan_char_array@Base 8.61.dfsg.1 #MISSING: 9.01~dfsg-1# scan_comment_proc@Base 8.61.dfsg.1 #MISSING: 9.01~dfsg-1# scan_dsc_proc@Base 8.61.dfsg.1 #MISSING: 9.01~dfsg-1# scan_handle_refill@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# scan_map@Base 8.61.dfsg.1 scan_number@Base 8.61.dfsg.1 #MISSING: 9.01~dfsg-1# scan_string_token_options@Base 8.61.dfsg.1 #MISSING: 9.01~dfsg-1# scan_token@Base 8.61.dfsg.1 #MISSING: 9.01~dfsg-1# scanner_error_object@Base 8.61.dfsg.1 #MISSING: 9.01~dfsg-1# scanner_init_options@Base 8.61.dfsg.1 #MISSING: 9.01~dfsg-1# scanner_init_stream_options@Base 8.61.dfsg.1 scfdtab_dummy@Base 8.61.dfsg.1 scfetab_dummy@Base 8.61.dfsg.1 sclose@Base 8.61.dfsg.1 sdecode_float@Base 8.61.dfsg.1 sdecode_number@Base 8.61.dfsg.1 sdecodeint32@Base 8.61.dfsg.6 sdecodeshort@Base 8.61.dfsg.1 sdecodeushort@Base 8.61.dfsg.1 select_medium@Base 8.61.dfsg.1 send_pdf14trans@Base 8.61.dfsg.1 set_char_width@Base 8.61.dfsg.1 set_linear_color_bits_mask_shift@Base 8.61.dfsg.1 set_user_params@Base 8.61.dfsg.1 set_vm_reclaim@Base 8.61.dfsg.1 set_vm_threshold@Base 8.61.dfsg.1 seticc@Base 8.64~dfsg seticc_cal@Base 9.00~dfsg seticc_lab@Base 9.00~dfsg setup_device_and_mem_for_thread@Base 9.08~rc1~dfsg-0ubuntu1 sfclose@Base 8.61.dfsg.1 sfeof@Base 8.61.dfsg.1 sferror@Base 8.61.dfsg.1 sfgetc@Base 8.61.dfsg.1 sfilename@Base 8.61.dfsg.1 sfopen@Base 8.61.dfsg.1 sfread@Base 8.61.dfsg.1 sfseek@Base 8.61.dfsg.1 sftell@Base 8.61.dfsg.1 sget_matrix@Base 8.61.dfsg.1 sget_variable_uint@Base 8.61.dfsg.1 sgets@Base 8.61.dfsg.1 shade_fill_path@Base 8.61.dfsg.1 shade_init_fill_state@Base 8.61.dfsg.1 shade_next_color@Base 8.61.dfsg.1 shade_next_coords@Base 8.61.dfsg.1 shade_next_flag@Base 8.61.dfsg.1 shade_next_init@Base 8.61.dfsg.1 shade_next_vertex@Base 8.61.dfsg.1 sjpxd_create@Base 9.25~dfsg+1-0ubuntu0.14.04.1 sjpxd_destroy@Base 9.25~dfsg+1-0ubuntu0.14.04.1 smask_blend@Base 9.01~ smask_copy@Base 9.00~dfsg smask_icc@Base 9.00~dfsg smask_luminosity_mapping@Base 9.00~dfsg spec_op_defs@Base 9.15~dfsg-0ubuntu1 spgetcc@Base 8.61.dfsg.1 spputc@Base 8.61.dfsg.1 spseek@Base 8.61.dfsg.1 spskip@Base 8.61.dfsg.1 sput_matrix@Base 8.61.dfsg.1 sput_variable_uint@Base 8.61.dfsg.1 sputs@Base 8.61.dfsg.1 sread_file@Base 8.61.dfsg.1 sread_proc@Base 8.61.dfsg.1 sread_string@Base 8.61.dfsg.1 sread_string_reusable@Base 8.61.dfsg.1 sread_subfile@Base 8.61.dfsg.1 sreadline@Base 8.61.dfsg.1 srewind@Base 8.61.dfsg.1 ssetfilename@Base 8.61.dfsg.1 sswitch@Base 8.61.dfsg.1 st_DCT_state@Base 8.61.dfsg.1 st_IE_state@Base 8.61.dfsg.1 st_LZW_state@Base 8.61.dfsg.1 st_TExecution_Context@Base 8.61.dfsg.1 st_TFace@Base 8.61.dfsg.1 st_TInstance@Base 8.61.dfsg.1 st_base_color_space@Base 8.61.dfsg.1 st_bytes@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# st_chunk@Base 8.61.dfsg.1 st_cid_system_info@Base 8.61.dfsg.1 st_cid_system_info_element@Base 8.61.dfsg.1 st_cie_common@Base 8.61.dfsg.1 st_cie_common_elements_t@Base 8.61.dfsg.1 st_cie_render1@Base 8.61.dfsg.1 st_client_color@Base 8.61.dfsg.1 st_clip_list@Base 8.61.dfsg.1 st_clip_path@Base 8.61.dfsg.1 st_clip_rect@Base 8.61.dfsg.1 st_clump@Base 9.25~dfsg+1-0ubuntu0.14.04.1 st_cmap@Base 8.61.dfsg.1 st_cmap_ToUnicode@Base 9.26~dfsg+0-0ubuntu0.14.04.1 st_cmap_adobe1@Base 8.61.dfsg.1 st_cmap_identity@Base 9.26~dfsg+0-0ubuntu0.14.04.1 st_cmap_lookup_range@Base 8.61.dfsg.1 st_cmap_lookup_range_element@Base 8.61.dfsg.1 st_cmap_tt_16bit_format4@Base 9.26~dfsg+0-0ubuntu0.14.04.1 st_color_space@Base 8.61.dfsg.1 st_const_string_element@Base 8.61.dfsg.1 st_context_state@Base 8.61.dfsg.1 st_data_source@Base 8.61.dfsg.1 st_dc_ht_binary@Base 8.61.dfsg.1 st_device@Base 8.61.dfsg.1 st_device_bbox@Base 8.61.dfsg.1 st_device_clip@Base 8.61.dfsg.1 st_device_clist@Base 8.61.dfsg.1 st_device_color@Base 8.61.dfsg.1 st_device_cpath_accum@Base 8.61.dfsg.1 st_device_display@Base 8.61.dfsg.1 st_device_escv@Base 8.61.dfsg.1 st_device_forward@Base 8.61.dfsg.1 st_device_halftone@Base 8.61.dfsg.1 st_device_lips4v@Base 8.61.dfsg.1 st_device_mask_clip@Base 8.61.dfsg.1 st_device_memory@Base 8.61.dfsg.1 st_device_null@Base 8.61.dfsg.1 st_device_opvp@Base 8.61.dfsg.1 st_device_pclxl@Base 8.61.dfsg.1 st_device_plane_extract@Base 8.61.dfsg.1 st_device_printer@Base 8.61.dfsg.1 st_device_psdf@Base 8.61.dfsg.1 st_device_spot_analyzer@Base 8.61.dfsg.1 #MISSING: 9.14~dfsg-0ubuntu1# st_device_svg@Base 9.07~dfsg-0ubuntu1 st_device_vector@Base 8.61.dfsg.1 st_device_xps@Base 9.08~rc1~dfsg-0ubuntu1 st_dict_stack@Base 8.61.dfsg.1 st_epo_device@Base 9.25~dfsg+1-0ubuntu0.14.04.1 st_exec_stack@Base 8.61.dfsg.1 st_flp_device@Base 9.18~dfsg~0-0ubuntu1 st_font_data@Base 8.61.dfsg.1 st_free@Base 8.61.dfsg.1 st_function@Base 8.61.dfsg.1 st_gc_root_t@Base 8.61.dfsg.1 #MISSING: 9.14~dfsg-0ubuntu1# st_glyph_cache_elem@Base 8.61.dfsg.1 st_glyph_data@Base 8.61.dfsg.1 st_gs_bitmap@Base 8.61.dfsg.1 st_gs_data_image@Base 8.61.dfsg.1 st_gs_depth_bitmap@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# st_gs_device_filter@Base 8.61.dfsg.1 st_gs_dual_memory@Base 8.61.dfsg.1 st_gs_font@Base 8.61.dfsg.1 st_gs_font_base@Base 8.61.dfsg.1 st_gs_font_cid0@Base 8.61.dfsg.1 st_gs_font_cid1@Base 8.61.dfsg.1 st_gs_font_cid2@Base 8.61.dfsg.1 st_gs_font_cid_data@Base 8.61.dfsg.1 st_gs_font_info@Base 8.61.dfsg.1 st_gs_font_ptr_element@Base 8.61.dfsg.1 st_gs_font_type0@Base 8.61.dfsg.1 st_gs_font_type1@Base 8.61.dfsg.1 st_gs_font_type1_ptr_element@Base 8.61.dfsg.1 st_gs_font_type42@Base 8.61.dfsg.1 st_gs_gstate@Base 9.25~dfsg+1-0ubuntu0.14.04.1 st_gs_image1@Base 8.61.dfsg.1 st_gs_image_common@Base 8.61.dfsg.1 st_gs_notify_list@Base 8.61.dfsg.1 st_gs_pixel_image@Base 8.61.dfsg.1 st_gs_show_enum@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# st_gs_state@Base 8.61.dfsg.1 st_gs_text_enum@Base 8.61.dfsg.1 st_gs_text_params@Base 8.61.dfsg.1 st_gs_tile_bitmap@Base 8.61.dfsg.1 st_gs_tile_depth_bitmap@Base 8.61.dfsg.1 st_gs_type1_state@Base 8.61.dfsg.1 st_gx_devn_prn_device@Base 9.14~dfsg-0ubuntu1 st_gx_image_enum_common@Base 8.61.dfsg.1 st_gx_strip_bitmap@Base 8.61.dfsg.1 st_gx_ttfReader@Base 8.61.dfsg.1 st_halftone@Base 8.61.dfsg.1 st_halftone_component@Base 8.61.dfsg.1 st_ht_component_element@Base 8.61.dfsg.1 st_ht_order@Base 8.61.dfsg.1 st_ht_order_component_element@Base 8.61.dfsg.1 st_igstate_obj@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# st_imager_state@Base 8.61.dfsg.1 st_io_device@Base 9.25~dfsg+1-0ubuntu0.14.04.1 st_jpeg_compress_data@Base 8.61.dfsg.1 st_obj_filter_device@Base 9.18~dfsg~0-0ubuntu1 st_op_stack@Base 8.61.dfsg.1 st_path@Base 8.61.dfsg.1 st_path_enum@Base 8.61.dfsg.1 st_pattern1_instance@Base 9.26~dfsg+0-0ubuntu0.14.04.1 st_pattern2_instance@Base 9.26~dfsg+0-0ubuntu0.14.04.1 st_pattern_instance@Base 8.61.dfsg.1 st_pattern_template@Base 8.61.dfsg.1 st_pcl_mono_palette_device@Base 9.18~dfsg~0-0ubuntu1 st_pdf14_accum@Base 9.14~dfsg-0ubuntu1 st_pdf_char_proc@Base 8.61.dfsg.1 st_pdf_color_space@Base 8.61.dfsg.1 st_pdf_font_descriptor@Base 8.61.dfsg.1 st_pdf_font_resource@Base 8.61.dfsg.1 st_pdf_image_writer@Base 8.61.dfsg.1 st_pdf_lcvd_t@Base 8.61.dfsg.1 st_pdf_resource@Base 8.61.dfsg.1 st_pdf_sub_font_descriptor@Base 8.61.dfsg.1 st_psdf_binary_writer@Base 8.61.dfsg.1 st_ref_memory@Base 8.61.dfsg.1 st_ref_stack@Base 8.61.dfsg.1 st_refs@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# st_scanner_state@Base 8.61.dfsg.1 st_scanner_state_dynamic@Base 9.00~dfsg #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# st_section@Base 8.61.dfsg.1 st_stream@Base 8.61.dfsg.1 st_stream_state@Base 8.61.dfsg.1 st_subst_CID_on_WMode@Base 8.64~dfsg st_transfer_map@Base 8.61.dfsg.1 st_ttfFont@Base 8.61.dfsg.1 st_ttfInterpreter@Base 8.61.dfsg.1 st_vector_image_enum@Base 8.61.dfsg.1 st_zlib_state@Base 8.61.dfsg.1 stack_param_list_read@Base 8.61.dfsg.1 stack_param_list_write@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# start_margin_set@Base 8.61.dfsg.1 stc_fs2@Base 8.61.dfsg.1 stc_fs@Base 8.61.dfsg.1 stc_fscmyk@Base 8.61.dfsg.1 stc_gsmono@Base 8.61.dfsg.1 stc_gsrgb@Base 8.61.dfsg.1 stell@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# str2tag@Base 8.61.dfsg.1 strFeeder@Base 8.61.dfsg.1 strInk@Base 8.61.dfsg.1 strPrinterType@Base 8.61.dfsg.1 strQuality@Base 8.61.dfsg.1 stream_dct_end_passthrough@Base 9.26~dfsg+0-0ubuntu0.14.04.1 stream_move@Base 8.61.dfsg.1 stream_puts@Base 8.61.dfsg.1 stream_write@Base 8.61.dfsg.1 string_array_access_proc@Base 8.61.dfsg.1 string_match@Base 8.61.dfsg.1 string_match_params_default@Base 8.61.dfsg.1 string_to_ref@Base 8.61.dfsg.1 sungetc@Base 8.61.dfsg.1 swrite_file@Base 8.61.dfsg.1 swrite_position_only@Base 8.61.dfsg.1 swrite_proc@Base 8.61.dfsg.1 swrite_string@Base 8.61.dfsg.1 sync_text_state@Base 9.05~ #MISSING: 9.08~rc1~dfsg-0ubuntu1# t1_create@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# t1_decode_cblks@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# t1_destroy@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# t1_encode_cblks@Base 9.06~dfsg-0ubuntu1 t1_hinter__closepath@Base 8.61.dfsg.1 t1_hinter__dotsection@Base 8.61.dfsg.1 t1_hinter__drop_hints@Base 8.61.dfsg.1 t1_hinter__end_subglyph@Base 8.61.dfsg.1 t1_hinter__endglyph@Base 8.61.dfsg.1 t1_hinter__fix_contour_signs@Base 8.61.dfsg.1 t1_hinter__flex_beg@Base 8.61.dfsg.1 t1_hinter__flex_end@Base 8.61.dfsg.1 t1_hinter__flex_point@Base 8.61.dfsg.1 t1_hinter__hint_mask@Base 8.61.dfsg.1 t1_hinter__hstem3@Base 8.61.dfsg.1 t1_hinter__hstem@Base 8.61.dfsg.1 t1_hinter__init@Base 8.61.dfsg.1 t1_hinter__is_x_fitting@Base 8.61.dfsg.1 t1_hinter__overall_hstem@Base 8.61.dfsg.1 t1_hinter__rcurveto@Base 8.61.dfsg.1 t1_hinter__rlineto@Base 8.61.dfsg.1 t1_hinter__rmoveto@Base 8.61.dfsg.1 t1_hinter__sbw@Base 8.61.dfsg.1 t1_hinter__sbw_seac@Base 8.61.dfsg.1 t1_hinter__set_font42_data@Base 8.61.dfsg.1 t1_hinter__set_font_data@Base 8.61.dfsg.1 t1_hinter__set_mapping@Base 8.61.dfsg.1 t1_hinter__setcurrentpoint@Base 8.61.dfsg.1 t1_hinter__vstem3@Base 8.61.dfsg.1 t1_hinter__vstem@Base 8.61.dfsg.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# t2_create@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# t2_decode_packets@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# t2_destroy@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# t2_encode_packets@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.00~dfsg-1# tag2str@Base 8.61.dfsg.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tcd_create@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tcd_decode_tile@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tcd_destroy@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tcd_dump@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tcd_encode_tile@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tcd_free_decode@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tcd_free_decode_tile@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tcd_free_encode@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tcd_init_encode@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tcd_makelayer@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tcd_makelayer_fixed@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tcd_malloc_decode@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tcd_malloc_decode_tile@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tcd_malloc_encode@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tcd_rateallocate@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tcd_rateallocate_fixed@Base 9.06~dfsg-0ubuntu1 teardown_device_and_mem_for_thread@Base 9.08~rc1~dfsg-0ubuntu1 term_patch_fill_state@Base 8.61.dfsg.1 text_data_free@Base 9.06~dfsg~20120802-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tgt_create@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tgt_decode@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tgt_destroy@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tgt_encode@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tgt_reset@Base 9.06~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tgt_setvalue@Base 9.06~dfsg-0ubuntu1 tiff_close@Base 8.71~dfsg tiff_compression_allowed@Base 8.71~dfsg tiff_compression_id@Base 8.71~dfsg tiff_compression_param_string@Base 8.71~dfsg tiff_downscale_and_print_page@Base 9.01~ tiff_from_filep@Base 8.71~dfsg tiff_get_params@Base 8.64~dfsg-3~ tiff_get_params_downscale@Base 9.01~ tiff_get_params_downscale_cmyk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 tiff_get_params_downscale_cmyk_ets@Base 9.25~dfsg+1-0ubuntu0.14.04.1 tiff_open@Base 8.71~dfsg tiff_open_s@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tiff_output_page@Base 8.71~dfsg tiff_print_page@Base 8.71~dfsg tiff_put_params@Base 8.64~dfsg-3~ tiff_put_params_downscale@Base 9.01~ tiff_put_params_downscale_cmyk@Base 9.25~dfsg+1-0ubuntu0.14.04.1 tiff_put_params_downscale_cmyk_ets@Base 9.25~dfsg+1-0ubuntu0.14.04.1 tiff_set_compression@Base 8.71~dfsg tiff_set_fields_for_printer@Base 8.71~dfsg tiff_set_handlers@Base 9.07~dfsg-0ubuntu1 tile_clip_free@Base 9.08~rc1~dfsg-0ubuntu1 tile_clip_initialize@Base 8.61.dfsg.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# tile_clip_release@Base 9.06~dfsg~20120802-0ubuntu1 tile_clip_set_phase@Base 8.61.dfsg.1 tile_rect_trans_blend@Base 8.70~ tile_rect_trans_simple@Base 8.70~ tmmat@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_dprintf@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_dprintfv@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_dscanf@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_dscanfv@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_fpclassify@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_fpclassify_and_signbit@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_fprintf@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_fprintfv@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_fscanf@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_fscanfv@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_isfinite@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_isinf@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_isnan@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_locale_set_decimal_point@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_locale_set_grouping@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_locale_set_thousand_separator@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_nan@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_ninf@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_nzero@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_pinf@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_print_pointer@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_printf@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_printfv@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_scanf@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_scanfv@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_signbit@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_snprintf@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_snprintfv@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_sprintf@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_sprintfv@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_sscanf@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_sscanfv@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_strerror@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_to_float@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_to_long_double@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_vdprintf@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_vdscanf@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_vfprintf@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_vfscanf@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_vprintf@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_vscanf@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_vsnprintf@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_vsprintf@Base 9.08~rc1~dfsg-0ubuntu1 #MISSING: 9.18~dfsg~0-0ubuntu1# trio_vsscanf@Base 9.08~rc1~dfsg-0ubuntu1 ttMulDiv@Base 8.61.dfsg.1 ttfFont__Open@Base 8.61.dfsg.1 ttfFont__Open_aux@Base 8.61.dfsg.1 ttfFont__create@Base 8.61.dfsg.1 ttfFont__destroy@Base 8.61.dfsg.1 ttfFont__finit@Base 8.61.dfsg.1 ttfFont__init@Base 8.61.dfsg.1 ttfInterpreter__obtain@Base 8.61.dfsg.1 ttfInterpreter__release@Base 8.61.dfsg.1 ttfOutliner__DrawGlyphOutline@Base 8.61.dfsg.1 ttfOutliner__Outline@Base 8.61.dfsg.1 ttfOutliner__init@Base 8.61.dfsg.1 ttfReader__Byte@Base 8.61.dfsg.1 ttfReader__Int@Base 8.61.dfsg.1 ttfReader__Short@Base 8.61.dfsg.1 ttfReader__SignedByte@Base 8.61.dfsg.1 ttfReader__UInt@Base 8.61.dfsg.1 ttfReader__UShort@Base 8.61.dfsg.1 tx_next_index@Base 8.61.dfsg.1 type1_cis_get_metrics@Base 8.61.dfsg.1 type2_font_params@Base 8.61.dfsg.1 uid_copy@Base 8.61.dfsg.1 uid_equal@Base 8.61.dfsg.1 update_spot_equivalent_cmyk_colors@Base 8.61.dfsg.1 using_alt_color_space@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# vd_flags@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# vd_impl_bar@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# vd_impl_circle@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# vd_impl_curve@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# vd_impl_curveto@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# vd_impl_lineto@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# vd_impl_lineto_multi@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# vd_impl_moveto@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# vd_impl_pixel@Base 8.62.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# vd_impl_quad@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# vd_impl_rect@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# vd_impl_round@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# vd_impl_square@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# vd_impl_text@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# vd_setflag@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# vd_trace0@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# vd_trace1@Base 8.61.dfsg.1 vector_equal@Base 9.25~dfsg+1-0ubuntu0.14.04.1 wedge_vertex_list_elem_buffer_alloc@Base 8.61.dfsg.1 wedge_vertex_list_elem_buffer_free@Base 8.61.dfsg.1 width@Base 8.61.dfsg.1 write_bmp_header@Base 8.61.dfsg.1 write_bmp_separated_header@Base 8.61.dfsg.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# write_cidx@Base 9.07~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# write_cptr@Base 9.07~dfsg-0ubuntu1 #MISSING: 9.05~dfsg-1# write_default@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# write_entry@Base 8.61.dfsg.1 write_font_resources@Base 9.06~dfsg~20120802-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# write_mainmhix@Base 9.07~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# write_manf@Base 9.07~dfsg-0ubuntu1 write_matrix_in@Base 8.61.dfsg.1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# write_phix@Base 9.07~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# write_phixfaix@Base 9.07~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# write_ppix@Base 9.07~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# write_ppixfaix@Base 9.07~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# write_thix@Base 9.07~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# write_tilemhix@Base 9.07~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# write_tpix@Base 9.07~dfsg-0ubuntu1 #MISSING: 9.08~rc1~dfsg-0ubuntu1# write_tpixfaix@Base 9.07~dfsg-0ubuntu1 #MISSING: 9.05~dfsg-1# write_uchar@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# write_uint@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# write_ulong@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# write_ulonglong@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# write_ushort@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# wts_get_samples@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# wts_pick_cell_size@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# wts_screen_from_enum@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# wts_size@Base 8.61.dfsg.1 #MISSING: 9.05~dfsg-1# wts_sort_cell@Base 8.61.dfsg.1 xps_fixed_state@Base 9.08~rc1~dfsg-0ubuntu1 z1_data_procs@Base 8.61.dfsg.1 z1_glyph_info@Base 8.61.dfsg.1 z1_glyph_info_generic@Base 8.61.dfsg.1 z1_set_cache@Base 8.61.dfsg.1 z2copy@Base 8.61.dfsg.1 zSFD@Base 8.61.dfsg.1 z_check_file_permissions@Base 9.25~dfsg+1-0ubuntu0.14.04.1 zabs@Base 8.61.dfsg.1 zadd@Base 8.61.dfsg.1 zalg_op_defs@Base 8.61.dfsg.1 zand@Base 8.61.dfsg.1 zarc@Base 8.61.dfsg.1 zarcn@Base 8.61.dfsg.1 zarct@Base 8.61.dfsg.1 zarith_op_defs@Base 8.61.dfsg.1 zarray@Base 8.61.dfsg.1 zarray_op_defs@Base 8.61.dfsg.1 zatan@Base 8.61.dfsg.1 zbase_make_font@Base 8.61.dfsg.1 zbegin@Base 8.61.dfsg.1 zbfont_op_defs@Base 8.61.dfsg.1 zbitshift@Base 8.61.dfsg.1 zbseq_l2_op_defs@Base 8.61.dfsg.1 zceiling@Base 8.61.dfsg.1 zcf_setup@Base 8.61.dfsg.1 zcfont_op_defs@Base 8.61.dfsg.1 zchar1_glyph_outline@Base 8.61.dfsg.1 zchar1_op_defs@Base 8.61.dfsg.1 zchar2_op_defs@Base 8.61.dfsg.1 zchar32_op_defs@Base 8.61.dfsg.1 zchar42_op_defs@Base 8.61.dfsg.1 zchar42_set_cache@Base 8.61.dfsg.1 zchar_a_op_defs@Base 8.61.dfsg.1 zchar_b_op_defs@Base 8.61.dfsg.1 zchar_charstring_data@Base 8.61.dfsg.1 zchar_enumerate_glyph@Base 8.61.dfsg.1 zchar_exec_char_proc@Base 8.61.dfsg.1 zchar_get_CDevProc@Base 8.61.dfsg.1 zchar_get_metrics2@Base 8.61.dfsg.1 zchar_get_metrics@Base 8.61.dfsg.1 zchar_set_cache@Base 8.61.dfsg.1 zchar_show_width_only@Base 8.61.dfsg.1 zcharstring_outline@Base 8.61.dfsg.1 zcharx_op_defs@Base 8.61.dfsg.1 #MISSING: 8.64~dfsg# zcie_l2_op_defs@Base 8.61.dfsg.1 zcleartomark@Base 8.61.dfsg.1 zclosefile@Base 8.61.dfsg.1 zclosepath@Base 8.61.dfsg.1 zcolor1_op_defs@Base 8.61.dfsg.1 zcolor2_l2_op_defs@Base 8.61.dfsg.1 zcolor3_l3_op_defs@Base 8.61.dfsg.1 zcolor_ext_op_defs@Base 8.64~dfsg zcolor_op_defs@Base 8.61.dfsg.1 zcolor_pdf_op_defs@Base 9.25~dfsg+1-0ubuntu0.14.04.1 zcolor_remap_color@Base 8.61.dfsg.1 zcolor_remap_one@Base 8.61.dfsg.1 zcolor_remap_one_estack@Base 8.61.dfsg.1 zcolor_remap_one_finish@Base 8.61.dfsg.1 zcolor_remap_one_ostack@Base 8.61.dfsg.1 zcolor_remap_one_signed_finish@Base 8.61.dfsg.1 zcolor_reset_transfer@Base 8.61.dfsg.1 zcontext1_op_defs@Base 8.61.dfsg.1 zcontext2_op_defs@Base 8.61.dfsg.1 zcontrol1_op_defs@Base 8.61.dfsg.1 zcontrol2_op_defs@Base 8.61.dfsg.1 zcontrol3_op_defs@Base 8.61.dfsg.1 zcopy@Base 8.61.dfsg.1 zcopy_dict@Base 8.61.dfsg.1 zcopy_gstate@Base 8.61.dfsg.1 zcos@Base 8.61.dfsg.1 zcrd_l2_op_defs@Base 8.61.dfsg.1 zcs_begin_map@Base 8.61.dfsg.1 #MISSING: 8.64~dfsg# zcsdevn_op_defs@Base 8.61.dfsg.1 #MISSING: 8.64~dfsg# zcsindex_l2_op_defs@Base 8.61.dfsg.1 #MISSING: 8.64~dfsg# zcspixel_op_defs@Base 8.61.dfsg.1 zcssepr_l2_op_defs@Base 8.61.dfsg.1 zcurrentdevice@Base 8.61.dfsg.1 zcurrentgstate@Base 8.61.dfsg.1 zcurveto@Base 8.61.dfsg.1 zcvi@Base 8.61.dfsg.1 zcvr@Base 8.61.dfsg.1 zcvx@Base 8.61.dfsg.1 zdef@Base 8.61.dfsg.1 zdefault_make_font@Base 8.61.dfsg.1 zdevice2_l2_op_defs@Base 8.61.dfsg.1 zdevice_ext_op_defs@Base 9.15~dfsg-0ubuntu1 zdevice_op_defs@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# zdfilter_op_defs@Base 8.61.dfsg.1 zdict1_op_defs@Base 8.61.dfsg.1 zdict2_op_defs@Base 8.61.dfsg.1 zdict@Base 8.61.dfsg.1 zdiv@Base 8.61.dfsg.1 zdpnext_op_defs@Base 8.61.dfsg.1 zdps1_l2_op_defs@Base 8.61.dfsg.1 zdps_op_defs@Base 8.61.dfsg.1 zdscpars_op_defs@Base 8.61.dfsg.1 zdup@Base 8.61.dfsg.1 zend@Base 8.61.dfsg.1 zeq@Base 8.61.dfsg.1 zexch@Base 8.61.dfsg.1 zexec@Base 8.61.dfsg.1 zexecfunction@Base 8.61.dfsg.1 zexp@Base 8.61.dfsg.1 zfaes_op_defs@Base 8.64~dfsg zfapi_op_defs@Base 8.61.dfsg.1 zfarc4_op_defs@Base 8.61.dfsg.1 zfbcp_op_defs@Base 8.61.dfsg.1 zfcid0_op_defs@Base 8.61.dfsg.1 zfcid1_op_defs@Base 8.61.dfsg.1 zfcmap_op_defs@Base 8.61.dfsg.1 zfdctd_op_defs@Base 8.61.dfsg.1 zfdcte_op_defs@Base 8.61.dfsg.1 zfdecode_op_defs@Base 8.61.dfsg.1 zfile1_op_defs@Base 8.61.dfsg.1 zfile@Base 8.61.dfsg.1 zfile_op_defs@Base 8.61.dfsg.1 zfileio1_op_defs@Base 8.61.dfsg.1 zfileio2_op_defs@Base 8.61.dfsg.1 zfilelineedit@Base 8.61.dfsg.1 zfilter2_op_defs@Base 8.61.dfsg.1 zfilter_op_defs@Base 8.61.dfsg.1 zfimscale_op_defs@Base 8.61.dfsg.1 zfjbig2_op_defs@Base 8.61.dfsg.1 zfjpx_op_defs@Base 9.14~dfsg-0ubuntu1 zfloor@Base 8.61.dfsg.1 zflush@Base 8.61.dfsg.1 zflushpage@Base 8.61.dfsg.1 zfmd5_op_defs@Base 8.61.dfsg.1 zfont0_op_defs@Base 8.61.dfsg.1 zfont1_op_defs@Base 8.61.dfsg.1 zfont2_op_defs@Base 8.61.dfsg.1 zfont32_op_defs@Base 8.61.dfsg.1 zfont42_op_defs@Base 8.61.dfsg.1 zfont_encode_char@Base 8.61.dfsg.1 zfont_get_to_unicode_map@Base 8.61.dfsg.1 zfont_info@Base 8.61.dfsg.1 zfont_mark_glyph_name@Base 8.61.dfsg.1 zfont_op_defs@Base 8.61.dfsg.1 zfontenum_op_defs@Base 8.61.dfsg.1 zfor@Base 8.61.dfsg.1 zfor_samples@Base 8.61.dfsg.1 zform_op_defs@Base 9.14~dfsg-0ubuntu1 zfproc_op_defs@Base 8.61.dfsg.1 zfrsd_op_defs@Base 8.61.dfsg.1 zfsample_op_defs@Base 8.61.dfsg.1 zfsha2_op_defs@Base 9.00~dfsg zfunc_op_defs@Base 8.61.dfsg.1 zfzlib_op_defs@Base 8.61.dfsg.1 zge@Base 8.61.dfsg.1 zgeneric_op_defs@Base 8.61.dfsg.1 zget_stderr@Base 8.61.dfsg.1 zget_stdin@Base 8.61.dfsg.1 zget_stdout@Base 8.61.dfsg.1 zgrestore@Base 8.61.dfsg.1 zgrestoreall@Base 8.61.dfsg.1 zgsave@Base 8.61.dfsg.1 zgstate1_op_defs@Base 8.61.dfsg.1 zgstate2_op_defs@Base 8.61.dfsg.1 zgstate3_op_defs@Base 8.61.dfsg.1 zgstate4_op_defs@Base 9.25~dfsg+1-0ubuntu0.14.04.1 zgstate@Base 8.61.dfsg.1 zgt@Base 8.61.dfsg.1 zht1_op_defs@Base 8.61.dfsg.1 zht2_l2_op_defs@Base 8.61.dfsg.1 zht_op_defs@Base 8.61.dfsg.1 zicc_ll3_op_defs@Base 8.61.dfsg.1 zidiv@Base 8.61.dfsg.1 zif@Base 8.61.dfsg.1 zifelse@Base 8.61.dfsg.1 zimage3_op_defs@Base 8.61.dfsg.1 zimage_op_defs@Base 8.61.dfsg.1 zimage_setup@Base 8.61.dfsg.1 zindex@Base 8.61.dfsg.1 ziodev2_l2_op_defs@Base 8.61.dfsg.1 ziodev_op_defs@Base 8.61.dfsg.1 zis_stdin@Base 8.61.dfsg.1 zle@Base 8.61.dfsg.1 zlibfile@Base 8.61.dfsg.1 zlineto@Base 8.61.dfsg.1 zln@Base 8.61.dfsg.1 zlog@Base 8.61.dfsg.1 zlt@Base 8.61.dfsg.1 zlz_setup@Base 8.61.dfsg.1 zmath_op_defs@Base 8.61.dfsg.1 zmatrix2_op_defs@Base 8.64~dfsg zmatrix_op_defs@Base 8.61.dfsg.1 zmedia2_l2_op_defs@Base 8.61.dfsg.1 zmisc1_op_defs@Base 8.61.dfsg.1 zmisc2_op_defs@Base 8.61.dfsg.1 zmisc3_op_defs@Base 8.61.dfsg.1 zmisc_a_op_defs@Base 9.25~dfsg+1-0ubuntu0.14.04.1 zmisc_b_op_defs@Base 9.25~dfsg+1-0ubuntu0.14.04.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# zmisc_op_defs@Base 8.61.dfsg.1 zmod@Base 8.61.dfsg.1 zmoveto@Base 8.61.dfsg.1 zmul@Base 8.61.dfsg.1 zne@Base 8.61.dfsg.1 zneg@Base 8.61.dfsg.1 znot@Base 8.61.dfsg.1 zop_add@Base 8.61.dfsg.1 zop_def@Base 8.61.dfsg.1 zop_init@Base 8.61.dfsg.1 zop_sub@Base 8.61.dfsg.1 zopen_file@Base 8.63.dfsg.1 zor@Base 8.61.dfsg.1 zpacked_op_defs@Base 8.61.dfsg.1 zpackedarray@Base 8.61.dfsg.1 zpaint_op_defs@Base 8.61.dfsg.1 zpath1_op_defs@Base 8.61.dfsg.1 zpath_op_defs@Base 8.61.dfsg.1 zpcolor_l2_op_defs@Base 8.61.dfsg.1 zpd_setup@Base 8.61.dfsg.1 zpdf_r6_op_defs@Base 9.15~dfsg-0ubuntu1 #MISSING: 9.00~dfsg-1# zpdfinkpath@Base 8.71~dfsg zpdfops_op_defs@Base 8.71~dfsg zpop@Base 8.61.dfsg.1 zpp_setup@Base 8.61.dfsg.1 zrcurveto@Base 8.61.dfsg.1 zreadline_from@Base 8.61.dfsg.1 zreadonly@Base 8.61.dfsg.1 zrelbit_op_defs@Base 8.61.dfsg.1 zrepeat@Base 8.61.dfsg.1 zrestore@Base 8.61.dfsg.1 zrlineto@Base 8.61.dfsg.1 zrmoveto@Base 8.61.dfsg.1 zroll@Base 8.61.dfsg.1 #MISSING: 9.25~dfsg+1-0ubuntu0.14.04.1# zrop_op_defs@Base 9.18~dfsg~0-0ubuntu1 zround@Base 8.61.dfsg.1 zsave@Base 8.61.dfsg.1 zscreen_enum_init@Base 8.61.dfsg.1 zscreen_params@Base 8.61.dfsg.1 zsetbbox@Base 8.61.dfsg.1 zsetcachedevice2@Base 8.61.dfsg.1 zsetcachedevice@Base 8.61.dfsg.1 zsetdevice@Base 8.61.dfsg.1 zsetfont@Base 8.61.dfsg.1 zsetgstate@Base 8.61.dfsg.1 zshade_op_defs@Base 8.61.dfsg.1 zsin@Base 8.61.dfsg.1 zspec_op@Base 9.15~dfsg-0ubuntu1 zsqrt@Base 8.61.dfsg.1 zstack_op_defs@Base 8.61.dfsg.1 zstring@Base 8.61.dfsg.1 zstring_op_defs@Base 8.61.dfsg.1 zsub@Base 8.61.dfsg.1 #MISSING: 9.00~dfsg-1# zswapcolors@Base 8.71~dfsg-4~ zsysvm_op_defs@Base 8.61.dfsg.1 ztoken@Base 8.61.dfsg.1 ztoken_get_scanner_option@Base 8.61.dfsg.1 ztoken_handle_comment@Base 8.61.dfsg.1 ztoken_op_defs@Base 8.61.dfsg.1 ztoken_scanner_options@Base 8.61.dfsg.1 ztokenexec@Base 8.61.dfsg.1 ztokenexec_continue@Base 8.61.dfsg.1 ztrans1_op_defs@Base 8.61.dfsg.1 ztrans2_op_defs@Base 8.61.dfsg.1 ztrans3_op_defs@Base 9.25~dfsg+1-0ubuntu0.14.04.1 ztruncate@Base 8.61.dfsg.1 ztype0_get_cmap@Base 8.61.dfsg.1 ztype9mapcid@Base 8.61.dfsg.1 ztype_op_defs@Base 8.61.dfsg.1 zupath_l2_op_defs@Base 8.61.dfsg.1 zusparam_op_defs@Base 8.61.dfsg.1 zutf8_op_defs@Base 9.01~ zvmem2_op_defs@Base 8.61.dfsg.1 zvmem_op_defs@Base 8.61.dfsg.1 zwhere@Base 8.61.dfsg.1 zwrite@Base 8.61.dfsg.1 zxor@Base 8.61.dfsg.1 debian/copyright0000644000000000000000000016620713353142353011137 0ustar Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: GhostPDL Upstream-Contact: Ghostscript development and discussion Source: https://github.com/ArtifexSoftware/ghostpdl-downloads/releases Repackaged, excluding non-DFSG files and convenience code copies: * non-DFSG fonts * PCL and PX3 files without license * XPS document with embedded potentially non-DFSG odttf font * embedded code copies cluttering authorship/licensing tracking (Arguably custom build of jpeg code is required - see bug#582521) Files-Excluded: cups/libs/* expat/* freetype/* ijs/* jbig2dec/* jpeg/* jpegxr/* libpng/* tiff/* toolbin/Acrobat2Tiff/* zlib/* Files: lcms2mt/* Copyright: 1998-2011, Marti Maria Saguer License: Expat Files: openjpeg/* Copyright: 2002-2014, Universite catholique de Louvain (UCL), Belgium 2002-2014, Professor Benoit Macq 2003-2014, Antonin Descampe 2003-2009, Francois-Olivier Devaux 2005, Herve Drolon, FreeImage Team 2002-2003, Yannick Verschueren 2001-2003, David Janssens 2011-2012, Centre National d'Etudes Spatiales (CNES), France 2012, CS Systemes d'Information, France License: BSD-2-Clause Files: Resource/ColorSpace/* Resource/Decoding/* Resource/Encoding/* Resource/Init/* Resource/SubstCID/* base/* devices/* doc/* examples/* gpdl/* iccprofiles/* lib/* man/* psi/* toolbin/* Copyright: 1986, Eric Gisin 1989, Berthold K.P. Horn 1990-2018, Artifex Software, Inc. 1991, Apple Computer, Inc 1991-1994, Free Software Foundation, Inc. 1994, Thomas Merz 1995-1996, Yves Arrouye 1998, Ivan Schreter 2001, gs-cjk project 2001, Taiji Yamada 2001-2004, Raph Levien 2003-2004, Hewlett-Packard Development Company, LP License-Grant: GhostPDL and GPL Ghostscript are free software; you can redistribute and/or modify them under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. License: AGPL-3+ Comments: The file LICENSE in topmost directory of upstream source covers only GPL Ghostscript, whereas the file pcl/LICENSE contains above statement. Files: Resource/CMap/* Copyright: 1990-2015, Adobe Systems Incorporated License: BSD-3-Clause~Adobe Files: Resource/CMap/Identity-UTF16-H Copyright: 2003-2018, Artifex Software License-Grant: GPL Ghostscript is free software; you can redistribute it and/or modify it under the terms the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. License: AGPL-3+ Files: contrib/pcl3/* Copyright: 1996-2003, Martin Lottermoser License-Grant: pcl3 is free software and can be used under the terms of the GNU Lesser General Public License (LGPL), Version 2.1 (February 1999). License: LGPL-2.1 Files: base/ttcalc.c base/ttcalc.h base/ttcommon.h base/ttconfig.h base/ttinterp.c base/ttinterp.h base/ttload.c base/ttload.h base/ttobjs.c base/ttobjs.h base/tttables.h base/tttype.h base/tttypes.h Copyright: 1996-1998, David Turner, Robert Wilhelm, and Werner Lemberg 2001-2018, Artifex Software, Inc. License: FTL Files: contrib/gdevlx7.c Copyright: 1989-1994,1998-1999, Aladdin Enterprises License-Grant: Everyone is granted permission to copy, modify and redistribute GNU Ghostscript, but only under the conditions described in the GNU General Public License. A copy of this license is supposed to have been given to you along with this software so you can know your rights and responsibilities. It should be in a file named COPYING. License: GPL Comment: The referenced file COPYING does not exist in folders belonging to same code. Files: contrib/japanese/* Copyright: 1989-1993,1995-1997, Aladdin Enterprises License-Grant: Everyone is granted permission to copy, modify and redistribute Ghostscript, but only under the conditions described in the Ghostscript General Public License. A copy of this license is supposed to have been given to you along with this software so you can know your rights and responsibilities. It should be in a file named COPYING. License: GPL Comment: The referenced file COPYING does not exist in folders belonging to same code. Files: Resource/Font/* Copyright: 1997,2003,2006, (URW)++ Design & Development License-Grant: GPL Ghostscript is free software; you can redistribute it and/or modify it under the terms the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. License: AGPL-3+ with font exception As a special exception, permission is granted to include this font program in a Postscript or PDF file that consists of a document that contains text to be displayed or printed using this font, regardless of the conditions or license applying to the document itself. Files: contrib/lips4/* Copyright: 1998-2000, Norihito Ohmori License-Grant: Everyone is granted permission to copy, modify and redistribute this software, but only under the conditions described in the GNU General Public License. A copy of this license is supposed to have been given to you along with this software so you can know your rights and responsibilities. It should be in a file named COPYING. License: GPL Comment: The referenced file COPYING does not exist in folders belonging to same code. Files: contrib/japanese/gdevespg.c contrib/japanese/gdevrpdl.c Copyright: 1998-2000, Norihito Ohmori License-Grant: Everyone is granted permission to copy, modify and redistribute this software, but only under the conditions described in the GNU General Public License. A copy of this license is supposed to have been given to you along with this software so you can know your rights and responsibilities. It should be in a file named COPYING. License: GPL Comment: The referenced file COPYING does not exist in folders belonging to same code. Files: configure Copyright: 1992-2012, Free Software Foundation, Inc License: GAP~configure Files: contrib/gdevln03.c contrib/gdevxes.c Copyright: 1991-1994, Free Software Foundation, Inc. License-Grant: This file is part of Ghostscript. . Everyone is granted permission to copy, modify and redistribute Ghostscript, but only under the conditions described in the GNU General Public License. A copy of this license is supposed to have been given to you along with Ghostscript so you can know your rights and responsibilities. It should be in a file named COPYING or COPYLEFT. Among other things, the copyright notice and this notice must be preserved on all copies. License-Grant: This code is subject to the GNU General Public License License: GPL-2+ Files: cups/gdevcups.c Copyright: 1993-2006, Easy Software Products 1997-2005, Easy Software Products License-Grant: Distribution and use rights are outlined in the file "LICENSE.txt" which should have been included with this file. [...] . This code and any derivative of it may be used and distributed freely under the terms of the GNU General Public License when used with GNU Ghostscript or its derivatives. Use of the code (or any derivative of it) with software other than GNU GhostScript (or its derivatives) is governed by the CUPS license agreement. License: GPL Comment: The referenced file LICENSE.txt does not exist in folders belonging to same code. Files: contrib/gdevbjc[_a].[ch] Copyright: 1989, 2000 Aladdin Enterprises, Menlo Park, CA 2000-2002, Gergely Szász License-Grant: This program may be distributed and/or modified under the terms of the GNU General Public License as published by the Free Software Foundation (the "GPL"); either version 2 of the GPL, or (at your option) any later version. License: GPL-2+ Comment: Also licensed as AFPL, ignored as irrelevant for our redistribution. Files: base/gsmd5.c base/gsmd5.h base/md5main.c Copyright: 1999-2018, Artifex Software, Inc. License: ZLIB Files: base/sha2.c base/sha2.h Copyright: 2000-2001, Aaron D. Gifford License: BSD-3-Clause Files: base/aes.c base/aes.h Copyright: 2006-2007, Christophe Devine License: BSD-3-Clause Files: base/icc34.h toolbin/color/icc_creator/ICC_Creator/icc34.h Copyright: 1994-1996, SunSoft, Inc License: Expat~SunSoft with SunSoft exception Except as contained in this notice, the name of SunSoft, Inc. shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without written authorization from SunSoft Inc. Files: contrib/opvp/opvp_0_2_0.h contrib/opvp/opvp_common.h Copyright: 2003-2004, AXE, Inc. License: Expat Files: doc/Hershey.htm Copyright: None (Public Domain) License: public-domain This file, unlike the rest of Ghostscript, consists entirely of information copied from public sources. It therefore is not covered by the Ghostscript copyright or license: it is in the public domain. Files: base/gsstrtok.c base/gssprintf.c Copyright: 2000-2015, The Apache Software Foundation License-Grant: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 License: Apache-2.0 Comment: Copyright holder indirectly referenced and fetched 2015-09-26 from https://svn.apache.org/repos/asf/apr/apr/trunk/NOTICE Files: Resource/CIDFSubst/DroidSansFallback.ttf Copyright: 2005-2008, The Android Open Source Project License-Grant: Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. License: Apache-2.0 Files: lib/cbjc600.ppd lib/cbjc800.ppd Copyright: 1995, Yves Arrouye License-Grant: This file may be distributed as part of GNU Ghostscript and/or AFPL Ghostscript, under the same terms and conditions as Ghostscript. License: GPL-3+ Files: base/gsstrl.c Copyright: 1998, Todd C. Miller License: ISC Files: cups/cups.mak Copyright: 2001-2005, Easy Software Products 2007, Artifex Software, Inc. License-Grant: This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. License: GPL-2+ Files: contrib/gdevdj9.c Copyright: 1999, Aladdin Enterprises, Menlo Park, CA 2000, Rene Harsch License-Grant: This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. License: GPL-2+ Comment: Also licensed as AFPL, ignored as irrelevant for our redistribution. Files: contrib/gdevcd8.c Copyright: 1996-1998, Uli Wortmann 1999, Aladdin Enterprises, Menlo Park, CA 2000, Hewlett-Packard Company License-Grant: This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. License: GPL-2+ Comment: Also licensed as AFPL, ignored as irrelevant for our redistribution. Files: contrib/opvp/gdevopvp.c Copyright: 2003-2004, AXE, Inc. License-Grant: This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. License: GPL-2+ Files: contrib/gdevlx32.c Copyright: 2000, Daniel Gordini (dgordin@tin.it) License-Grant: This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. License: GPL-2+ Files: lib/afmdiff.awk Copyright: 2000, Nelson H. F. Beebe License-Grant: This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. License: GPL-2+ Comment: Also licensed as AFPL, ignored as irrelevant for our redistribution. Files: lib/ghostpdf.ppd Copyright: 2004-2006, Ghostgum Software Pty Ltd License: Expat~Ghostgum Files: contrib/opvp/opvp.h Copyright: 2003-2006, AXE Inc 2006, Canon Inc 2006, Free Standards Group 2006, Fuji Xerox Printing Systems Co., Ltd License: NTP~Open Files: Resource/Init/pdf_sec.ps Copyright: 1996-1998, Geoffrey Keating 2001-2018, Artifex Software, Inc. License: other This file may be freely distributed with or without modifications, so long as modified versions are marked as such and copyright notices are not removed. Files: contrib/eplaser/gdevescv.[ch] Copyright: 1999-2000, EPSON SOFTWARE DEVELOPMENT LABORATORY, INC. 2000-2006,2009, SEIKO EPSON CORPORATION License-Grant: Everyone is granted permission to copy, modify and redistribute this software, but only under the conditions described in the GNU General Public License. A copy of this license is supposed to have been given to you along with this software so you can know your rights and responsibilities. It should be in a file named COPYING. License: GPL Comment: The referenced file COPYING does not exist in folders belonging to same code. Files: devices/gdevifno.c Copyright: 1998, Lucent Technologies License: NTP~Lucent Files: devices/gdev4693.c Copyright: 1992, Washington State University. License: NTP~WSU Files: lib/fixmswrd.pl Copyright: 1997, Anthony Shipman License: ZLIB Files: debian/* Copyright: 2004-2009, Masayuki Hatta (mhatta) 2009-2017, Jonas Smedegaard License-Grant: This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. License: GPL-3+ Files: debian/update-gsfontmap Copyright: 2010, Kenshi Muto License: GPL FIXME License: AGPL-3 GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 . Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. . Preamble . The GNU Affero General Public License is a free, copyleft license for software and other kinds of works, specifically designed to ensure cooperation with the community in the case of network server software. . The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, our General Public Licenses are intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. . When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. . Developers that use our General Public Licenses protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License which gives you legal permission to copy, distribute and/or modify the software. . A secondary benefit of defending all users' freedom is that improvements made in alternate versions of the program, if they receive widespread use, become available for other developers to incorporate. Many developers of free software are heartened and encouraged by the resulting cooperation. However, in the case of software used on network servers, this result may fail to come about. The GNU General Public License permits making a modified version and letting the public access it on a server without ever releasing its source code to the public. . The GNU Affero General Public License is designed specifically to ensure that, in such cases, the modified source code becomes available to the community. It requires the operator of a network server to provide the source code of the modified version running there to the users of that server. Therefore, public use of a modified version, on a publicly accessible server, gives the public access to the source code of the modified version. . An older license, called the Affero General Public License and published by Affero, was designed to accomplish similar goals. This is a different license, not a version of the Affero GPL, but Affero has released a new version of the Affero GPL which permits relicensing under this license. . The precise terms and conditions for copying, distribution and modification follow. . TERMS AND CONDITIONS . 0. Definitions. . "This License" refers to version 3 of the GNU Affero General Public License. . "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. . "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. . To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. . A "covered work" means either the unmodified Program or a work based on the Program. . To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. . To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. . An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. . 1. Source Code. . The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. . A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. . The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. . The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. . The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. . The Corresponding Source for a work in source code form is that same work. . 2. Basic Permissions. . All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. . You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. . Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. . 3. Protecting Users' Legal Rights From Anti-Circumvention Law. . No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. . When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. . 4. Conveying Verbatim Copies. . You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. . You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. . 5. Conveying Modified Source Versions. . You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: . a) The work must carry prominent notices stating that you modified it, and giving a relevant date. . b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". . c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. . d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. . A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. . 6. Conveying Non-Source Forms. . You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: . a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. . b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. . c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. . d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. . e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. . A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. . A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. . "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. . If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). . The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. . Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. . 7. Additional Terms. . "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. . When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. . Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: . a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or . b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or . c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or . d) Limiting the use for publicity purposes of names of licensors or authors of the material; or . e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or . f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. . All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. . If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. . Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. . 8. Termination. . You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). . However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. . Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. . Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. . 9. Acceptance Not Required for Having Copies. . You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. . 10. Automatic Licensing of Downstream Recipients. . Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. . An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. . You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. . 11. Patents. . A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". . A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. . Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. . In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. . If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. . If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. . A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. . Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. . 12. No Surrender of Others' Freedom. . If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. . 13. Remote Network Interaction; Use with the GNU General Public License. . Notwithstanding any other provision of this License, if you modify the Program, your modified version must prominently offer all users interacting with it remotely through a computer network (if your version supports such interaction) an opportunity to receive the Corresponding Source of your version by providing access to the Corresponding Source from a network server at no charge, through some standard or customary means of facilitating copying of software. This Corresponding Source shall include the Corresponding Source for any work covered by version 3 of the GNU General Public License that is incorporated pursuant to the following paragraph. . Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the work with which it is combined will remain governed by version 3 of the GNU General Public License. . 14. Revised Versions of this License. . The Free Software Foundation may publish revised and/or new versions of the GNU Affero General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. . Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU Affero General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU Affero General Public License, you may choose any version ever published by the Free Software Foundation. . If the Program specifies that a proxy can decide which future versions of the GNU Affero General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. . Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. . 15. Disclaimer of Warranty. . THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. . 16. Limitation of Liability. . IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. . 17. Interpretation of Sections 15 and 16. . If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. . END OF TERMS AND CONDITIONS . How to Apply These Terms to Your New Programs . If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. . To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. . Copyright (C) . This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. . You should have received a copy of the GNU Affero General Public License along with this program. If not, see . . Also add information on how to contact you by electronic and paper mail. . If your software can interact with users remotely through a computer network, you should also make sure that it provides a way for users to get its source. For example, if your program is a web application, its interface could display a "Source" link that leads users to an archive of the code. There are many ways you could offer source, and different solutions will be better for different programs; see section 13 for the specific requirements. . You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU AGPL, see . License: GPL-3+ License-Reference: /usr/share/common-licenses/GPL-3 License: GPL-2+ License-Reference: /usr/share/common-licenses/GPL-2 License: GPL-2 License-Reference: /usr/share/common-licenses/GPL-2 License: GPL License-Reference: /usr/share/common-licenses/GPL License: LGPL-2.1 License-Reference: /usr/share/common-licenses/LGPL-2.1 License: Apache-2.0 License-Reference: /usr/share/common-licenses/Apache-2.0 License: GAP~configure This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. License: Expat Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. License: Expat~SunSoft Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL SUNSOFT, INC. OR ITS PARENT COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. License: Expat~Ghostgum Permission is hereby granted, free of charge, to any person obtaining a copy of this file ("Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of this Software, and to permit persons to whom this file is furnished to do so, subject to the following conditions: . This Software is distributed with NO WARRANTY OF ANY KIND. No author or distributor accepts any responsibility for the consequences of using it, or for whether it serves any particular purpose or works at all, unless he or she says so in writing. . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. License: NTP~Open Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. License: NTP~WSU Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted. This software is provided "as is" without express or implied warranty. License: NTP~Lucent Permission to use, copy, modify, and distribute this software for any purpose without fee is hereby granted, provided that this entire notice is included in all copies of any software which is or includes a copy or modification of this software. . THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED WARRANTY. IN PARTICULAR, NEITHER THE AUTHORS NOR LUCENT TECHNOLOGIES MAKE ANY REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. License: BSD-2-Clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: BSD-3-Clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the University nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: BSD-3-Clause~Adobe Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . Neither the name of Adobe Systems Incorporated nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: ZLIB This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. . Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: . 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. License: ISC Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. . THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. debian/copyright-check0000755000000000000000000000305413344270017012202 0ustar #!/bin/sh # Copyright © 2016-2017 Jonas Smedegaard # Description: helper script to update copyright_hints # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . set -eu # extract metadata from ICC, PDF, and fonts before copyright check # - skip main HTML documentation and a spreadsheet # - skip binary non-metadata-parseable graphics formats (ico pcl xps) # - skip binary non-metadata-parseable certificate bundle (cat) export DEB_COPYRIGHT_EXTRACT_EXTS="icc pdf png ttf" export DEB_COPYRIGHT_EXTRACT_PATHS_EXIF="Resource/Font/" export DEB_COPYRIGHT_CHECK_IGNORE_EXTS="cat ico xls pcl xps" export DEB_COPYRIGHT_CHECK_IGNORE_PATHS="doc/.*\.htm" #export DEB_COPYRIGHT_CHECK_MERGE_SAME_LICENSE=yes make -f /usr/share/cdbs/1/rules/utils.mk pre-build || true make -f /usr/share/cdbs/1/rules/utils.mk clean DEB_COPYRIGHT_CHECK_STRICT=1 # unconditionally merge changes - safe to do with git-tracked package [ ! -f debian/copyright_newhints ] || mv -f debian/copyright_newhints debian/copyright_hints debian/libgs__VER__.install.in0000644000000000000000000000002311763726276013450 0ustar usr/lib/libgs.so.* debian/source/0000755000000000000000000000000011764412724010476 5ustar debian/source/format0000644000000000000000000000001411763726276011715 0ustar 3.0 (quilt) debian/symbols.common_32bit0000644000000000000000000000020011763726276013104 0ustar Add64@Base 8.61.dfsg.1 Div64by32@Base 8.61.dfsg.1 MulTo64@Base 8.61.dfsg.1 Order64@Base 8.61.dfsg.1 Sub64@Base 8.61.dfsg.1 debian/update-gsfontmap0000644000000000000000000000070211763726276012407 0ustar #!/bin/sh # update-gsfontmap # Copyright 2010 Kenshi Muto # License: GPL CIDFMAP=/var/lib/ghostscript/fonts/cidfmap FONTMAP=/var/lib/ghostscript/fonts/Fontmap CIDFDIR=/etc/ghostscript/cidfmap.d/ FONTMDIR=/etc/ghostscript/fontmap.d/ rm -f $CIDFMAP $FONTMAP touch $CIDFMAP $FONTMAP for i in $CIDFDIR/*.conf; do cat $i >> $CIDFMAP done 2>/dev/null for i in $FONTMDIR/*.conf; do cat $i >> $FONTMAP done 2>/dev/null exit 0 debian/NEWS0000644000000000000000000000470511763726276007714 0ustar ghostscript (8.61.dfsg.1~svn8187-1) unstable; urgency=low As the ESP Ghostscript development is discontinued now, the extra functionality of ESP Ghostscript is merged into upstream GPL Ghostscript from version 8.60 on. This is the first Debian/Ubuntu package of this merged Ghostscript. It contains the following added functionality from ESP Ghostscript: - Enhanced PCL XL driver. - Shared library and driver (X11) support for Linux/UNIX. - The CUPS "driver" that generates a series of raster images for CUPS printer drivers. - Nearly all known free printer drivers which have to be compiled into Ghostscript - drivers listed with "Execution style: Ghostscript" on openprinting.org. Not included are some obsolete drivers such as hpdj which is replaced by the included pcl3 driver. - All known Uniprint configuration files (*.upp) as listed on openprinting.org. - Patches to add the NOMEDIAATTRS option to Ghostscript, which allows CUPS drivers to use media options separate from Ghostscript. - KRGB support for IJS drivers. - OpenPrinting Vector interface - Support files for CUPS. - Enhanced build system (easy driver selection, font search path setting, ...). This package has everything activated. Due to Ghostscript's head development being under GPL now, and all important functionality being developed at ghostscript.com, forks are not needed any more. This makes gs-esp, gs-afpl, and gs-common obsolete. gs-gpl is also renamed to ghostscript now, so that it can be found in repositories more easily. This new ghostscript package automatically removes all gs-* packages. -- Till Kamppeter Mon, 21 May 2007 13:00:21 +0100 gs-gpl (8.01-5) unstable; urgency=low For CJKV users: GPL gs 8.x does not contain CJK TrueType font support (it still has CJK CID font support, though), so you can not use CJK *.ttf/ttc with gs-gpl. I strongly urge you to use gs-esp for the time being. -- Masayuki Hatta (mhatta) Sun, 15 Aug 2004 13:26:21 +0900 gs-gpl (8.01-3) unstable; urgency=low Currently gs-gpl has stp support, but please note that this driver will be removed after sarge's release since stp has been obsoleted by ijs (ijsgimpprint). Those of you who still use stp are strongly recommended to migrate to ijsgimpprint ASAP. -- Masayuki Hatta (mhatta) Wed, 28 Apr 2004 05:40:05 +0900 debian/control.in0000644000000000000000000001312313444165016011202 0ustar Source: ghostscript Section: text Priority: optional Maintainer: Debian Printing Team Build-Depends: @cdbs@ Standards-Version: 3.9.3 Uploaders: Jonas Smedegaard , Michael Gilbert Homepage: http://www.ghostscript.com/ Vcs-Git: git://git.debian.org/git/collab-maint/ghostscript.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/ghostscript.git Package: ghostscript Architecture: any Multi-Arch: foreign Conflicts: ${cdbs:Conflicts} Replaces: ${cdbs:Replaces} Provides: ${cdbs:Provides} Recommends: ${cdbs:Recommends} Suggests: ${cdbs:Suggests} Depends: ${shlibs:Depends}, ${cdbs:Depends}, libgs9 (= ${binary:Version}), ${misc:Depends} Breaks: ${cdbs:Breaks} Description: interpreter for the PostScript language and for PDF GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . Furthermore, it can render PostScript and PDF files as graphics to be printed on non-PostScript printers. Supported printers include common dot-matrix, inkjet and laser models. Package: ghostscript-cups Architecture: any Depends: ${shlibs:Depends}, ${cdbs:Depends}, ${misc:Depends} Recommends: ${cdbs:Recommends}, ${cdbs:Recommends} Conflicts: ${cdbs:Conflicts} Replaces: ${cdbs:Replaces} Provides: ${cdbs:Provides} Description: interpreter for the PostScript language and for PDF - CUPS filters GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . This package contains the CUPS filters, drivers, and PPDs which come with GPL Ghostscript. Package: ghostscript-x Architecture: any Depends: ${shlibs:Depends}, ${cdbs:Depends}, ${misc:Depends} Conflicts: ${cdbs:Conflicts} Provides: ${cdbs:Provides} Description: interpreter for the PostScript language and for PDF - X11 support GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . This package contains the GPL Ghostscript output device for X11. Package: ghostscript-doc Section: doc Architecture: all Depends: ${shlibs:Depends}, ${cdbs:Depends}, ${misc:Depends} Suggests: ${cdbs:Suggests} Conflicts: ${cdbs:Conflicts} Description: interpreter for the PostScript language and for PDF - Documentation GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . This package contains documentation for GPL Ghostscript, mainly targeted developers and advanced users. Package: libgs9 Section: libs Architecture: any Depends: ${shlibs:Depends}, ${cdbs:Depends}, ${misc:Depends}, libgs9-common (>= ${source:Upstream-Version}) Description: interpreter for the PostScript language and for PDF - Library GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . This package provides the Ghostscript library which makes the facilities of GPL Ghostscript available to applications. Package: libgs9-common Section: libs Architecture: all Depends: ${misc:Depends} Replaces: ${cdbs:Replaces} Recommends: ${cdbs:Recommends} Suggests: ${cdbs:Suggests} Description: interpreter for the PostScript language and for PDF - common files GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . This package provides common architecture-independent files needed by the GPL Ghostscript library. . By default, GPL Ghostscript uses a font from the fonts-droid package to approximate glyphs in PDFs for which the requested CJK TrueType font is missing. If the fonts-droid package is not installed, these glyphs will be rendered as bullets. Package: libgs-dev Section: libdevel Architecture: any Depends: libgs9 (= ${binary:Version}), libc6-dev, libcups2-dev, libcupsimage2-dev, libfontconfig1-dev, libidn11-dev, libijs-dev, libjasper-dev, libjbig2dec0-dev, libjpeg-dev, liblcms2-dev, libpaper-dev, libpng12-0-dev, libtiff5-dev, zlib1g-dev, ${cdbs:Depends}, ${misc:Depends} Conflicts: ${cdbs:Conflicts} Replaces: ${cdbs:Replaces} Provides: ${cdbs:Provides} Description: interpreter for the PostScript language and for PDF - Development Files GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . This package provides the development files for the GPL Ghostscript library which makes the facilities of GPL Ghostscript available to applications. Package: ghostscript-dbg Architecture: any Section: debug Priority: extra Depends: ${shlibs:Depends}, ${cdbs:Depends}, libgs9 (= ${binary:Version}) | ghostscript (= ${binary:Version}) | ghostcript-cups (= ${binary:Version}) | ghostcript-x (= ${binary:Version}), ${misc:Depends} Description: interpreter for the PostScript language and for PDF - Debug symbols GPL Ghostscript is used for PostScript/PDF preview and printing. Usually as a back-end to a program such as ghostview, it can display PostScript and PDF documents in an X11 environment. . This package contains the debugging symbols for ghostscript, ghostscript-x, ghostscript-cups and libgs9. debian/symbols.common_le0000644000000000000000000000106211763726276012570 0ustar mem_mapped2_word_device@Base 8.61.dfsg.1 mem_mapped4_word_device@Base 8.61.dfsg.1 mem_mapped8_word_device@Base 8.61.dfsg.1 mem_mono_word_device@Base 8.61.dfsg.1 mem_swap_byte_rect@Base 8.61.dfsg.1 mem_true24_word_device@Base 8.61.dfsg.1 mem_true32_word_device@Base 8.61.dfsg.1 mem_true40_word_device@Base 8.61.dfsg.1 mem_true48_word_device@Base 8.61.dfsg.1 mem_true56_word_device@Base 8.61.dfsg.1 mem_true64_word_device@Base 8.61.dfsg.1 mem_word_get_bits_rectangle@Base 8.61.dfsg.1 mono_copy_masks@Base 8.61.dfsg.1 mono_fill_masks@Base 8.61.dfsg.1 debian/libgs__VER__-common.install.in0000644000000000000000000000015511763726276014744 0ustar # install subdir explicitly, to fail if wrong (same var used for symlink too) usr/share/ghostscript/__ABI__/ debian/changelog0000644000000000000000000065313413444164331011057 0ustar ghostscript (9.26~dfsg+0-0ubuntu0.14.04.8) trusty-security; urgency=medium * SECURITY UPDATE: superexec operator is available - debian/patches/CVE-2019-3835-pre1.patch: Have gs_cet.ps run from gs_init.ps in Resource/Init/gs_cet.ps, Resource/Init/gs_init.ps. - debian/patches/CVE-2019-3835-pre2.patch: Undef /odef in Resource/Init/gs_cet.ps, Resource/Init/gs_init.ps. - debian/patches/CVE-2019-3835-1.patch: restrict superexec and remove it in Resource/Init/gs_cet.ps, Resource/Init/gs_dps1.ps, Resource/Init/gs_fonts.ps, Resource/Init/gs_init.ps, Resource/Init/gs_ttf.ps, Resource/Init/gs_type1.ps. - debian/patches/CVE-2019-3835-2.patch: obliterate superexec in Resource/Init/gs_init.ps, psi/icontext.c, psi/icstate.h, psi/zcontrol.c, psi/zdict.c, psi/zgeneric.c. - CVE-2019-3835 * SECURITY UPDATE: forceput in DefineResource is still accessible - debian/patches/CVE-2019-3838-1.patch: make a transient proc executeonly in Resource/Init/gs_res.ps. - debian/patches/CVE-2019-3838-2.patch: an extra transient proc needs executeonly in Resource/Init/gs_res.ps. - CVE-2019-3838 -- Marc Deslauriers Tue, 19 Mar 2019 09:04:25 -0400 ghostscript (9.26~dfsg+0-0ubuntu0.14.04.7) trusty-security; urgency=medium * SECURITY REGRESSION: High RIP_MAX_CACHE makes cups output device fail, second fix attempt. (LP: #1815339) - debian/patches/lp1815339.patch: re-enable. - debian/patches/lp1815339-2.patch: properly map RGBW color space in cups/gdevcups.c. -- Marc Deslauriers Mon, 25 Feb 2019 09:41:28 -0500 ghostscript (9.26~dfsg+0-0ubuntu0.14.04.6) trusty-security; urgency=medium * SECURITY REGRESSION: Ghostscript update causes blue background (LP: #1817308) - disable debian/patches/lp1815339.patch -- Chris Coulson Sat, 23 Feb 2019 07:01:35 +0100 ghostscript (9.26~dfsg+0-0ubuntu0.14.04.5) trusty-security; urgency=medium * SECURITY REGRESSION: High RIP_MAX_CACHE makes cups output device fail (LP: #1815339) - debian/patches/lp1815339.patch: fix logic in cups/gdevcups.c. * debian/symbols.common: add new symbol missing in previous update. -- Marc Deslauriers Wed, 20 Feb 2019 11:46:54 +0100 ghostscript (9.26~dfsg+0-0ubuntu0.14.04.4) trusty-security; urgency=medium * SECURITY UPDATE: code execution vulnerability - debian/patches/CVE-2019-6116.patch: address .force* operators exposure in Resource/Init/gs_diskn.ps, Resource/Init/gs_dps1.ps, Resource/Init/gs_fntem.ps, Resource/Init/gs_fonts.ps, Resource/Init/gs_init.ps, Resource/Init/gs_lev2.ps, Resource/Init/gs_pdfwr.ps, Resource/Init/gs_res.ps, Resource/Init/gs_setpd.ps, Resource/Init/pdf_base.ps, Resource/Init/pdf_draw.ps, Resource/Init/pdf_font.ps, Resource/Init/pdf_main.ps, Resource/Init/pdf_ops.ps, psi/int.mak, psi/interp.c, psi/istack.c, psi/istack.h. - CVE-2019-6116 -- Marc Deslauriers Wed, 16 Jan 2019 10:54:43 -0500 ghostscript (9.26~dfsg+0-0ubuntu0.14.04.3) trusty-security; urgency=medium * SECURITY REGRESSION: multiple regressions (LP: #1806517) - debian/patches/020181126-96c381c*.patch: fix duplex issue. - debian/patches/020181205-fae21f16*.patch: fix -dFirstPage and -dLastPage issue. -- Marc Deslauriers Thu, 06 Dec 2018 07:18:19 -0500 ghostscript (9.26~dfsg+0-0ubuntu0.14.04.1) trusty-security; urgency=medium * SECURITY UPDATE: Updated to 9.26 to fix multiple security issues - CVE-2018-19409 - CVE-2018-19475 - CVE-2018-19476 - CVE-2018-19477 * Removed patches included in new version: - debian/patches/0218*.patch - debian/patches/lp1800062.patch * debian/symbols.common: updated for new version. -- Marc Deslauriers Wed, 28 Nov 2018 08:37:17 -0500 ghostscript (9.25~dfsg+1-0ubuntu0.14.04.3) trusty; urgency=medium * Fix dependency for libgs9-common (LP: #1802958) -- Ioanna Alifieraki Mon, 12 Nov 2018 18:09:10 +0000 ghostscript (9.25~dfsg+1-0ubuntu0.14.04.2) trusty-security; urgency=medium * SECURITY UPDATE: Multiple security issues - debian/patches/0218*.patch: multiple cherry-picked upstream commits to fix security issues. Thanks to Jonas Smedegaard for cherry-picking these for Debian's 9.25~dfsg-3 package. - debian/symbols.common: added new symbol. - CVE-2018-17961 - CVE-2018-18073 - CVE-2018-18284 * Fix LeadingEdge regression introduced in 9.22. (LP: #1800062) - debian/patches/lp1800062.patch: fix cups get/put_params LeadingEdge logic in cups/gdevcups.c. -- Marc Deslauriers Tue, 30 Oct 2018 09:05:40 -0400 ghostscript (9.25~dfsg+1-0ubuntu0.14.04.1) trusty-security; urgency=medium * SECURITY UPDATE: updated to 9.25 to fix multiple security issues - Previous security release contained an incomplete fix for CVE-2018-16510, and there are many other security fixes and improvements that went into the new upstream version without getting CVE numbers assigned. - CVE-2018-16510 - CVE-2018-17183 * Packages changes required for new version: - debian/patches/CVE*: removed, included in new version. - debian/patches/*: updated from cosmic package. - debian/copyright*: updated from cosmic package. - debian/rules, debian/libgs-dev.install: remove static library. - debian/symbols.common: updated for new version. - debian/rules: use bundled lcms2 as trusty version is too old. -- Marc Deslauriers Thu, 27 Sep 2018 09:46:18 -0400 ghostscript (9.10~dfsg-0ubuntu10.13) trusty-security; urgency=medium * SECURITY UPDATE: Multiple security issues - debian/patches/CVE-2018-1*.patch: backport large number of upstream security fixes. - CVE-2018-11645, CVE-2018-15908, CVE-2018-15909, CVE-2018-15910, CVE-2018-15911, CVE-2018-16509, CVE-2018-16511, CVE-2018-16513, CVE-2018-16539, CVE-2018-16540, CVE-2018-16541, CVE-2018-16542, CVE-2018-16543, CVE-2018-16585, CVE-2018-16802 -- Marc Deslauriers Wed, 12 Sep 2018 11:32:27 -0400 ghostscript (9.10~dfsg-0ubuntu10.12) trusty-security; urgency=medium * SECURITY UPDATE: Heap-based buffer overflow and application crash - debian/patches/CVE-2016-10317.patch: check max_height bounds in base/gxht_thresh.c, base/gxipixel.c. - CVE-2016-10317 * SECURITY UPDATE: Denial of service - debian/patches/CVE-2018-10194.patch: avoid infinite number in devices/vector/gdevpdts.c. - CVE-2018-10194 -- Leonidas S. Barbosa Mon, 23 Apr 2018 14:27:51 -0300 ghostscript (9.10~dfsg-0ubuntu10.10) trusty-security; urgency=medium * SECURITY UPDATE: DoS via crafted files - debian/patches/CVE-2017-11714.patch: prevent to reloc a freed object in psi/ztoken.c. - CVE-2017-11714 * SECURITY UPDATE: DoS in Artifex Ghostscript - debian/patches/CVE-2017-9611.patch: bounds check pointer in base/ttinterp.c - CVE-2017-9611 * SECURITY UPDATE: DoS in Artifex Ghostscript - debian/patches/CVE-2017-9612.patch: bounds check pointer in base/ttinterp.c - CVE-2017-9612 * SECURITY UPDATE: DoS heap-based buffer over-read and crash - debian/patches/CVE-2017-9726.patch: bounds check zone pointer in base/ttinterp.c. - CVE-2017-9726 * SECURITY UPDATE: DoS heap-based buffer over-read and crash - debian/patches/CVE-2017-9727.patch: make bounds check in base/gxttfb.c. - CVE-2017-9727 * SECURITY UPDATE: DoS heap-based buffer over-read and crash - debian/patches/CVE-2017-9739.patch: bounds check in base/ttinterp.c. - CVE-2017-9739 * SECURITY UPDATE: DoS heap-base buffer over-read and crash - debian/patches/CVE-2017-9835.patch: bounds check the array allocations methods in base/gsalloc.c. - CVE-2017-9835 -- Leonidas S. Barbosa Thu, 24 Aug 2017 15:33:07 -0300 ghostscript (9.10~dfsg-0ubuntu10.9) trusty-security; urgency=medium * REGRESSION UPDATE: Fix for CVE-2017-8291 broke pstoedit when using DELAYBIND feature (LP: #1687614). - debian/patches/CVE-2017-8291-regression.patch: return false rather than raise error when .eqproc is called with parameters that are not both procedures; correct stack underflow detection. -- Steve Beattie Mon, 15 May 2017 15:20:33 -0700 ghostscript (9.10~dfsg-0ubuntu10.7) trusty-security; urgency=medium * SECURITY UPDATE: invalid handling of parameters to .eqproc and .rsdparams allowed disabling -dSAFER and thus code execution - debian/patches/CVE-2017-8291-1.patch: check .eqproc parameters - debian/patches/CVE-2017-8291-2.patch: check .rsdparams parameters - CVE-2017-8291 * SECURITY UPDATE: use-after-free in color management module. - CVE-2016-10217.patch: Don't create new ctx when pdf14 device reenabled - CVE-2016-10217 * SECURITY UPDATE: divide-by-zero error denial of service in base/gxfill.c - CVE-2016-10219.patch: check for 0 in denominator - CVE-2016-10219 * SECURITY UPDATE: null pointer dereference denial of service - CVE-2016-10220.patch: initialize device data structure correctly - CVE-2016-10220 * SECURITY UPDATE: null pointer dereference denial of service - CVE-2017-5951.patch: use the correct param list enumerator - CVE-2017-5951 * SECURITY UPDATE: null pointer dereference denial of service - CVE-2017-7207.patch: ensure a device has raster memory, before trying to read it - CVE-2017-7207 -- Steve Beattie Thu, 27 Apr 2017 17:48:36 -0700 ghostscript (9.10~dfsg-0ubuntu10.6) trusty-security; urgency=medium * SECURITY UPDATE: Fix regression introduced by fix for CVE-2013-5653 (LP: #1647276) - debian/patches/CVE-2013-5653-regression.patch -- Emily Ratliff Mon, 05 Dec 2016 11:14:11 -0600 ghostscript (9.10~dfsg-0ubuntu10.5) trusty-security; urgency=medium * SECURITY UPDATE: Information disclosure through getenv, filenameforall - debian/patches/CVE-2013-5653.patch: Have filenameforall and getenv honor SAFER - CVE-2013-5653 * SECURITY UPDATE: userparams with %pipe% in paths allow remote shell exec - debian/patches/CVE-2016-7976.patch: Add a file permissions callback - CVE-2016-7976 * SECURITY UPDATE: use-after-free and remote code execution - debian/patches/CVE-2016-7978.patch: Reference count device icc profile - CVE-2016-7978 * SECURITY UPDATE: type confusion allows remote code execution - debian/patches/CVE-2016-7979.patch: DSC parser - validate parameters - CVE-2016-7979 * SECURITY UPDATE: NULL dereference - debian/patches/CVE-2016-8602.patch: check for sufficient params - CVE-2016-8602 * SECURITY UPDATE: fix SAFER permissions - debian/patches/safer.patch: Be rigorous with SAFER permissions -- Emily Ratliff Mon, 28 Nov 2016 15:52:57 -0600 ghostscript (9.10~dfsg-0ubuntu10.4) trusty-security; urgency=medium * SECURITY UPDATE: integer overflow in gs_heap_alloc_bytes() - debian/patches/CVE-2015-3228.patch: added sanity check to base/gsmalloc.c. - CVE-2015-3228 -- Marc Deslauriers Wed, 29 Jul 2015 16:03:46 -0400 ghostscript (9.10~dfsg-0ubuntu10.3) trusty; urgency=low * debian/patches/lp1342312-infinite-loop.patch: backport upstream patch to fix an infinite loop that can hang the gs program in certain conditions. (LP: #1342312) -- Rolf Leggewie Wed, 18 Mar 2015 15:40:28 +0800 ghostscript (9.10~dfsg-0ubuntu10.2) trusty-proposed; urgency=low * debian/patches/020140626-142b12b-null-check-for-icc-profile.patch: Add NULL checks for ICC profiles (LP: #1334712, Upstream bug #694154). -- Till Kamppeter Thu, 26 Jun 2014 20:15:33 +0200 ghostscript (9.10~dfsg-0ubuntu10.1) trusty-proposed; urgency=low * debian/patches/020140428-f4584b0-skip-unsupported-font-files.patch: When Ghostscript is scanning through available font files let it skip the ones which it does not understand. Before Ghostscript got totally blocked by having one broken or incompatible font installed (LP: #1313223, Upstream bug #695031). -- Till Kamppeter Mon, 28 Apr 2014 17:28:33 +0200 ghostscript (9.10~dfsg-0ubuntu10) trusty; urgency=low * debian/patches/1001_pxlcolor-support-jpeg-in-output.patch, debian/patches/020140331-4b44b41-pxlcolor-support-jpeg-in-output.patch: Replaced preliminary patch by what got actually committed upstream (Upstream bug #691880). * debian/patches/020140331-41ab485-pxl-transform-deep-images-with-icc-transform-to-emit-high-level-images.patch, debian/patches/020140331-8ae4ee2-fixes-pxl-segfault-with-trying-to-set-up-icc-transform-for-bitmasks.patch: Transform deep (24-bit) images with an ICC transform to emit high-level images (Upstream bug #691880). * debian/patches/1002_pxl-make-dicctransform-default.patch: Make deep iamge ICC transform default (Upstream bug #695124). -- Till Kamppeter Mon, 31 Mar 2014 18:24:33 +0200 ghostscript (9.10~dfsg-0ubuntu9) trusty; urgency=low * debian/patches/020140324-b780ff0-protection-against-pxl-segfault-with-image-data-without-colorspace-info.patch: Protection against PXL segfault with image data without colorspace info (Upstream bug 695103). -- Till Kamppeter Mon, 24 Mar 2014 23:47:33 +0100 ghostscript (9.10~dfsg-0ubuntu8) trusty; urgency=low * debian/patches/1001_pxlcolor-support-jpeg-in-output.patch: Added JPEG output support to the "pxlcolor" PCL-XL output device to vastly reduce the size of the output when the input document contains images (Upstream bug #691880). * debian/patches/020140313-5d6b18a-set-correct-portrait-landscape-orientation-on-pcl-5ce.patch: Set correct portrait/landscape orientation on PCL 5c/e output (Upstream bug #693715). * debian/patches/020140313-6498483-ps2write-fix-a-dsc-comment.patch, debian/patches/020140313-095ae57-ps2write-fix-missing-beginresource-comment-for-fontfile-objects.patch: Fixes on DSC comments in PostScript output of the "ps2write" device Upstream bug #695082). -- Till Kamppeter Thu, 13 Mar 2014 12:25:33 +0100 ghostscript (9.10~dfsg-0ubuntu7) trusty; urgency=low * debian/patches/020131219-d997bc4-pwgraster-output-device.patch: Added "pwgraster" output device to generate the PWG Raster output format, an industry-standardized raster input data format for printers. -- Till Kamppeter Thu, 19 Dec 2013 22:47:33 +0100 ghostscript (9.10~dfsg-0ubuntu6) trusty; urgency=low * debian/patches/020131218-5ddd13e-ps2write-dont-emit-a-page-size-change-if-the-last-request-failed.patch: ps2write output device: Don't emit a page size change if the last request failed (and was the same size). This prevented from Letter-sized documents to be printed double-sided on printers loaded with A4 paper accepting also Letter via a printer-internal scale-to-fit or crop-to-fit (Upstream bug #694852). -- Till Kamppeter Wed, 18 Dec 2013 15:28:33 +0100 ghostscript (9.10~dfsg-0ubuntu5) trusty; urgency=low * debian/libgs__VER__.symbols.in: Adjust to support powerpc64le. -- Adam Conrad Wed, 11 Dec 2013 05:20:19 -0700 ghostscript (9.10~dfsg-0ubuntu4) trusty; urgency=low * debian/patches/020131127-87a7fd8-cups-pwg-raster-output-ppd-less-support.patch: "cups" output device: Added support for PWG Raster output ("-sMediaClass=PwgRaster"), PPD-less printing with margins supplied via "-c '<>setpagedevice'", and fixed rounding float numbers to integer. -- Till Kamppeter Wed, 4 Dec 2013 11:38:33 +0100 ghostscript (9.10~dfsg-0ubuntu3) trusty; urgency=low * debian/patches/020131023-ad3e3ed-handle-type-0-font-in-annotation.patch: Handle Type 0 font in annotation. This broke printing/displaying certain PDF forms (Upstream bug #694734). -- Till Kamppeter Fri, 1 Nov 2013 15:56:33 +0100 ghostscript (9.10~dfsg-0ubuntu2) saucy; urgency=low * debian/patches/020130903-5ae4180-ps-interpreter-dont-interpolate-imagemask-data-for-high-level-devices.patch: PS Interpreter: Do not interpolate imagemask data for high level devices. This accelerates processing files with embedded bitmap images when the output device is a high-level (vector) device. In this case an explicit "-dNOINTERPOLATE" on the command line is not needed any more. -- Till Kamppeter Tue, 03 Sep 2013 17:42:33 +0200 ghostscript (9.10~dfsg-0ubuntu1) saucy; urgency=low * New upstream release - Ghostscript 9.10 final release -- Till Kamppeter Mon, 02 Sep 2013 16:31:33 +0200 ghostscript (9.10~dfsg~rc1-0ubuntu2) saucy; urgency=low * debian/rules: Commented out "DEB_BUILD_PARALLEL = yes" line to suppress parallelized building. This was leading to a race condition which broke the "make" process onn the build servers. -- Till Kamppeter Wed, 28 Aug 2013 18:05:40 +0200 ghostscript (9.10~dfsg~rc1-0ubuntu1) saucy; urgency=low * New upstream release - Ghostscript 9.10rc1. - Upstream: Mainly, changes to our Postscript startup code (to improve compatibility with Adobe) have had unexpected and undesirable side effects. Most of these have been in fairly widely relied upon, but also decidedly non-standard uses (pdf2dsc being a prime example). - We are using Ghostscript's libopenjpeg again, using the system's one does not (yet) work as there are still patches of the Ghostscript developers which did not get accepted upstream yet.. * debian/control: Removed build dependency on libopenjpeg-dev. * debian/rules: Removed check for removed openjpeg/ subdirectory in the repackaging check again, also set build options for using Ghostscript's built-in libopenjpeg library. -- Till Kamppeter Wed, 28 Aug 2013 18:05:40 +0200 ghostscript (9.09~dfsg-0ubuntu1) saucy; urgency=low * New upstream release - Ghostscript 9.09 final release - The URW Postscript font set has been updated to the latest version, fixing many compatibility problems with the Adobe fonts. - Bug fixes. -- Till Kamppeter Thu, 22 Aug 2013 12:17:38 +0200 ghostscript (9.09~dfsg~rc1-0ubuntu1) saucy; urgency=low * New upstream release - Ghostscript 9.09rc1. - Upstream: Due to a couple of serious regressions that were discovered *very* shortly after the 9.08 release was completed, we decided it was best to withdraw 9.08, and produce a 9.09 release with those issues resolved. -- Till Kamppeter Fri, 16 Aug 2013 19:19:47 +0200 ghostscript (9.08+dfsg-0ubuntu1) saucy; urgency=low * New upstream release - Ghostscript 9.08 final release - Background printing (BGPrint) is a new feature allowing an accumulated page clist to be rendered by one or more rendering threads whilst the interpreter (in the "main" thread) continues to accumulate the subsequent page's clist. For certain classes of file this can result in a useful performance increase. See: Banding Parameters (to be activated with the new "-dBGPrint" command line option). - GrayDetection allows suitably written devices to detect "color" input in near neutral tones (i.e. near monochrome) and to convert "on-the-fly" to pure grayscale, whilst retaining the ability to print full color on demand. This is primarily aimed at workflows where saving ink (especially color inks) is required. See: Device Parameters (to be activated with the new "-dGrayDetection" command line option). - Plus the usual round of bug fixes, compatibility changes, and incremental improvements. * debian/rules: Allow also '+' as separator between the upstream version number and any extensions (like "dfsg", "git", ...). -- Till Kamppeter Thu, 15 Aug 2013 12:47:13 +0200 ghostscript (9.08~rc1~dfsg-0ubuntu1) saucy; urgency=low * New upstream release - Ghostscript 9.08rc1. - We are using the system's liblcms2 and libopenjpeg now. * debian/patches/020130401-852e545-pxl-xl-driver-produced-drawing-commands-without-setting-color-space.patch: Removed patch backported from upstream. * debian/patches/ojdk-8007925+8007926.patch, debian/patches/ojdk-8007927.patch, debian/patches/ojdk-8007929.patch, debian/patches/ojdk-8009654.patch: Removed patches on build in liblcms2, we use the system's liblcms2 now. * debian/patches/2001_docdir_fix_for_debian.patch: Manually updated to new upstream source code. * debian/patches/2003_support_multiarch.patch: Refreshed with quilt. * debian/control: Added build dependencies on liblcms2-dev and libopenjpeg-dev. * debian/rules: Check for removed lcms2/ and openjpeg/ subdirectories in the repackaging check again, also set build options for shared liblcms2 and libopenjpeg libraries. * debian/rules: Makefile.in and configure.ac are in the root directory of the source now and do not need to get linked from base/. Also there is no gstoraster and gstopxl CUPS filter in the package any more and no "install-cups" make target any more. * debian/control, debian/rules, debian/ghostscript-cups.install, debian/ghostscript-cups.ppd-updater: Removed the ghostscript-cups binary package. The files are now provided by cups-filters. * debian/symbols.common: Updated for new upstream source. Applied patch which dpkg-gensymbols generated for debian/libgs9.symbols to this file. -- Till Kamppeter Fri, 09 Aug 2013 20:01:36 +0200 ghostscript (9.07~dfsg2-0ubuntu6) saucy; urgency=low * Update symbols file for Aarch64. -- Matthias Klose Sun, 04 Aug 2013 07:42:08 +0200 ghostscript (9.07~dfsg2-0ubuntu5) saucy; urgency=low * Enable parallel builds. * debian/copyright_hints: Remove. The copyright check is run even for arch only builds. For now, rely on the Debian import and handle that better when cdbs supports it. -- Matthias Klose Sat, 03 Aug 2013 21:50:44 +0200 ghostscript (9.07~dfsg2-0ubuntu4) saucy; urgency=low * SECURITY UPDATE: incorporate IcedTea fixes for lcms2 - debian/patches/ojdk-8007925+8007926.patch: Improve cmsStageAllocLabV2ToV4curves. Improve cmsPipelineDup. - debian/patches/ojdk-8007927.patch: Improve cmsAllocProfileSequenceDescription. - debian/patches/ojdk-8007929.patch: Improve CurvesAlloc. - debian/patches/ojdk-8009654.patch: Improve stability of cmsnamed. * debian/control*: adjust libgs9 to Depends on libgs9-common >= ${source:Upstream-Version} (per Matthias Klose) -- Jamie Strandboge Tue, 30 Jul 2013 17:18:14 -0500 ghostscript (9.07~dfsg2-0ubuntu3) raring; urgency=low * debian/patches/020130401-852e545-pxl-xl-driver-produced-drawing-commands-without-setting-color-space.patch: PCL-XL driver (pxlmono/pxlcolor) could produce drawing commands without setting the color space. -- Till Kamppeter Mon, 1 Apr 2013 13:58:30 +0100 ghostscript (9.07~dfsg2-0ubuntu2) raring; urgency=low * debian/libgs__VER__-common.links.in: Removed hard-coded Ghostscript version number in installation path. -- Till Kamppeter Fri, 15 Mar 2013 11:39:30 +0100 ghostscript (9.07~dfsg2-0ubuntu1) raring; urgency=low * New source tarball repackaging - Do not remove liblcms2 and libopenjpeg * debian/rules: Use the liblcms2 shipping with Ghostscript as this version has an API addition which did not make it into upstream liblcms2 yet. * debian/control: Removed build dependency on liblcms2-dev. * debian/symbols.common: Updated for new upstream source. Applied patch which dpkg-gensymbols generated for debian/libgs9.symbols to this file. -- Till Kamppeter Fri, 15 Mar 2013 08:48:30 +0100 ghostscript (9.07~dfsg-0ubuntu1) raring; urgency=low * New upstream release - Ghostscript 9.07 final release - As of this release (9.07), Ghostscript and GhostPDL are distributed under the GNU Affero General Public License (AGPL). - The pdfwrite device now supports linearized (or optimized for fast web view) output directly ("-dFastWebView") - The Font API (FAPI) has been moved from the Postscript interpreter (psi) into the graphics library (base), and extended to support the other languages (PCL/PXL/XPS). All interpreters now use Freetype by default to render all viable font types. - Ghostscript has been extended to support Postscript string and array objects with >64k entries. - Ghostscript has been extended to support file sizes >4Gb - in particular reading and writing PDF files. As a side effect of this, Ghostscript also now supports 64 bit Postscript integer objects. - All CMYK devices can now support simulated overprint of spot colors using the "-dSimulateOverprint" command line option. - Support for use of DeviceN ICC color profiles as the output profile with the tiffsep and psdcmyk devices. - Support for customized named color handling with DeviceN colors - Support for black point compensation - Support for K preservation in CMYK to CMYK conversions - Support for DeviceLink profiles for graphic, image and text objects - Support for custom color replacement - Increased control in specifying color conversions as a function of object type - Full details of the color management features can be found in: /usr/share/doc/ghostscript-doc/GS9_Color_Management.pdf - Provide BigTIFF output option: the tiff devices can write BigTIFF files using the "-dUseBigTIFF" option. This requires libtiff version >=4.0.0 (the option is ignored for versions <4.0.0) - Plus the usual round of bug fixes, compatibility changes, and incremental improvements. - Using built-in libopenjpeg with security fixes for CVE-2009-5030, CVE-2012-1499, and CVE-2012-3358. * debian/patches/020120921-d527ead-fix-segfault-on-pdf-to-image-conversion.patch, debian/patches/020121012-bfae0b9-fix-bounding-box.patch debian/patches/020130122-188e13b-cups-raster-page-size-matching-improvements.patch: Removed upstream patches. * debian/copyright: Ghostscript is under AGPL 3+ now. * debian/control: Build-depend on liblcms2-dev >= 2.4-0ubuntu3. * debian/rules: Updated DEB_UPSTREAM_TARBALL_MD5 * debian/rules: Removed obsolete "--with-omni" from the ./configure command line options, the "omni" driver stopped working years ago, and no one complained. * debian/symbols.common: Updated for new upstream source. Applied patch which dpkg-gensymbols generated for debian/libgs9.symbols to this file. -- Till Kamppeter Wed, 13 Mar 2013 14:23:35 +0100 ghostscript (9.06~dfsg-0ubuntu5) raring; urgency=low * debian/patches/020130122-188e13b-cups-raster-page-size-matching-improvements.patch: CUPS Raster "cups" device: These changes improve the matching of the sizes of the incoming pages with the page sizes available for the printer according to the PPD file. -- Till Kamppeter Tue, 22 Jan 2013 22:52:27 +0100 ghostscript (9.06~dfsg-0ubuntu4) quantal-proposed; urgency=low * debian/patches/020121012-bfae0b9-fix-bounding-box.patch: Fixed BoundingBox entry generation (LP: #1035667, Upstream bug #693293). -- Till Kamppeter Fri, 12 Oct 2012 12:03:27 +0200 ghostscript (9.06~dfsg-0ubuntu3) quantal; urgency=low * debian/patches/020120921-d527ead-fix-segfault-on-pdf-to-image-conversion.patch: Fixed crash on conversion from PDF to image formats like PNG, JPG, ... (LP: #1050602). -- Till Kamppeter Fri, 21 Sep 2012 17:22:27 +0200 ghostscript (9.06~dfsg-0ubuntu2) quantal; urgency=low * debian/rules, debian/control.in.in, debian/control.in, debian/control: Demoted fonts-droid from the Recommends: sectionof the libgs9-common package to Suggests:, ship the DroidSansFallback.ttf fallback font file (LP: 1048820). -- Till Kamppeter Tue, 11 Sep 2012 16:43:27 +0200 ghostscript (9.06~dfsg-0ubuntu1) quantal; urgency=low * New upstream release - Ghostscript 9.06 final release - PDF/A-2 - pdfwrite now supports the creation of PDF/A-2 files. The 'PDFA' command line switch can now take a numeric parameter: 0 = not PDF/A compliant 1 = PDF/A-1b compliant 2 = PDF/A-2b compliant Simply specifying "-dPDFA" continues to have the old behaviour of creating PDF/A-1b files. For PDF/A-2 the command line should include "-dPDFA=2". - pdfwrite "Server mode" - pdfwrite can now be run in "server mode" which allows the device to be closed without closing the interpreter. This means it is no longer necessary to terminate GS before starting a new PDF conversion. This leads on to: - pdfwrite now supports the "%d" format in the OutputFile switch. If this is set then pdfwrite will output each page of input to an individual file. - ps2write - recent exposure to a range of PostScript devices has thrown up some interesting deficiencies in those devices. ps2write now emits PostScript in slightly different ways in order to produce output on a wider variety of devices. In some cases this also results in improved print times but it is still important to set the resolution appropriately for the output device, especially if the input contains transparency. - Ghostscript can now use output intents defined in PDFs by using the "-dUsePDFX3Profile" command line option. See ICC Color Parameters for details. - tiffsep/tiffsep1: support for large numbers of separations improved. The previous implementation of those devices utilised a "compressed color encoding" to represent the tints for all the plates in one 64 bit value. As the number of plates increased, fewer bits were available for the tint for each plate, ultimately resulting in an "unencodable pixels" error. These revisions remove the reliance on the compressed color encoding, thus ensuring that we have a consistent color bit depth, regardless of the number of plates, and ensuring the "unencodable pixels" error will never occur. - Also as a result of these changes, there are substantial performance improvements in jobs with separations and transparency. - tiffsep, psdcmyk and psdrgb now support the "downscaler" functionality. This brings the "tiffscaled" style functionality to the DeviceN output devices, so jobs can be rendered internally in contone and at a high resolution, and the output optionally downsampled by a level specified by "-dDownScaleFactor=n", and also optionally error diffused to 1bpp output. - clist storage, for rendering pages in bands, is now a run-time option: -sBandListStorage={file|memory}. - Plus the usual round of bug fixes, compatibility changes, and incremental improvements. - Using built-in libopenjpeg with security fixes for CVE-2009-5030, CVE-2012-1499, and CVE-2012-3358. * debian/rules: Updated DEB_UPSTREAM_TARBALL_MD5 * debian/symbols.common: Updated for new upstream source. Applied patch which dpkg-gensymbols generated for debian/libgs9.symbols to this file. -- Till Kamppeter Wed, 08 Aug 2012 17:02:27 +0200 ghostscript (9.06~dfsg~20120803-0ubuntu1) quantal; urgency=low * New source tarball repackaging - Do not remove libopenjpeg * debian/rules: Build with libopenjpeg instead of libjasper. Use the libopenjpeg shipping with Ghostscript as this version has major fixes and adaptations which did not make it into upstream libopenjpeg. libjasper has major performance issues which the Jasper developers refuse to fix (Ghostscript upstream bug #692002). * debian/control: Removed build dependency on lijasper-dev. -- Till Kamppeter Fri, 03 Aug 2012 10:46:00 +0200 ghostscript (9.06~dfsg~20120802-0ubuntu2) quantal; urgency=low * debian/control: Removed the libicc-dev build dependency again as Ghostscript does not use libicc any more. The icclib directory in the original source tarball was simply forgotten there. -- Till Kamppeter Thu, 02 Aug 2012 20:10:54 +0200 ghostscript (9.06~dfsg~20120802-0ubuntu1) quantal; urgency=low * New upstream release - GIT snapshot from August, 1 2012. - Ghostscript 9.06rc1 + fix of shared object mode build of gsx executable. * debian/patches/020120302~ceef323.patch, debian/patches/020120319~d6f83df.patch, debian/patches/020120329-be64563-pdfwrite-when-a-charstring-is-not-found-for-a-glyph-use-the-notdef-width-instead-of-0.patch, debian/patches/020120420~67a924e.patch, debian/patches/020120711-4f6b985-write-transparent-type2-pattern-color-to-clist.patch, debian/patches/020120720-01dc18e-ps2write-use-pfa-fonts.patch, debian/patches/1001_fix_manpage_typo.patch, debian/patches/1002_cms_typos.patch: Removed upstream patches. * debian/patches/2001_docdir_fix_for_debian.patch, debian/patches/2002_gs_man_fix_debian.patch: Refreshed with quilt. * debian/patches/2003_support_multiarch.patch: Updated manually to apply to the new Ghostscript source code. * debian/control: Re-added build dependency on libicc-dev, it seems that it got lost by some Debian/Ubuntu merge. * debian/rules: Added ./icclib/ directories to DEB_UPSTREAM_REPACKAGE_EXCLUDES and removed the files in Resource/CMap/, again, as the changes got lost with some Debian/Ubuntu merge. * debian/rules: linked base/configure.ac and base/Makefile.in to package root directory so that the autotools find them (needed on GIT snapshots). * debian/symbols.common: Updated for new upstream source. Applied patch which dpkg-gensymbols generated for debian/libgs9.symbols to this file. -- Till Kamppeter Wed, 01 Aug 2012 19:45:54 +0200 ghostscript (9.05~dfsg-6ubuntu4) quantal; urgency=low * debian/patches/020120720-01dc18e-ps2write-use-pfa-fonts.patch: Embed fonts as PFA and not ASCII85-encoded PFB in the PostScript output, some PostScript printers (Kyocera) cannot cope with the latter (LP: #1025061). -- Till Kamppeter Sat, 21 Jul 2012 10:58:13 +0200 ghostscript (9.05~dfsg-6ubuntu3) quantal; urgency=low * debian/control.in.in: - Update references to libtiff4-dev to libtiff5-dev -- Michael Terry Thu, 12 Jul 2012 00:21:22 -0400 ghostscript (9.05~dfsg-6ubuntu2) quantal; urgency=low * debian/patches/020120711-4f6b985-write-transparent-type2-pattern-color-to-clist.patch: When using a clist, ensure that all the color space data for the pattern gets written to the clist, *and* that the clist correctly records all the relevant transparency data (LP: #1022516, upstream bug #693176). -- Till Kamppeter Wed, 11 Jul 2012 17:08:13 +0200 ghostscript (9.05~dfsg-6ubuntu1) quantal; urgency=low * Merge with Debian; remaining changes: - debian/patches/020120329-be64563-pdfwrite-when-a-charstring-is-not-found-for-a-glyph-use-the-notdef-width-instead-of-0.patch: The "pdfwrite" output device uses zero and not the width of /.notdef when using /.notdef for a glyph not found in an embedded font. This leads to wrong spacing in a PostScript file missing a space glyph. - debian/ghostscript-cups.postinst: Removed the post-install script which was only there to update the PPDs of existing print queues. - debian/rules, debian/ghostscript-cups.ppd-updater: Added data file to trigger the update of the PPD files of existing print queues by CUPS and to tell CUPS which PPD files to use for the update and how to match them with the PPDs of the existing queues. - debian/ghostscript-doc.install, debian/ghostscript-doc.doc-base: Install the Ghostscript documentation into /usr/share/doc/ghostscript-doc instead of /usr/share/doc/ghostscript. - debian/control, debian/rules, debian/libgs__VER__.install.in, debian/libgs-dev.install: Stop using d-shlibmove, it is not compatible with liblcms2. - debian/libgs__VER__-common.postinst.in, debian/libgs__VER__-common.prerm.in: Create a symlink /usr/share/ghostscript/current to the /usr/share/ghostscript/ directory of the newest installed libgs-common package, to have version-independent access to the Ghostscript files. - debian/rules: Generate ABI version number (variable "abi") correctly, cutting off repackaging and pre-release parts. - debian/rules: update tarball MD5 value to what we already have uploaded in Ubuntu. - debian/rules, debian/control: Removed build dependency on liblcms1-dev, icc34.h is shipped with Ghostscript now. - debian/rules: Install ghostscript-cups.ppd-updater and remove the dependency on cups-client from ghostscript-cups. - debian/rules: clean up after leftover gstoraster/gstopxl instead of the pstoraster/pstopxl old names. - debian/rules, debian/ubuntu/apport-hook.py: Apport hook. - debian/symbols.common: added DoubleGlyphList@Base. * debian/rules: remove the ./Resource/CMap/Identity-UTF16-H files from the DEB_UPSTREAM_REPACKAGE_EXCLUDES list. Due to an error in the previous upload it found its way in the source tarball. -- Mathieu Trudel-Lapierre Fri, 08 Jun 2012 11:06:51 -0400 ghostscript (9.05~dfsg-6) unstable; urgency=low * Fix symlink to DroidSans. Closes: bug#661764. Thanks to Ian Zimmerman. * Have libgs9 depend on recent poppler-data favored over gs-cjk-resource. -- Jonas Smedegaard Thu, 24 May 2012 20:02:18 +0200 ghostscript (9.05~dfsg-5) unstable; urgency=low * Add patch from upstream to fix endian issue with lcms2 i/face. -- Jonas Smedegaard Fri, 27 Apr 2012 12:32:47 +0200 ghostscript (9.05~dfsg-4) unstable; urgency=low * Add patch from upstream to workaround Brother printer CCITTFaxDecode bugs. Closes: bug#664966. Thanks to Vincent Bernat. * Use anonscm.debian.org URL in Vcs-Browser field. * Update copyright file: + Double-indent in Files-Excluded field. + Newline-delimit a Files list. -- Jonas Smedegaard Thu, 22 Mar 2012 22:02:29 +0100 ghostscript (9.05~dfsg-3) unstable; urgency=low * Bump standards-version to 3.9.3. * Bump copyright file format to 1.0. * Document use of fonts-droid in README.Debian and long description of libgs9-common. See bug#661764. Thanks to Ian Zimmerman and Jonathan Nieder. * Add patch from upstream VCS to not hack the libjpeg mem manager. Closes: bug#653061. Thanks to Chris Liddell and others. * Update copyright file: + Fix double-indent successive copyright lines in copyright file, as required for "formatted text" fields. + Drop duplicate copyright holder. * Update symbols file. * Stop explicitly and unconditionally appending -fPIC to CFLAGS: Better handled upstream for some time now. -- Jonas Smedegaard Sat, 03 Mar 2012 13:46:38 +0100 ghostscript (9.05~dfsg-2) unstable; urgency=low * Recommend fonts-droid (not ship DroidSansFallback.ttf). * Avoid ghostscript-x maintainer scripts invoking ldconfig. * Add patch 1001 to fix typo in german manpage. * Unfuzz and enable patch 1002 (mostly cosmetic, to have it appear at http://patch-tracker.debian.org/). -- Jonas Smedegaard Sun, 12 Feb 2012 15:48:23 +0100 ghostscript (9.05~dfsg-1) unstable; urgency=low * New upstream release. * Update copyright file: + Improve Copyright shortnames: - BSD → BSD-3-Clause - MIT~Open → NTP~Open - MIT~WSU → NTP~WSU - MIT~Lucent → NTP~Lucent - other-Adobe → BSD-3-Clause~Adobe + Fix merge double Files-Excluded, and list globbing before specific files. + Quote licenses in Comment fields. + Drop duplicate Comment fields. + Fix refer to license shortname AFPL~AFPL (not AFPL). + Extend copyright years. + Add new Files section, Apache-2.0 licensed (TrueType file, not linked code so not challenging GPL). + Drop a few Files sections and a License section. * strip convenience library openjpeg from upstream source. * Imported Upstream version 9.05~dfsg * Drop patches 020110819 and 1001, applied upstream. * Explicitly disable use of openjpeg: Now preferred if available but requires patching for ICC and CMYK support. * Update symbols file. -- Jonas Smedegaard Fri, 10 Feb 2012 19:27:35 +0100 ghostscript (9.05~dfsg-0ubuntu5) quantal; urgency=low * debian/rules: Have libgs9 depend on recent poppler-data favored over gs-cjk-resource. -- Mathieu Trudel-Lapierre Wed, 06 Jun 2012 15:18:33 -0400 ghostscript (9.05~dfsg-0ubuntu4) precise; urgency=low * debian/patches/020120329-be64563-pdfwrite-when-a-charstring-is-not-found-for-a-glyph-use-the-notdef-width-instead-of-0.patch: The "pdfwrite" output device uses zero and not the width of /.notdef whn using /.notdef for a glyph not found in an embedded font. This leads to wrong spacing in a PostScript file missing a space glyph (LP: #960989, upstream bug #692944). -- Till Kamppeter Thu, 29 Mar 2012 15:41:13 +0100 ghostscript (9.05~dfsg-0ubuntu3) precise; urgency=low * debian/patches/020120319-d6f83df-ps2write-not3ccitt-option.patch: Added option to let Ghostscript's "ps2write" output device not compress images and bitmap glyphs with CCITTFax filter. The CCITTFax decoder in Brother's PostScript printers is broken (LP: #955553). -- Till Kamppeter Mon, 19 Mar 2012 11:45:13 +0100 ghostscript (9.05~dfsg-0ubuntu2) precise; urgency=low * debian/ghostscript-doc.install, debian/ghostscript-doc.doc-base: Install the Ghostscript documentation into /usr/share/doc/ghostscript-doc instead of /usr/share/doc/ghostscript (LP: #789235). * debian/libgs__VER__-common.postinst.in, debian/libgs__VER__-common.prerm.in: Create a symlink /usr/share/ghostscript/current to the /usr/share/ghostscript/ directory of the newest installed libgs-common package, to have version-independent access to the Ghostscript files (LP: #327244). -- Till Kamppeter Wed, 7 Mar 2012 17:31:13 +0100 ghostscript (9.05~dfsg-0ubuntu1) precise; urgency=low * New upstream release - Ghostscript 9.05 release, February, 8 2012 - Ghostscript's PDF interpreter is now able to make use of the DroidSansFallback TrueType font to automatically substitute for missing CIDFonts. Whilst it is always best to ensure the original CIDFont is available for the best and most accurate output, the ability to make an automatic substitution will be valuable for those merely viewing or proofing such files. - This release includes support for a proofing ICC profile. The command option is specified using -sProofProfile=filename. With this option, the color output will emulate what would be obtained had the source file been rendered on a device defined by the proofing profile. (See GS9_Color_Management.pdf for details.) - This release includes support for a device link ICC profile. The command option is specified using -sDeviceLinkProfile=filename. With this option, the device link profile is added to the end of the link transform from source to destination. In this case, one can include a command line option like "-sDevice=tiff32nc -sOutputICCProfile=srgb.icc -sDeviceLinkProfile=linkRGBtoCMYK.icc" and source colors will be mapped through sRGB and through the device link profile to CMYK values for the device. (See GS9_Color_Management.pdf for details.) - Ghostscript now supports "unmanaged color transformations" for source DeviceXXX colors (in other words, they use a simplistic conversion, rather than the ICC profile based color workflow). This is beneficial in uses where performance takes precedence over ultimate color fidelity (the command line parameter -dUseFastColor enables this). - The font set distributed with Ghostscript has been changed to the standard 35 Postscript-compatible fonts distributed by URW. - Ghostscript now includes a simple ink-coverage device, contributed by Sebastian Kapfer (inkcov). - The TIFF, JPEG and PNG output devices now support embedding of the device ICC profile in the output file. - jbig2dec now has simple halftone region support. - The ps2write device has had a large number of output quality and stability improvements. - The txtwrite output was modified so that it more closely matches the output from MuPDF, if requested. Note that the algorithms used by the two products are not identical and may return slightly differing results (See Devices.htm for details). * debian/rules: Updated MD5 sum for original source tarball * debian/symbols.common: Updated for new upstream source. Applied patch which dpkg-gensymbols generated for debian/libgs9.symbols to this file. -- Till Kamppeter Thu, 09 Feb 2012 13:22:13 +0100 ghostscript (9.05~dfsg~20120203-0ubuntu1) precise; urgency=low * New upstream release - GIT snapshot from February, 2 2012. - Upstream fix for X11 display output device (LP: #925950). - Additional fix for paper size matching of CUPS Raster output device. * debian/rules: Reverted changes of last package, problem fixed upstresm. -- Till Kamppeter Fri, 03 Feb 2012 17:39:41 +0100 ghostscript (9.05~dfsg~20120202-0ubuntu2) precise; urgency=low * debian/rules: Force '-DGS_DEVS_SHARED_DIR=\"/usr/lib/ghostscript/9.05\"' into the gcc command lines via CFLAGS, so that X11 display device support works (LP: #925950). -- Till Kamppeter Fri, 03 Feb 2012 13:54:15 +0100 ghostscript (9.05~dfsg~20120202-0ubuntu1) precise; urgency=low * New upstream release - GIT snapshot from February, 2 2012. - Ghostscript 9.05rc1 + fix of paper size matching in CUPS Raster output device (LP: #917148). -- Till Kamppeter Thu, 02 Feb 2012 22:16:15 +0100 ghostscript (9.05~dfsg~20120125-0ubuntu1) precise; urgency=low * New upstream release - GIT snapshot from January, 25 2012. - Snapshot close before GS 9.05 upstream release to test for last bugs\ before the release. * debian/patches/020110812~46b4ee6-pxl-landscape.patch, debian/patches/020110812~d9e044e-lips4v-fix.patch, debian/patches/020110815-05b517b-gdevcups-c-eliminate-compiler-warning.patch, debian/patches/020110815-1920f21-cups-raster-set-default-color-profiles.patch, debian/patches/020110815-eb6b631-cups-raster-generate-cups-rgbw.patch, debian/patches/020110816-781b738-cups-raster-fix-segfaults-on-color-model-change.patch, debian/patches/020110816-d8da050-cups-raster-improve-black-recognition-on-cmyk-to-rgbw.patch, debian/patches/020110817-766df64-cups-raster-suppress-warnings.patch, debian/patches/020110819~fa67a1d.patch, debian/patches/020110923-5688545-fix-setting-the-iccprofilesdir-userparam.patch, debian/patches/020110923-7e048c5-dont-crash-when-not-finding-icc-profile.patch, debian/patches/020111005-d5f1e72-clist-fix-for-rgbw-color-mode.patch, debian/patches/020111114-4258227-lzw-encode-filter-fix.patch, debian/patches/029111114-08dc129-ps2write-truetype-fix.patch, debian/patches/020111122-5cce070-ps2write-postscript-duplex-command-insertion.patch, debian/patches/020111122-cd8f397-ps2write-fix-handling-of-format-4-cmap-subtables-in-truetype-fonts.patch, debian/patches/020111125-979f218-ps2write-fix-conversion-of-escaped-string-to-hex-string.patch, debian/patches/020111209-5359a2d-do-not-use-hexadecimal-names-for-type42-charstrings-and-encoding.patch: Removed upstream patches. * debian/patches/1001_autoconfigure_cms_choice.patch: Removed, build system is appropriately approved by upstream. * debian/rules: linked base/configure.ac and base/Makefile.in to package root directory so that the autotools find them (needed on GIT snapshots). * debian/rules, debian/control: Removed build dependency on liblcms1-dev, icc34.h is shipped with Ghostscript now. * debian/rules: Added ./icclib/ and ./openjpeg/ directories to DEB_UPSTREAM_REPACKAGE_EXCLUDES and removed the files in Resource/CMap/ (they are free now). * debian/copyright: Added icclib/* and openjpeg/* to the list of excluded files. Updated entries for the files in Resource/CMap/. Updated for renaming cups/psto* to cups/gsto*. * debian/symbols.common: Updated for new upstream source. Applied patch which dpkg-gensymbols generated for debian/libgs9.symbols to this file. * Merge from Debian testing, remaining changes (recover after accidental sync in previous (upload): - debian/control: + Keep gs-common with dependency on ghostscript, still too many packages assuming gs-common has the binaries. + Really break and replace older ghostscript in libgs9-common. - debian/control, debian/rules, debian/libgs__VER__.install.in, debian/libgs-dev.install: Stop using d-shlibmove, it is not compatible with libcms2. - debian/rules, debian/ubuntu/apport-hook.py: Apport hook. - debian/rules, debian/ghostscript-cups.ppd-updater: Added data file to trigger the update of the PPD files of existing print queues by CUPS and to tell CUPS which PPD files to use for the update and how to match them with the PPDs of the existing queues. - debian/rules: + Generate ABI version number (variable "abi") correctly, cutting off repackaging and pre-release parts. + The scripts pv.sh and fixmswrd.pl are not shipped upstream any more, so we do not need to delete them any more. + Install ghostscript-cups.ppd-updater and remove the dependency on cups-client from ghostscript-cups. - debian/symbols.common: resync with Debian, with the exception of lcms2 symbols which were only enabled in 9.04~dfsg-0ubuntu12 in Ubuntu. - debian/copyright: update credits for the Ubuntu changes. - debian/ghostscript.preinst: Use Ubuntu version numbers. - debian/ghostscript-cups.postinst: Removed the post-install script which was only there to update the PPDs of existing print queues. - debian/watch: Search for .tar.bz2 source tarballs -- Till Kamppeter Wed, 25 Jan 2012 21:22:59 +0100 ghostscript (9.04~dfsg-3) unstable; urgency=low [ Steve Langasek ] * Mark ghostscript Multi-Arch: foreign, so that the package manager knows the package satisfies dependencies and build-dependencies of packages regardless of architecture. * Drop gs-gpl package: it was already a transitional package in lenny, and html2ps in squeeze is the last package to recommend it (nothing in wheezy references it). * Eliminate the gs provides; nothing in squeeze or wheezy references it. * Drop gs-common package: it was also transitional from lenny on, and latexmk in wheezy is the last package to reference it as a Suggests only. Closes: bug#646870. Thanks to Jakub Wilk and Didier Raboud. [ Jonas Smedegaard ] * Update copyright file: Fix add missing copyright paragraph. Thanks to lintian. * Drop transitional Replaces: affecting only testing. -- Jonas Smedegaard Thu, 24 Nov 2011 13:01:31 +0700 ghostscript (9.04~dfsg-2ubuntu6) precise; urgency=low * debian/patches/020111209-5359a2d-do-not-use-hexadecimal-names-for-type42-charstrings-and-encoding.patch: Do not use hexadecimal names for type42 Charstrings and Encoding. This fixes substitution of certain characters by others when converting PDF to PostScript with the "ps2write" output device (LP: #898532, upstream bug #692711) * debian/patches/020111125-979f218-ps2write-fix-conversion-of-escaped-string-to-hex-string.patch: ps2write: Fix conversion of escaped string to Hex string (LP: #902145, upstream bug #692612). -- Till Kamppeter Fri, 9 Dec 2011 13:45:59 +0100 ghostscript (9.04~dfsg-2ubuntu5) precise; urgency=low * No-change rebuild to drop spurious libsfgcc1 dependency on armhf. -- Adam Conrad Fri, 02 Dec 2011 17:27:55 -0700 ghostscript (9.04~dfsg-2ubuntu4) precise; urgency=low * debian/rules: Let the ghostscript binary package also provide gs-esp, as several proprietary printer drivers still depend on gs-esp (LP: #897309). -- Till Kamppeter Fri, 2 Dec 2011 11:35:59 +0100 ghostscript (9.04~dfsg-2ubuntu3) precise; urgency=low * debian/patches/020111122-cd8f397-ps2write-fix-handling-of-format-4-cmap-subtables-in-truetype-fonts.patch: ps2write: Fixed handling of format 4 CMAP subtables in TrueType fonte. This made several characters coming out as garbage when converting PDF to PostScript (LP: #891074). * debian/patches/020111122-5cce070-ps2write-postscript-duplex-command-insertion.patch: ps2write: Insertion of duplex printing commands from PPD files into ps2write-generated PostScript did not have any effect, making duplex printing on PostScript printers not work in many cases (LP: #885118). -- Till Kamppeter Tue, 22 Nov 2011 10:46:59 +0100 ghostscript (9.04~dfsg-2ubuntu2) precise; urgency=low * debian/patches/020111114-4258227-lzw-encode-filter-fix.patch: In the LZW encoder filter increment the code size before writing out EOD when the last code reaches the current limit code. Fix incorrect bytes or decoding errors at the end of some LZW-encoded streams. Fixes problems of ps2write producing PostScript output with spurious extra bytes (LP: #890270, upstream bug #692679). * debian/patches/029111114-08dc129-ps2write-truetype-fix.patch: Improved the TrueType composite glyph handling of the "ps2write" output device. This way PDF output of LibreOffice gets correctly converted to PostScript for PostScript printers and PostScript-based drivers (LP: #879977, upstream bug #879977). -- Till Kamppeter Mon, 14 Nov 2011 12:59:59 +0100 ghostscript (9.04~dfsg-2ubuntu1) precise; urgency=low * Merge from Debian testing, remaining changes: - debian/control: + gs-common: Reintroduce dependency on ghostscript, still too many packages assuming gs-common has the binaries. + Really break and replace older ghostscript in libgs9-common. - debian/control, debian/rules, debian/libgs__VER__.install.in, debian/libgs-dev.install: Stop using d-shlibmove, it is not compatible with libcms2. - Apport hook. - debian/ghostscript-cups.ppd-updater: Added data file to trigger the update of the PPD files of existing print queues by CUPS and to tell CUPS which PPD files to use for the update and how to match them with the PPDs of the existing queues. - debian/rules: + Generate ABI version number (variable "abi") correctly, cutting off repackaging and pre-release parts. + The scripts pv.sh and fixmswrd.pl are not shipped upstream any more, so we do not need to delete them any more. + Install ghostscript-cups.ppd-updater and remove the dependency on cups-client from ghostscript-cups. - debian/symbols.common: resync with Debian, with the exception of lcms2 symbols which were only enabled in 9.04~dfsg-0ubuntu12 in Ubuntu. - debian/copyright: update credits for the Ubuntu changes. - upstream patches: + 020110812~46b4ee6-pxl-landscape.patch: Fixed rendering landscape-oriented input files with PCL-XL output through the pxlmono and pxlcolor output devices + 020110812~d9e044e-lips4v-fix.patch: Fixed lips4v driver + 020110815-1920f21-cups-raster-set-default-color-profiles.patch: Let the CUPS Raster output device set the correct default output color space if none is explicitly selected via -sOutputICCProfile= + 020110815-05b517b-gdevcups-c-eliminate-compiler-warning.patch: Eliminated a compiler warning caused by the previous patch. + 020110815-eb6b631-cups-raster-generate-cups-rgbw.patch: Let the CUPS Raster output device generate RGBW as it is described in the CUPS specification for the CUPS Raster format. + 020110816-d8da050-cups-raster-improve-black-recognition-on-cmyk-to-rgbw.patch: CUPS Raster: Improved recognition of black pixels on CMYK -> RGBW conversion + 020110816-781b738-cups-raster-fix-segfaults-on-color-model-change.patch: Fix for segfaults in the CUPS Raster output device. + 020110817-766df64-cups-raster-suppress-warnings.patch: Code cleanup of the CUPS Raster device to suppress compiler warnings. + 020110923-7e048c5-dont-crash-when-not-finding-icc-profile.patch, 020110923-5688545-fix-setting-the-iccprofilesdir-userparam.patch: correctly find color profiles, and correctly handle error when not found instead of crashing. + 020111005-d5f1e72-clist-fix-for-rgbw-color-mode.patch: Fixed color handling in clist (banding) mode to correctly support RGBW color space - debian/ghostscript.preinst: Use Ubuntu version numbers. - debian/ghostscript-cups.postinst: Removed the post-install script which was only there to update the PPDs of existing print queues. - debian/watch: Search for .tar.bz2 source tarballs * Dropped changes, included in Debian: - debian/control: Build-depend on libdbus-1-dev. - debian/copyright: Added lcms2/* to the list of excluded files. - debian/rules: + Added new "--with-install-cups" option to the ./configure command line. + Added ./lcms2/ directory to DEB_UPSTREAM_REPACKAGE_EXCLUDES. + remove unneeded cidfmap correctly - Enable D-Bus in the ./configure command line, build-depend on libdbus-1-dev, and let ghostscript-cups recommend colord. - Build Ghostscript against liblcms instead of liblcms1. - debian/ghostscript.preinst: Clean up traces of Ghostscript in defoma via "defoma-app purge gs", so that when updating packages which still use defoma no warnings get issued. * Mark ghostscript Multi-Arch: foreign. -- Steve Langasek Sun, 06 Nov 2011 10:50:36 -0800 ghostscript (9.04~dfsg-2) unstable; urgency=low * Update copyright file: + Fix add dot in horisontal space of license MIT~Lucent. Thanks to lintian. * Suppress bogus d-shlibs resolving of ld1-dev: Fixes FTBFS. Thanks to Pino Toscano. -- Jonas Smedegaard Mon, 03 Oct 2011 00:20:56 +0200 ghostscript (9.04~dfsg-1) unstable; urgency=low * New upstream release. Closes: bug#597833. Thanks to Till Kamppeter and Kurt Roeckx. * Exclude lcms2 from repackaged source. * Update patches: + Drop patches cherry-picked from upstream Git: Applied upstream now. + Unfuzz patch 2001. + Add patch cherry-picked upstream to add sys/time.h definition only once. + Add patch 1001 to autoconfigure choice of CMS in use (not hardcode to lcms 1.x). + Add patch 1002 to fix a few comment typos in CMS-related makefiles. + Add patch 2003 to include multiarch paths, fixing FTBFS. Closes: bug#639073. Thanks to Philippe Le Brouster. * Fix FTBFS on s390: Adjust symbols file. Closes: bug#636546. Thanks to Aurelien Jarno. * Link against lcms2 (not lcms1). Regenerate autoconf during build (needed for patch 1001). Build-depend on autoconf. Build-depend on liblcms1-dev (in addition to liblcms2-dev): Provides needed icc34.h header. * Let CUPS rasterizer link against D-Bus. Build-depend on libdbus-1-dev, and recommend colord. * Improve ghostscript-cups postinst: + Limit lp* commands to localhost to avoid hanging. See bug#543468. Thanks to Till Kamppeter. + Trap non-numeric signals, and also ILL and ABRT (not only HUP INT QUIT PIPE TERM). Thanks to Till Kamppeter. * Improve ghostscript preinst: + Purge obsolete defoma cruft to silence warnings. Thanks to Till Kamppeter. * Silence iccprofiles and example PDFs from copyright tracking. * Include configure flag --with-install-cups. * Update package relations: + Relax build-dependency on cdbs (unneededly tight). + Relax build-depend unversioned on debhelper and devscripts (needed versions satisfied even in oldstable). * Fix (really really this time) drop cidfmap in Init dir if virtually empty. Closes: bug#531182, #618354. Thanks to Youhei SASAKI and Mitsuya Shibata. * Update symbols files. -- Jonas Smedegaard Sun, 02 Oct 2011 15:42:48 +0200 ghostscript (9.04~dfsg-0ubuntu12) precise; urgency=low * debian/patches/1001_dont-crash-when-not-finding-icc-profile.patch, debian/patches/020110923-5688545-fix-setting-the-iccprofilesdir-userparam.patch, debian/patches/020110923-7e048c5-dont-crash-when-not-finding-icc-profile.patch: Patch got applied upstream, replaced the patch by "official" upstream GIT patches. No change in source code. * debian/control, debian/rules: Build Ghostscript against liblcms instead of liblcms1, to fix a crash on Apple-generated EPS figures (both standalone or embedded in LaTeX-generated PostScript files, LP: #787067). * debian/control, debian/rules, debian/libgs__VER__.install.in, debian/libgs-dev.install: Stop using d-shlibmove, it is not compatible with libcms2. * debian/symbols.common: Updated. Applied patch which dpkg-gensymbols generated for debian/libgs9.symbols to this file. -- Till Kamppeter Mon, 17 Oct 2011 15:52:31 +0200 ghostscript (9.04~dfsg-0ubuntu11) oneiric; urgency=low * debian/patches/020111005-d5f1e72-clist-fix-for-rgbw-color-mode.patch: Fixed color handling in clist (banding) mode to correctly support RGBW color space (LP: #864509, Upstream bug 692568). -- Till Kamppeter Thu, 6 Oct 2011 09:00:00 +0200 ghostscript (9.04~dfsg-0ubuntu10) oneiric; urgency=low * debian/patches/1001_dont-crash-when-not-finding-icc-profile.patch: Updated patch to not only prevent the crash but also actually finding the color profiles (Complete fix for LP: #856766, Upstream bug 692532). -- Till Kamppeter Fri, 23 Sep 2011 17:08:31 +0200 ghostscript (9.04~dfsg-0ubuntu9) oneiric; urgency=low * debian/patches/1001_dont-crash-when-not-finding-icc-profile.patch: Handle error code if Ghostscript cannot load an ICC profile, to avoid a crash (LP: #856766, Upstream bug 692532). * debian/patches/1000_fix_segfaults_in_cups_raster_device.patch: Removed old patch which is not applied any more. * debian/symbols.common: Updated. Applied patch which dpkg-gensymbols generated for debian/libgs9.symbols to this file. -- Till Kamppeter Fri, 23 Sep 2011 11:43:31 +0200 ghostscript (9.04~dfsg-0ubuntu8) oneiric; urgency=low * debian/rules: remove unneeded cidfmap correctly (LP: #853768) -- Mitsuya Shibata Mon, 19 Sep 2011 19:58:46 +0900 ghostscript (9.04~dfsg-0ubuntu7) oneiric; urgency=low * debian/rules: Do not use the XCFLAGS variable of "make" for setting HAVE_SYS_TIME_H, as this breaks the X support via dynamically linking output device module. -- Till Kamppeter Mon, 29 Aug 2011 15:54:31 +0200 ghostscript (9.04~dfsg-0ubuntu6) oneiric; urgency=low * debian/patches/020110817-766df64-cups-raster-suppress-warnings.patch: Code cleanup of the CUPS Raster device to suppress compiler warnings. * debian/patches/1000_fix_segfaults_in_cups_raster_device.patch, debian/patches/020110816-781b738-cups-raster-fix-segfaults-on-color-model-change.patch: Replaced patch by the appropriate patch from upstream. -- Till Kamppeter Wed, 17 Aug 2011 23:15:31 +0200 ghostscript (9.04~dfsg-0ubuntu5) oneiric; urgency=low * debian/ghostscript-cups.ppd-updater: Added data file to trigger the update of the PPD files of existing print queues by CUPS and to tell CUPS which PPD files to use for the update and how to match them with the PPDs of the existing queues. * debian/ghostscript-cups.postinst: Removed the post-install script which was only there to update the PPDs of existing print queues. * debian/rules: Install ghostscript-cups.ppd-updater and remove the dependency on cups-client from ghostscript-cups. * debian/patches/1000_fix_segfaults_in_cups_raster_device.patch: Temporary fix for segfaults in the CUPS Raster output device. It stops the segfaults but has a slight memory leak. A better fix is in the works by the upstream developers. -- Till Kamppeter Mon, 15 Aug 2011 14:49:31 +0200 ghostscript (9.04~dfsg-0ubuntu4) oneiric; urgency=low * debian/patches/020110816-d8da050-cups-raster-improve-black-recognition-on-cmyk-to-rgbw.patch: CUPS Raster: Improved recognition of black pixels on CMYK -> RGBW conversion (Upstream bug 691922). * debian/patches/020110815-1920f21-cups-raster-set-default-color-profiles.patch: Let the CUPS Raster output device set the correct default output color space if none is explicitly selected via the "-sOutputICCProfile=..." (Upstream bug 691922). * debian/patches/020110815-05b517b-gdevcups-c-eliminate-compiler-warning.patch: Eliminated a compiler warning caused by the previous patch. * debian/patches/020110815-eb6b631-cups-raster-generate-cups-rgbw.patch: Let the CUPS Raster output device generate RGBW as it is described in the CUPS specification for the CUPS Raster format (Upstream bug 691922). -- Till Kamppeter Mon, 15 Aug 2011 14:49:31 +0200 ghostscript (9.04~dfsg-0ubuntu3) oneiric; urgency=low * debian/rules: Add "XCFLAGS=-DHAVE_SYS_TIME_H=1" to the "make" command line as the multiarch changes of libc6-dev ar not compatible with Ghostscript's auto-detection of time.h (LP: #825054). * debian/symbols.common: Updated. Applied patch which dpkg-gensymbols generated for debian/libgs9.symbols to this file. * debian/patches/020110812~46b4ee6-pxl-landscape.patch: Fixed rendering landscape-oriented input files with PCL-XL output through the pxlmono and pxlcolor output devices (Upstream bug 692128). * debian/patches/020110812~d9e044e-lips4v-fix.patch: Fixed lips4v driver (Upstream bug 690565). -- Till Kamppeter Fri, 12 Aug 2011 14:37:31 +0200 ghostscript (9.04~dfsg-0ubuntu2) oneiric; urgency=low * debian/rules: Enable D-Bus in the ./configure command line, build-depend on libdbus-1-dev, and let ghostscript-cups recommend colord. All this is needed for colord support (LP: #788099). * debian/control: Build-depend on libdbus-1-dev. -- Till Kamppeter Wed, 10 Aug 2011 01:12:31 +0200 ghostscript (9.04~dfsg-0ubuntu1) oneiric; urgency=low * New upstream release - Final 9.04 release, August, 5 2011 - Flexibility for controlling color based upon the graphic object type. Unique output ICC profiles and rendering intents for vector graphic, image and text portions of a document can be set. It is also possible to override source color specifications and use specified ICC profiles and rendering intents for RGB and CMYK vector graphics, images and text portions of a document. Finally, DeviceGray source colors can now easily be specified to map either to K only or composite CMYK when the output device supports CMYK colorants. - New tiffscaled8 and tiffscaled24 devices. - PDF interpreter now tries to continue interpreting after an error in the input stream. - Re-enabled x11alpha as the default device on Unix systems, the problems with transparency are solved. - Experimental text extraction device "txtwrite" with full Unicode support. - Print rendering speed improvements for PDF input files (Upstream bug #691755, LP: #568363, LP: #668800). - Several fixes on the CUPS Raster output device to improve stability (Upstream bug #691586, #692368, #692393, LP: #628030). - Fixes on the RGBW color space support (needed for HP printers used with HPLIP) of the CUPS Raster output device, to work with PDF input files with transparency and to reproduce the colors correctly (Upstream bug #691922). - Added "-dNOINTERPOLATE" to the command lines of the CUPS filters to get a significant rendering speed improvement. - Fix of the pstopxl CUPS filter to make grayscale printing on color printers working. - The pxlmono/pxlcolor drivers produced huge output files in Ghostscript 9.0x (Upstream bug 692329). * debian/rules: Updated MD5 sum for original source tarball * debian/watch: Search for .tar.bz2 source tarballs * debian/symbols.common: Updated for new upstream source. Applied patch which dpkg-gensymbols generated for debian/libgs9.symbols to this file. -- Till Kamppeter Fri, 05 Aug 2011 18:43:31 +0200 ghostscript (9.04~dfsg~20110801-0ubuntu1) oneiric; urgency=low * New upstream release - GIT snapshot from August, 8 2011 - Fixed RGBW color output of the CUPS Raster device (Upstream bug #691922). - Fixed RGBW CUPS Raster output of file with transparency. - Make CUPS filters call Ghostscript with the "-dNOINTERPOLATE" option. - Let gstoraster not crash when it is called outside CUPS (Upstream bug #692384). - Let gstoraster output its error messages with a newline at the end (Upstream bug #692385). * debian/patches/1001_gstoraster_nointerpolate.patch, debian/patches/fix-cups-raster-rgbw-output-of-files-with-transparency.patch: Removed, incorporated upstream. -- Till Kamppeter Mon, 01 Aug 2011 17:16:12 +0200 ghostscript (9.04~dfsg~20110729-0ubuntu3) oneiric; urgency=low * debian/patches/fix-cups-raster-rgbw-output-of-files-with-transparency.patch: Sync the patch with the final solution from upstream (Upstream bug #691922). -- Till Kamppeter Sat, 30 Jul 2011 09:47:01 +0200 ghostscript (9.04~dfsg~20110729-0ubuntu2) oneiric; urgency=low * debian/patches/fix-cups-raster-rgbw-output-of-files-with-transparency.patch: Also corrected the colors of the RGBW output by applying the correct ICC color profile. -- Till Kamppeter Sat, 30 Jul 2011 01:24:01 +0200 ghostscript (9.04~dfsg~20110729-0ubuntu1) oneiric; urgency=low * New upstream release - GIT snapshot from July, 29 2011 (Release Candidate 1) - Fix of a segfault when rendering a PDF file (Upstream bug #692368). - Fix of pstopxl CUPS filter to make grayscale printing on color printers working. - The pxlmono/pxlcolor drivers produced huge output files in Ghostscript 9.0x (Upstream bug 692329). * debian/rules: Added new "--with-install-cups" option to the ./configure command line. * debian/rules: The scripts pv.sh and fixmswrd.pl are not shipped upstream any more, so we do not need to delete them any more. * debian/patches/fix-cups-raster-rgbw-output-of-files-with-transparency.patch: PDF files came out as garbage when printing on color inkjet printers from HP. This was due to the CUPS Raster output being messed up when the input file is a PDF with transparency and the output color space is RGBW. -- Till Kamppeter Fri, 29 Jul 2011 10:59:01 +0200 ghostscript (9.04~dfsg~20110721-0ubuntu2) oneiric; urgency=low * debian/patches/1001_gstoraster_nointerpolate.patch: Make CUPS filters call Ghostscript with the "-dNOINTERPOLATE" option. This makes the rendering of the input files by a factor of 12 faster. This should really eliminate all complaints of LP: #568363, LP: #668800, and other "printing too slow bugs". -- Till Kamppeter Thu, 21 Jul 2011 20:55:03 +0200 ghostscript (9.04~dfsg~20110721-0ubuntu1) oneiric; urgency=low * New upstream release - GIT snapshot from July, 21 2011. - Significant rendering speed improvement for printing PDF files (Upstream bug #691755, LP: #568363, LP: #668800). * debian/symbols.common: Updated for new upstream source. Applied patch which dpkg-gensymbols generated for debian/libgs9.symbols to this file. -- Till Kamppeter Thu, 21 Jul 2011 18:05:03 +0200 ghostscript (9.04~dfsg~20110715-0ubuntu1) oneiric; urgency=low * New upstream release - GIT snapshot from July, 15 2011. * debian/patches/020110406~a54df2d.patch, debian/patches/020110408~0791cc8.patch, debian/patches/020110408~507cbee.patch, debian/patches/020110411~4509a49.patch, debian/patches/020110412~78bb9a6.patch, debian/patches/020110418~a05ab8a.patch, debian/patches/020110420~20b6c78.patch, debian/patches/020110420~4ddefa2.patch: Removed upstream patches. * debian/rules: Generate ABI version number (variable "abi") correctly, cutting off repackaging and pre-release parts. * debian/rules: Added ./lcms2/ directory to DEB_UPSTREAM_REPACKAGE_EXCLUDES. * debian/copyright: Added lcms2/* to the list of excluded files. * debian/symbols.common: Updated for new upstream source. Applied patch which dpkg-gensymbols generated for debian/libgs9.symbols to this file. -- Till Kamppeter Fri, 15 Jul 2011 16:49:55 +0200 ghostscript (9.02~dfsg-3ubuntu1) oneiric; urgency=low * Merge from debian unstable. Remaining changes: - debian/ghostscript-cups.postinst: Fixed "lpstat -r" check for the auto update of PPDs of existing queues. "lpstat -r" exits always with status 0, we must check the actual output. Call lpstat, lpadmin, and cupsctl with "-h /var/run/cups/cups.sock" to avoid querying remote servers set up in /etc/cups/client.conf, and asking for passwords. Thanks to Martin-Éric Racine for tracking this down and the solution! See Debian bug #543468. Use signal names instead of numbers for trap, quiesces a lintian bashism warning. - debian/ghostscript.preinst: Clean up traces of Ghostscript in defoma via "defoma-app purge gs", so that when updating packages which still use defoma no warnings get issued. - debian/ghostscript.preinst: Use Ubuntu version numbers. - gs-common: Reintroduce dependency on ghostscript, still too many packages assuming gs-common has the binaries. - Really break and replace older ghostscript in libgs9-common. - Apport hook. -- Till Kamppeter Tue, 12 Jul 2011 20:41:38 +0200 ghostscript (9.02~dfsg-3) unstable; urgency=low * Tighten build-dependency on d-shlibs and drop overrides. Closes: bug#629967, thanks to Bill Allombert. -- Jonas Smedegaard Thu, 07 Jul 2011 22:52:03 +0200 ghostscript (9.02~dfsg-2ubuntu1) oneiric; urgency=low * Merge with Debian; remaining changes: - debian/ghostscript-cups.postinst: Fixed "lpstat -r" check for the auto update of PPDs of existing queues. "lpstat -r" exits always with status 0, we must check the actual output. Call lpstat, lpadmin, and cupsctl with "-h /var/run/cups/cups.sock" to avoid querying remote servers set up in /etc/cups/client.conf, and asking for passwords. Thanks to Martin-Éric Racine for tracking this down and the solution! See Debian bug #543468. Use signal names instead of numbers for trap, quiesces a lintian bashism warning. - debian/ghostscript.preinst: Clean up traces of Ghostscript in defoma via "defoma-app purge gs", so that when updating packages which still use defoma no warnings get issued. - debian/ghostscript.preinst: Use Ubuntu version numbers. - gs-common: Reintroduce dependency on ghostscript, still too many packages assuming gs-common has the binaries. - Really break and replace older ghostscript in libgs9-common. - Apport hook. -- Matthias Klose Sat, 21 May 2011 18:33:04 +0200 ghostscript (9.02~dfsg-2) unstable; urgency=low * Cherry-pick upstream fixes for severe bugs. + Fix for x11alpha device when the source file has transparency. Closes: bug#567673. Thanks to Markus Steinborn. + Fix segfault with -dDOINTERPOLATE. + Fix crashing bug in PostScript colour handling. + Fix potential SEGV ICC-parsing e.g. Photoshop CMYK EPS. + Fix crash in tiffsep device when COMPILE_INITS=0. * Update copyright file: + Separate non-verbatim part of License fields into Comment fields. + Strip Files section for no longer included m4 files, and corresponding License section. + Fix list exceptions as such (not as or'ed licenses). + Fix license section lgpl-2.1+ to use verbatim text, and properly refer to 'Lesser' (not 'Library'). + Fix use separate License sections for variations, to obey Policy requirement of including the texts verbatim. + Rename license shortnames using ~ to indicate derived-from-common. + Fix state 'None' as copyright for a PD (non-)license. + Fix license section comments for LGPL-2.1+ to refer to LGPL at FSF address (not GPL). + Rewrap license fields at 72 chars, and shorten comments. + Fix and tidy references to AFPL licenses. + Add a bunch of newly examined copyright holders and (mostly GPL and MIT-derived) licenses. + Bump format to draft 174 of DEP-5. * Bump policy compliance to standards-version 3.9.2. -- Jonas Smedegaard Sun, 24 Apr 2011 02:02:43 +0200 ghostscript (9.02~dfsg-1) unstable; urgency=low * New upstream release. Closes: bug#620970. Thanks to Daniel Baumann. + Fixes crash in CUPS driver. Closes: bug#615202. [ Jonas Smedegaard ] * Set libgs-dev to priority optional (not extra) to match override file. * Fix have libgs* depend on lib*-common, source-versioned to ensure sanity while allow binNMUs. Thanks to Niels Thykier. * Drop obsolete lintian overrides. * Fix stop stripping convenience library icclib from upstream source: Linkage against shared system library was not applied and is not yet working. * Update upstream download URL. Tidy note on DFSG repackaging copyright file. * Drop patches 0001 and 1001: Applied upstream. * Update copyright file: + (Re)add licensing of icclib. + Fix treat SunSoft part as exception (not separate license). + Reorder Files sections to match hints file. + Add new owners. * Update symbols files. [ Didier Raboud ] * Add a -dbg package. Closes: #616024. -- Jonas Smedegaard Sat, 09 Apr 2011 06:56:28 +0200 ghostscript (9.01~dfsg-2) unstable; urgency=low * Really have ghostscript-cups and libgs9-common replace older ghostscript. Closes: bug#614729. Thanks to Colin Watson. * Add patch 0001 to fix bus error on sparc. Closes: bug#613642. Thanks to Julien Cristau, Chris Liddell and others. * Update copyright file: Extend a year. -- Jonas Smedegaard Fri, 25 Feb 2011 00:08:29 +0100 ghostscript (9.01~dfsg-1ubuntu5) natty; urgency=low * gs-common: Reintroduce dependency on ghostscript, still too many packages assuming gs-common has the binaries. -- Matthias Klose Fri, 01 Apr 2011 15:01:16 +0200 ghostscript (9.01~dfsg-1ubuntu4) natty; urgency=low * debian/patches/012310_opvp-fixes-for-gs9: Fixes concerning the compatibility of the OpenPrinting Vector ("opvp") output device with/ Ghostscript 9.x. 1. If there is any ICCColor based image in the PostScript input, GS crashes. 2. Fallback when path is too complex for some kinds of printers. This problem already existed in GS 8.x. Thanks to Koji Otani from BBR Inc., Japan. -- Till Kamppeter Fri, 25 Mar 2011 17:44:00 +0100 ghostscript (9.01~dfsg-1ubuntu3) natty; urgency=low * Really break and replace older ghostscript in libgs9-common. -- Colin Watson Wed, 23 Feb 2011 02:38:09 +0000 ghostscript (9.01~dfsg-1ubuntu2) natty; urgency=low * debian/rules, debian/ubuntu/apport-hook.py: Dropped the Apport hook on the merge from Debian. Re-added it. -- Till Kamppeter Tue, 22 Feb 2011 20:37:00 +0100 ghostscript (9.01~dfsg-1ubuntu1) natty; urgency=low * Merge from debian unstable. Remaining changes: - debian/ghostscript-cups.postinst: Fixed "lpstat -r" check for the auto update of PPDs of existing queues. "lpstat -r" exits always with status 0, we must check the actual output. Call lpstat, lpadmin, and cupsctl with "-h /var/run/cups/cups.sock" to avoid querying remote servers set up in /etc/cups/client.conf, and asking for passwords. Thanks to Martin-Éric Racine for tracking this down and the solution! See Debian bug #543468. Use signal names instead of numbers for trap, quiesces a lintian bashism warning. - debian/ghostscript.preinst: Clean up traces of Ghostscript in defoma via "defoma-app purge gs", so that when updating packages which still use defoma no warnings get issued. - debian/ghostscript.preinst: Use Ubuntu version numbers. -- Till Kamppeter Tue, 22 Feb 2011 19:03:00 +0100 ghostscript (9.02~dfsg-1) unstable; urgency=low * New upstream release. Closes: bug#620970. Thanks to Daniel Baumann. + Fixes crash in CUPS driver. Closes: bug#615202. [ Jonas Smedegaard ] * Set libgs-dev to priority optional (not extra) to match override file. * Fix have libgs* depend on lib*-common, source-versioned to ensure sanity while allow binNMUs. Thanks to Niels Thykier. * Drop obsolete lintian overrides. * Fix stop stripping convenience library icclib from upstream source: Linkage against shared system library was not applied and is not yet working. * Update upstream download URL. Tidy note on DFSG repackaging copyright file. * Drop patches 0001 and 1001: Applied upstream. * Update copyright file: + (Re)add licensing of icclib. + Fix treat SunSoft part as exception (not separate license). + Reorder Files sections to match hints file. + Add new owners. * Update symbols files. [ Didier Raboud ] * Add a -dbg package. Closes: #616024. -- Jonas Smedegaard Sat, 09 Apr 2011 06:56:28 +0200 ghostscript (9.01~dfsg-2) unstable; urgency=low * Really have ghostscript-cups and libgs9-common replace older ghostscript. Closes: bug#614729. Thanks to Colin Watson. * Add patch 0001 to fix bus error on sparc. Closes: bug#613642. Thanks to Julien Cristau, Chris Liddell and others. * Update copyright file: Extend a year. -- Jonas Smedegaard Fri, 25 Feb 2011 00:08:29 +0100 ghostscript (9.01~dfsg-1) unstable; urgency=low * New upstream release. + Drop cherry-picked and adopted patches. Thanks to Till Kamppeter! * Enable new FAPI (Freetype-based font rasterizer). Build-depend on libfreetype6-dev. * Strip additional libraries from repackaged source: + cups/libs: unneeded convenience library. + jpeg: convenience library used for broken JPEG (see bug#582521). + jpegxr: patented controversial JPEG XR convenience library. * Stop custom-handling upstream-shipped patch noise or autotools files: Properly shipped upstream now. Stop build-depending on autotools-dev or autoconf. * Update copyright file: + Extend copyright years. + Drop notes on no longer shipped jpeg files. * Update README.Debian: + Drop mentioning old merge of gs-gpl, gs-esp, and gs-common. + Drop note on files stripped from repackaged source: More accurate list provided in README.source for some time now. + Refer to bug#582521 regarding use of shared JPEG library. + Drop section on no longer used DeFoMa. + Fix Project name, and update trailing timestamp and author. * Fix move empty-cidfmap safety-check after binary-install targets. * Add patch 1001 to fix hashbang of cidfmap file: accidentally garbled upstream. * Update symbols file. * Fix build-depend on libijs-dev, to get back IJS support accidentally removed since 9.00~dfsg-1. Add libijs quirk to s-shlibs invocation. * Build-depend on libidn11-dev, to support Unicode passwords. * Drop no longer needed configure option --disable-cairo. * Override lintian false positive: libgsN != libgsN-common. -- Jonas Smedegaard Sat, 12 Feb 2011 22:22:40 +0100 ghostscript (9.01~dfsg-0ubuntu1) natty; urgency=low * New upstream release o Final 9.01 release of Ghostscript o Support for using the system's libijs. Taken the ijs/ subdirectory out of the repackaged source tarball again as support for an external libijs got added now (LP: #704913, LP: #704157). * debian/control: Added libijs-dev to the build dependencies. * debian/rules: Added ijs/ subdirectory back to the upstream source repackaging check. * debian/rules: Updated regular expression to check whether Resource/Init/cidfmap is virtually empty. * debian/rules: Added a "--override" for libijs to the d-shlibmove call. * debian/symbols.common: Updated for new upstream source. Applied patch which dpkg-gensymbols generated for debian/libgs9.symbols to this file. -- Till Kamppeter Thu, 12 Feb 2011 21:00:00 +0100 ghostscript (9.01~dfsg~svn12047-0ubuntu1) natty; urgency=low * New upstream release o SVN snapshot rev. 12047 Taken back the ijs subdirectory into the repackaged source tarball as Ghostscript's build system does not support using an external, shared libijs (LP: #704913, LP: #704157). Removed the newly added ./cups/libs/ directory in the repackaging as we use the CUPS libraries of the cups package. * debian/rules: Removed ijs subdirectory from upstream source repackaging check and added cups/libs/ subdirectory. * debian/rules: Override a bug that if dynamically loadable X11 drivers are uses ("./configure --enable-dynamic") that in the core Ghostscript library the X11 drivers are also built in. This bug got most probably introduced with SVN rev. 12025. * debian/symbols.common: Updated for new upstream source. Applied patch which dpkg-gensymbols generated for debian/libgs9.symbols to this file. -- Till Kamppeter Sat, 22 Jan 2011 11:25:36 +0100 ghostscript (9.01~dfsg~svn12005-0ubuntu1) natty; urgency=low * New upstream release o SVN snapshot rev. 12005 o DSC-conforming PostScript output of "ps2write" (Upstream bug #688495) o Skip color management for non-standard color spaces (Upstream bug #691760) We skipped Ghostscript 9.00 in Ubuntu. New features from that release: o ICC-profile-based color management o Postscript interpreter's graphics state now stores two separate colour space settings for stroking and filling, to better support the stroke and fill colours required by the PDF interpreter. o PDF-interpreter: Support for optional content, improved support of JPX images in PDF files. o For security reasons, Ghostscript no longer searches the current directory by default. Use -P option to revert to old behavior. o Bug fixes. In addition to the non-free files in Resource/CMap/ and the source-less PDFs in jasper/ excluded superfluous subdirs expat, freetype, icclib, ijs, jasper, jbig2dec, lcms, libpng, tiff, and zlib when repackaging upstream tarball. This reduces the tarball from 27 MB to 17 MB and eliminates the need to mention these libraries in the debian/copyright file. Used the command line "grep -li 'not altered' Resource/CMap/* | xargs rm" to remove the non-free CMap files. The files Resource/CMap/Identity-UTF16-{HV} are included again as they are from Artifex and not from Adobe, so they fall under Artifex' license. * debian/patches/: Dropped all patches except the two Debian-specific ones. The patches were either backported from upstream or they are incorporated upstream now. So we have a near patch-free Ghostscript again. * debian/rules: Removed Resource/CMap/Identity-UTF16-{HV} from upstream source repackaging check. * debian/rules: Removed obsolete "--disable-cairo" option from the ./configure command line. * debian/rules: Determine ABI version number correctly also if we have an SVN snapshot with "~svnXXXX" added to the upstream version number. * Removed DEB_CLEAN_EXCLUDE definition, as the patch noise is removed upstream. * debian/symbols.common: Updated for new upstream source. Applied patch which dpkg-gensymbols generated for debian/libgs9.symbols to this file. * debian/ubuntu/apport-hook.py: Moved to debian/ubuntu/, to make implementing a common Debian/Ubuntu VCS repository easier. * debian/copyright: Added info about apport-hook.py and Resource/CMap/Identity-UTF16-{HV}. * Changes overtaken from Debian with the merge: o Use source format 3.0 "quilt" (and not patchsys-quit.mk). Updated README.source: normal builds need no special handling now. o Patches are now managed with quilt o debian/patches/README: Documented new patch naming scheme o Renamed the two debian-specific patches according to the new naming scheme. o debian/symbols.common: Updated. o debian/rules: Check completeness of debian/copyright file (fonts not checked). o debian/rules: Check whether source tarball is correctly repackaged. o Added static library /usr/lib/libgs.a to -dev package. o Use FreeType/FAPI disabled as it is still immature. o Automatic upstream/ABI version check/update/warning for debian/control. o Handle package dependencies in debian/rules, let debian/control be appropriately generated. * Merged 9.00 from debian experimental. Remaining Ubuntu-specific changes: o Apport hook o Updated post-install script of ghostscript-cups: Fixed "lpstat -r" check for the auto update of PPDs of existing queues. "lpstat -r" exits always with status 0, we must check the actual output. Call lpstat, lpadmin, and cupsctl with "-h /var/run/cups/cups.sock" to avoid querying remote servers set up in /etc/cups/client.conf, and asking for passwords. Thanks to Martin-Éric Racine for tracking this down and the solution! See Debian bug #543468. Use signal names instead of numbers for trap. Quiesces a lintian bashism warning. o Do not remove the CMap files as we do not use DeFoMa any more. o Purge old defoma stuff to avoid warnings from defoma when updating other packages which still use defoma (in debian/ghostscript.preinst). o Use Ubuntu version numbers in debian/ghostscript.preinst o Removed CMap link in debian/ghostscript.links.in -- Till Kamppeter Fri, 7 Jan 2011 8:36:36 +0100 ghostscript (9.00~dfsg-4) experimental; urgency=low * Fix have libgs9 depend on libgs9-common. * Fix drop libgs9-common superfluously breaking ghostscript. Thanks to Jonathan Nieder. -- Jonas Smedegaard Thu, 27 Jan 2011 01:53:27 +0100 ghostscript (9.00~dfsg-3) experimental; urgency=low * Lower Priority of libgs-dev to extra: Depends on similarly prioritized comerr-dev and libkrb5-dev. * Fix install arch-independent files in new -common package and have library package depend on it: they are needed by library calls (not only by executables): + Install /usr/share/ghostscript/* into libgs9-common. + Install empty dir var/lib/ghostscript/CMap into libgs9-common (as well as into ghostscript where install scripts depend on it) as it is used by symlink. + Have libgs9 depend on libgs9-common. + Have libgs9-common break and replace older ghostscript. Closes: bug#485621, thanks to Tom Parker and others. * Drop obsolete quirks: + Drop transitional package gs-esp. + Drop virtual packages gs-esp gs-afpl libgs-esp-dev. + Drop conflicts/replaces/depends for gs-gpl gs-esp gs-cjk-resource gs-common libgs-esp-dev. Closes: bug#539754, thanks to Sven Joachim. * Package now team-maintained: + Set Debian Printing Team as author. + Set myself and Add Michael Gilbert as uploaders. Welcome, Michael! + Drop Masayuki Hatta and Torsten Landschoff as uploaders, reflecting the sad reality of them going silent. Thanks for past contributions, and feel free to join back later! * Newline-delimit package releations in control file. * Fix have ghostscript suggest ghostscript-x ghostscript-cups and hpijs, and have ghostscript-doc suggest ghostscript. * Rewrite short descriptions using upstream tagline. Various improvements to long descriptions. * Rewrite copyright file using Subversion candidate draft r166 of DEP5. * Update copyright-check suppression for newer CDBS. * Tighten build-dependency on cdbs to versions properly handling debhelper compat level 7. * Have libgs9 depend on gs-cjk-resource. -- Jonas Smedegaard Tue, 25 Jan 2011 23:39:05 +0100 ghostscript (9.00~dfsg-2) experimental; urgency=low * Drop explicitly installing below debian/tmp: Done by default with debhelper 7. * Skip fonts from copyright-check. * Add patches cherry-picked from upstream SVN: + 011719: Colour converting SMask images loses images + 011744: Don't dereference mask colour spaces (avoids crash) + 011785: Memory leak freeing pattern cache with transparency buffer + 011808: Fix crashes in gx_alloc_char_bits + 011846: Fix r11785 double decrements causing warnings and crashes + 011870: Loss of embedded icc profile when matching default profile + 011884: Fix crash on bad filename for ICC profile + 011891: Fix tighten ICC profile path handling * Disable use of Freetype (FAPI) for font rendering (not yet stable). Stop build-depending on libfreetype6-dev. * Adjust symbols file for non-FAPI build. -- Jonas Smedegaard Sat, 27 Nov 2010 23:01:47 +0100 ghostscript (9.00~dfsg-1) experimental; urgency=low * New upstream release. + Fixes pdfwrite incorrect ToUnicode CMap. Closes: bug#578910. Thanks to Vincent Lefevre. * Update patches: + Drop 49 patches now included upstream. + Drop disabled (since 8.64~dfsg-1) and apparently no longer needed patches 11, 12, 14, 23, 28 and 33. + Refresh/unfuzz remaining 8 patches. * Exclude superfluous subdirs expat, freetype, icclib, ijs, lcms and tiff when repackaging upstream tarball. * Make friends between source format 3.0 (quilt) and git-buildpackage: gitignore .pc and add a few local-options. * Use default ~dfsg hint (drop custom ~dfsg2). * Sort system library enabling flags by appearance in source code. * Build-depend on liblcms-dev and libfreetype6-dev, and force use them. * Auto-update API major number in symbols files and library package name. * Bootstrap autotools and cleanup afterwards (replacing older routine to put aside upstream-shipped temp files during build). Build-depend on autoconf. * Fix bump debhelper compat level to 7: We use new install file format. Tighten build-dependency on debhelper. * Update symbols files. -- Jonas Smedegaard Sun, 31 Oct 2010 04:46:34 +0100 ghostscript (8.71.dfsg.2-0ubuntu9) natty; urgency=low * Removed noise introduced into source package by the previous upload. -- Till Kamppeter Wed, 8 Dec 2010 00:26:59 +0100 ghostscript (8.71.dfsg.2-0ubuntu8) natty; urgency=low * debian/ghostscript.preinst: Clean up traces of Ghostscript in defoma via "defoma-app purge gs", so that when updating packages which still use defoma no warnings get issued. -- Till Kamppeter Tue, 7 Dec 2010 23:59:59 +0100 ghostscript (8.71.dfsg.2-0ubuntu7) maverick; urgency=low * debian/control: Updated versioned dependency of ghostscript on gsfonts, we need at least gsfonts 1:8.11+urwcyr1.0.7~pre44-4.1 now due to the dropping of defoma. -- Till Kamppeter Mon, 20 Sep 2010 18:57:20 +0200 ghostscript (8.71.dfsg.2-0ubuntu6) maverick; urgency=low * debian/patches/substractive-gray-fix: Fixed the handling of substractive monochrome/grayscale color spaces by the PDF interpreter. Such color space is often used by the CUPS Raster output device, especially by Gutenprint on monochrome laser printers. -- Till Kamppeter Wed, 1 Sep 2010 10:21:20 +0200 ghostscript (8.71.dfsg.2-0ubuntu5) maverick; urgency=low * debian/patches/cups-raster-fixes.dpatch: Do not do over-verbose debug logging. This made rendering sigificantly slower and also made it more difficult to read the CUPS error_log file (Upstream bug #690581). -- Till Kamppeter Thu, 12 Aug 2010 20:32:20 +0200 ghostscript (8.71.dfsg.2-0ubuntu4) maverick; urgency=low * debian/patches/cups-raster-fixes.dpatch: Added following fixes to the patch: o Eliminated compiler warning appearing after the recent memory reallocation fixes. o Support CUPS Raster level 2 (compressed) output (Upstream bug #689885). o Improved memory management: Automatic buffer size determination if RIP_MAX_CACHE variable is not set or not a non-zero number, BufferSpace size is same as MaxBitmap, not 1/10 (Upstream bug #691499). o Reallocate memory also if color depth changes during the job (Upstream bug #690435). * debian/patches/x11-device-do-not-create-huge-windows.dpatch: Some input files made Ghostscript opening a huge window, much bigger than the usual desktop, and sometimes using up all the computer's memory and making the computer crash (Upstream bug #690444). * debian/patches/check-all-pdfs-for-transparency.dpatch: Transparency in PDFs is was only introduced in PDF 1.4 according to the Adobe specs, but there are PDFs claiming to be of an older standard but they contain transparency. With this patch all PDFs are checked for transparency (Upstream bug #691273). * debian/patches/pdf-rendering-performance.dpatch: Improved PDF rendering performance by replacing the standard C floor() function by a simple macro (Upstream bug #691504). * debian/patches/x11-device-modularization-fixes.dpatch: Assorted fixes in the modularization of the X11 output devices (Upstream bug #691510). * debian/patches/device-n-init-variables-to-avoid-segfault.dpatch: Added some missing initializations in DeviceN to avoid possible segmentation faults (Upstream bug #690428). * debian/patches/fix-imagem-output-device.dpatch: Fixed double-free corruption of "imagen" output device (Upstream bug #690561). -- Till Kamppeter Sun, 8 Aug 2010 19:15:20 +0200 ghostscript (8.71.dfsg.2-0ubuntu3) maverick; urgency=low * SECURITY UPDATE: arbitrary code execution via unlimited recursive procedure invocations (LP: #546009) - debian/patches/CVE-2010-1628.dpatch: only initialize structures if all allocations were successful in psi/ialloc.c, psi/idosave.h, psi/isave.c. - CVE-2010-1628 -- Marc Deslauriers Thu, 22 Jul 2010 12:19:37 +0200 ghostscript (8.71.dfsg.2-0ubuntu2) maverick; urgency=low * debian/patches/ps2pdf-hyperlinks.dpatch: Let ps2pdf create proper hyperlinks (LP: #583990, upstream bug #691344). -- Till Kamppeter Mon, 19 Jul 2010 19:15:20 +0200 ghostscript (8.71.dfsg.2-0ubuntu1) maverick; urgency=low * New source tarball, still based on Ghostscript 8.71, but with less files removed. As for most files in Resource/CMap/ Adobe has changed the license we do not remove the files in Resource/CMap/ entirely but only the files which have still a non-free license. As these files are only needed for old CJK PDF files (of the Adobe Acrobat Reader 3-6 generation) for most users this will reintroduce the same PDF and font compatibility as upstream Ghostscript. See Ghostscript upstream bug 691212. This should fix upstream bug 691345 and the Ghostscript part of LP: #321932. Used the command line "grep -li 'not altered' Resource/CMap/* | xargs rm" to remove these files. * debian/README.Debian: Updated for the change in the removal of non-free files from the upstream source tarball. * debian/ghostscript.links: Removed links which got obsolete from defoma removal. * debian/dirs: Removed directories which got obsolete from defomo removal. * debian/rules: Removed "fail-if-cmaps-exist" rule, as we do not remove the entire Resource/CMap/ any more. -- Till Kamppeter Fri, 04 Jun 2010 10:54:20 +0200 ghostscript (8.71.dfsg.1-0ubuntu6) maverick; urgency=low * debian/ghostscript.prerm, debian/gs.defoma, debian/ghostscript.postrm, debian/dirs, debian/ghostscript.links, debian/control, debian/rules, debian/ghostscript.postinst, debian/ghostscript.preinst, debian/update-gsfontmap: Merge changes from 8.71~dfsg2-1.1 (LP: #584597): - Drop defoma. - Add update-gsfontmap to provide cidfmap and Fontmap. -- Stefano Rivera Sun, 23 May 2010 18:13:43 +0200 ghostscript (8.71.dfsg.1-0ubuntu5.1) lucid-proposed; urgency=low * debian/patches/pdf-interpreter-segfault-fixes.dpatch, debian/patches/cups-raster-fixes.dpatch, debian/patches/fapi-buildchar-object-null-check.dpatch, debian/patches/cups-raster-error-out-without-segfault-and-force-banding.dpatch, debian/patches/cups-raster-fix-memory-reallocation.dpatch: Fixed several problems in the PDF interpreter and the CUPS Raster output device of Ghostscript to avoid Ghostscript erroring out or even crashing on many input files when printing with a CUPS Raster driver (LP: 539708, upstream bug #691014). Joined all changes on cups/gdevcups.c into one patch as the patches are overlapping and parts of the old patches are undone. -- Till Kamppeter Thu, 29 Apr 2010 09:43:23 +0200 ghostscript (8.71.dfsg.1-0ubuntu5) lucid; urgency=low * debian/patches/pdf2dsc-fix-for-pdflatex-preview.dpatch: Fix pdflatex preview mode using the patch from http://svn.ghostscript.com/viewvc?view=rev&revision=10778 by William Bader (LP: #543266) -- Josh Holland Fri, 02 Apr 2010 08:25:31 +0100 ghostscript (8.71.dfsg.1-0ubuntu4) lucid; urgency=low * debian/patches/cups-raster-error-out-without-segfault-and-force-banding.dpatch: Make the "cups" output device (CUPS Raster) error out correctly without causing segfaults and also force banding mode as some PDFs do not render otherwise (LP: #534525). -- Till Kamppeter Tue, 23 Mar 2010 10:22:23 +0100 ghostscript (8.71.dfsg.1-0ubuntu3) lucid; urgency=low * debian/patches/pdftoraster-wait-for-ghostscript.dpatch: pdftoraster exited already before its Ghostscript subprocess finished. Thanks to Tim Waugh from Red Hat for the fix. * debian/patches/cups-raster-fix-memory-reallocation.dpatch: Fixed bug in memory reallocation on bitmap size changes. Color depth was not taken into account. This caused black pages to be printed with some CUPS Raster drivers, like Turboprint. Fixes upstream bugs #691029 and #691108. * debian/patches/fix-broken-korean-example.dpatch: Fixed example file for rendering Korean text. -- Till Kamppeter Tue, 9 Mar 2010 17:56:23 +0100 ghostscript (8.71.dfsg.1-0ubuntu2) lucid; urgency=low * no-cant-refill-scanner-input-buffer-error.dpatch: Ghostscript errored out when getting fed with the Ubuntu test page (/usr/share/system-config-printer/testpage-a4.ps) on stdin giving a "Can't refill scanner input buffer" error. (Upstream bugs #691137, #690909). -- Till Kamppeter Wed, 24 Feb 2010 10:08:23 +0100 ghostscript (8.71.dfsg.1-0ubuntu1) lucid; urgency=low * New upstream release o libtiff-based tiff file output o New "tiffsep1" output device produces halftoned separations at 1 bit per pixel o Improved FreeType-based font rasterizing (not yet used as default) o Improved graphics library for vector graphics conversions o Many bug fixes on the PCL-XL printer drivers ("pxlmono", "pxlcolor") o Fixes on back side handling for duplex printing in the CUPS Raster output device ("cups"). * debian/patches/gs-cups-rgb-gamma.dpatch, debian/patches/cljet5-mediasize-fix.dpatch, debian/patches/pxl-driver-fixes.dpatch, debian/patches/gs-cups-fix-backside-on-duplex-jobs.dpatch: Removed patches backported from upstream. * debian/patches/fix-build-of-executables.dpatch: Fix build of the "gs" executable, it was built as a shared library and not as an executable. This lead to an immediate segfault even before "main()" got called. Thanks to Robin Watts from Ghostscript for the quick fix. * debian/control: Added build dependency on libtiff-dev. * debian/ghostscript.links: s/8.70/8.71/ -- Till Kamppeter Thu, 11 Feb 2010 11:31:23 +0100 ghostscript (8.71~dfsg2-6) unstable; urgency=low * Acknowledge pseudo-NMUs. Closes: bug#584667, #584516, #583738, thanks to Moritz Muehlenhoff and Sebastian Dröge. * There is no such thing as a "collab-maint upload: + Edit historical changelog entries to avoid further repitition. + Document sensible use of collab-maint for NMUs in README.source. * Reorder patches to match upstream commit order. * Replace patches 0960-0962 (fix printing from GTK+ apps) from Ubuntu with corresponding patches cherry-picked from upstream. * Refresh patches using shortening options --no-timestamps --no-index -pab. * Bump Standards-Version to 3.9.1. * Put myself as maintainer and Hatta as uploader, to better reflect our current levels of activity. * Drop superfluous cleanup in preinst of transitional gs-common. Thanks to Jonathan Nieder (see bug#519141). * Fix circular dependency: Stop ugly transitional hack of ghostscript depending on gs-common (which depends on ghostscript). Closes: bug#519141, thanks to Bill Allombert, Jonathan Nieder and others (see also bug#539754). * Add patch 011547 cherry-picked from upstream Subversion, to improve cups device support for rendering with high memory demands. Possibly fixes bug#534414 (try also setting RIPCache=auto in cupsd.conf). -- Jonas Smedegaard Thu, 19 Aug 2010 09:55:55 +0200 ghostscript (8.71~dfsg2-5) unstable; urgency=low * Adding myself to uploaders temporarily (note to others: please do not follow this example. Instead either commit to collab-maint and request a maintainer to release it or do a classic NMU). * Apply some patches from the Ubuntu package by Till Kamppeter to fix printing from GTK+ applications. This is upstream bug #691014 and fixed upstream too (Closes: #583738). * Refresh all patches to apply cleanly again. -- Sebastian Dröge Wed, 18 Aug 2010 09:55:39 +0200 ghostscript (8.71~dfsg2-4) unstable; urgency=medium * Adding myself to uploaders temporarily (note to others: please do not follow this example. Instead either commit to collab-maint and request a maintainer to release it or do a classic NMU). * Fix CVE-2010-1628 (Closes: #584516) * Apply upstream commit r11351 to pass -P- to all Ghostscript internal tools. Ghostscript will likely be changed to run with -P- by default, but this still needs more work/testing for a final patch (Closes: #584667) -- Moritz Muehlenhoff Sat, 31 Jul 2010 23:19:42 -0400 ghostscript (8.71~dfsg2-3) unstable; urgency=low * Fix have update-gsfontmap script exit 0. -- Jonas Smedegaard Tue, 18 May 2010 17:17:14 +0200 ghostscript (8.71~dfsg2-2) unstable; urgency=low * Drop defoma. Add update-gsfontmap to provide cidfmap and Fontmap. Closes: bug#582110, thanks to Kenshi Muto. * List newly added update-gsfontmap script to copyright file (GPL). -- Jonas Smedegaard Tue, 18 May 2010 16:19:33 +0200 ghostscript (8.71~dfsg2-1) unstable; urgency=low * Use system jbig2dec: + Strip jbig2dec subdir. + Include (i.e. no longer strip) parts of Resource/CMap subdir: DFSG-free now (Adobe-specific license). + Bump DFSG repackaging tag. + Configure with SHARE_JBIG2=1. + Build-depend on libjibg2dec-dev. + Strip jbig_* symbols from symbols file. * Update/improve copyright file: + Rewrap license section Expat, and add comment on Expat variation. + Tighten license sections in copyright file. + Mention stripped files/dirs in copyright file. + Stop listing jbig2dec files. + Explicitly list stripped DFSG-nonfree parts of Resource/CMap subdir. + Stop mentioning local CDBS snippets (no longer included). * Strip CMap files (shipped separately, registered with DeFoMa). -- Jonas Smedegaard Mon, 17 May 2010 19:03:51 +0200 ghostscript (8.71~dfsg-4) unstable; urgency=low * Drop locally included d-shlibdeps, and instead tighten build- dependency on d-shlibs to versions supporting inversioned -dev package and suppressing missing library dependencies (declared indirectly using CDBS). No longer mention d-shlibs licensing in copyright file. * Add patches cherry-picked from upstream VCS: + 0927: Write TIFF directories before the page data. + 0928: Change default TIFF strip size to one megabyte. + 0940: Merge gs_2_colors branch. + 0941: Include all our defined fonts in substitution list. Register a few newly introduced symbols. * Drop local CDBS snippet package-relations.mk: included in cdbs now. * Simplify CDBS inclusions: We need newer version anyway due to using package dependency handling, so useless trying to ease backporting by avoiding other build-dependency tightenings. * Build-depend on devscripts and dh-buildinfo, and tighten build- dependency on cdbs. * Fix use DEB_UPSTREAM_REPACKAGE_EXCLUDES (not abandoned DEB_UPSTREAM_REPACKAGE_EXCLUDE) in rules file. Closes: bug#577373, thanks to Lucas Nussbaum. * Have ghostscript break ghostscript-x too old to depend on same- version ghostscript. Closes: bug#511824, thanks to Bernhard R. Link. * Fix handle upstream-shipped temp files different from patch noise, to really make clean target fully clean. -- Jonas Smedegaard Thu, 15 Apr 2010 21:04:02 +0200 ghostscript (8.71~dfsg-3) unstable; urgency=low * Add patches cherry-picked from upstream VCS: + 0826: Fix some compile errors and warnings. + 0827: Fix possibly AIX-only compile error. + 0830: Always use contone buffer in wtsimdi device. + 0869: Open tiffsep and tiffsep1 output files as seekable. + 0881: Revert korean example to non-corrupted version. + 0882: Update Windows CJK font substitution list. + 0883: lowercase fontfile name before matching. + 0890: Fixes on CUPS Raster output device. + 0895: pdftoraster no exit until Ghostscript sub-process finishes. + 0905: Fix psdcmyk segv. + 0908: Fix overprint logic. + 0924: Fix TIFFCleanup segfault in gdevtfax. + 0925: Fix treat TIFFSetField as floating point. + 0926: Have filters return 2 on empty output. * Refresh patches (with compacting options --no-timestamp --no-index). * Refer to FSF website (not postal address) in rules file header. * Fix refer to LGPL as Lesser (not Library) in copyright file. * Update local CDBS snippets: + Drop conditionally setting DEB_MAINTAINER_MODE in rules file (done in main cdbs package now), to not (wrongfully) upset lintian. + Drop upstream-tarball.mk, copyright-check.mk and buildinfo.mk, and instead use same functionality now offered in main cdbs package. + Shrink package-relations.mk (only local snippet left!) to only handle binary relations (other parts in main cdbs since 0.4.69). * Drop build-depending on devscripts or dh-buildinfo (only needed in maintainer builds), to ease backporting. * Build-depend unversioned on d-shlibs (needed --overrides option satisfied since oldstable). * Update symbols file (ALWAYS_CONTONE@Base introduced in patch 0830), and postfix earlier patch-introduced debian-versioned symbols with "~", thanks to lintian. -- Jonas Smedegaard Mon, 15 Mar 2010 21:43:22 +0100 ghostscript (8.71~dfsg-2) unstable; urgency=low * Update copyright file: + Fix license section GPL-2+ to add refer to actual license at /usr/share/common-licenses/GPL-2. + Strip from license section other-GPL-3+-Artifex partly outdated non-license part. + Fix replace bogus license section "GPL-2+ or AFPL" with AFPL one. + Fix change license "GPL-2+ with Autoconf exception" to "GPL-2+ or other-sa-Autoconf", and add new license section other-sa-Autoconf. + Fix change license "GPL-2+ with Libtool exception" to "GPL-2+ or other-sa-Libtool", and add new license section other-sa-Libtool. + Extend license section GPL-2+ to cover more variants (reducing verbatim copies by documenting file/program/library variations). + Change GPL license sections to refer to FSF website (as in py-compile, not postal address as common in other (older?) cases). Place the website reference below Debian-specific reference to actual license file, to slightly emphasize that it is a local edit (not copied verbatim from an upstream file). * Build-depend on libexpat-dev and enable SHARE_EXPAT. Closes: bug#560930 (CVE-2009-3560 and CVE-2009-3720), thanks to Michael Gilbert and Moritz Muehlenhoff. * Tighten watch file to not include macosx flavor, and simplify to no longer mangle upstream gpl extension. * Apply bug-fixing patches cherry-picked from upstream SVN: + 0751: Add missing dereferencing of indirect objects in /Mask array + 0778: Fix PDF trailer attributes undefined error + 0780: Add cast to bmpcmp.c to quiet useless compiler warning + 0782: Fix signedness and other wrong var comparisons in T2 dict + 0785: Fix pdfwrite UTF16 handling in PDF/A output + 0788: Fix error passing setscreen read-only Halftone type1 dict + 0794: Fix ignore a class of broken TrueType font + 0810: Fix pdfwrite widths for CIDFont with unusual FontMatrix + 0821: Add missing newline in a TTF debug message + 0822: Upgrade Adobe Glyph List to v. 2.0. + 0823: Fix drop wrong raster optimization in gxipixel.c + 0824: Fix PDF crop /TrimBox and /CropBox by the /MediaBox * Refresh all patches with quilt option --no-timestamp. -- Jonas Smedegaard Sun, 28 Feb 2010 18:06:54 +0100 ghostscript (8.71~dfsg-1) unstable; urgency=low * New upstream release. * Acknowledge NMU. Closes: bug#562643, thanks to Andreas Kirschbaum. * No longer strip Resource/Font dir when DFSG-repackaging source (GPL- licensed since 8.63). Closes: bug#520215, thanks to Fabian Greffrath. * Update local CDBS snippets: + package-relations.mk: - Merge mixture of versioned and unversioned dependencies - Use unversioned dependencies when satisfied in oldstable - Improve whitespace cleanup - Rewrite and silence applying dependencies - Handle cdbs 0.4.53 dependency (needed when using debhelper v7) + upstream-tarball.mk: - Depend unversioned on cdbs (the needed 0.4.39 is in oldstable) - Preserve bzip2 tarballs with source format '3.0 (quilt)'. + copyright-check.mk: - More aggressive scanning (check top 99999 lines, not just 60) - Simplify more licensing notices and preserve non-ASCII chars - Group hints by sorted owner list (ignoring years) - Limit console output both horisontally and vertically - Use rev123 of draft DEP5 for hints file * Use source format 3.0 "quilt" (and not patchsys-quit.mk). Update README.source: normal builds need no special handling now. * Add patches: + 1009 (Ubuntu): Fix build gs as executable (not shared library) + 0743 (Upstream): Fix pdfwrite UTF16-BE pdfmarks not garbling XMP metadata + 0748 (Upstream): Fix nested ICCBased colour processing + 0749 (Upstream): Fix a few minor compile warnings * Refresh patches, and reorder to apply in numerical order. * Rewrite copyright file using draft DEP5 format: All earlier information preserved, but also many new discoveries (some yet incomplete - tagged FIXME in the file). * Build-depend on libtiff-dev and enable use of libtiff. * Update symbols files, and avoid Linux-only realloc symbol on Hurd (we currently do not maintain symbols files for other non-Linux archs). Closes: bug#546017, thanks to Pino Toscano. * Bump Standards-Version to 3.8.4. -- Jonas Smedegaard Mon, 15 Feb 2010 23:39:11 +0100 ghostscript (8.70.dfsg.1-0ubuntu5) lucid; urgency=low * debian/patches/gs-cups-fix-backside-on-duplex-jobs.dpatch: The "cups" output device (generating input for the CUPS Raster drivers) did not update the margins and page orientation for the back sides in time and so the back side was often the wrong way around, especially with printers which print the back sides backwards, like HP inkjets. The problem occurs only with PostScript as input and not with PDF, which made the bug not showing in Ubuntu and Debian. This change is applied to Ubuntu's Ghostscript so that Lucid users regression-test it before Ghostscript 8.71 gets released in February (HPLIP upstream bug: LP: #484928). -- Till Kamppeter Tue, 26 Jan 2010 15:25:23 +0100 ghostscript (8.70.dfsg.1-0ubuntu4) lucid; urgency=low * debian/patches/pxl-driver-fixes.dpatch: Several upstream bug fixes on the PCL-XL drivers ("pxlcolor"/"pxlmono") in Ghostscript, especially also for PDF input. Thanks to Hin-Tak Leung on putting all that work into this driver which stayed nearly untouched for around 10 years. (LP: #361772). -- Till Kamppeter Mon, 7 Dec 2009 20:23:23 +0100 ghostscript (8.70.dfsg.1-0ubuntu3) karmic; urgency=low * debian/patches/cljet5-mediasize-fix.dpatch: Upstream fix for the media size handling of the "cljet5" printer driver. -- Till Kamppeter Mon, 12 oct 2009 15:47:23 +0200 ghostscript (8.70.dfsg.1-0ubuntu2) karmic; urgency=low * debian/ghostscript-cups.postinst: Fixed "lpstat -r" check for the auto update of PPDs of existing queues. "lpstat -r" exits always with status 0, we must check the actual output. Call lpstat, lpadmin, and cupsctl with "-h /var/run/cups/cups.sock" to avoid querying remote servers set up in /etc/cups/client.conf, and asking for passwords. Thanks to Martin-Éric Racine for tracking this down and the solution! See Debian bug #543468. Use signal names instead of numbers for trap. Quiesces a lintian bashism warning. * debian/rules: Remove /usr/bin/ps2pdf from the ghostscript package, it was treated by update-alternatives for a longer time already (LP: #429856). -- Till Kamppeter Fri, 18 Sep 2009 15:37:23 +0200 ghostscript (8.70.dfsg.1-0ubuntu1) karmic; urgency=low * New upstream release o License is now GPLv3 or later o No functional change. This is only to let the final release not appear as a release candidate in the help output and documentation and also to reflect the new license. * debian/copyright: License change. -- Till Kamppeter Sat, 01 Aug 2009 19:04:40 +0200 ghostscript (8.70.dfsg.1~rc1-0ubuntu1) karmic; urgency=low * New upstream release o Fixes many transparency problems: color space conversion, mask contexts, patterns, ... o Fixes in font handling, especially when generating PDF o Improvements in robustness, correctness, and performance o New generic Esc/Page drivers: "eplmono", "eplcolor" o New "cdnj500" driver for many HP DesignJet printers o License is now GPLv2 or later and not GPLv2-only any more o Merged all patches of the Ubuntu and Debian packages upstream o Fixes LP: #196009 * debian/patches/33_bad-params-to-xinitimage-on-large-bitmaps.dpatch, debian/patches/35_bitcmyk-blank-output.dpatch, debian/patches/37_fix-segfault-in-cups-raster-output-device.dpatch, debian/patches/38_CVE-2009-0583_0584.dpatch, debian/patches/40_pdfwrite-numcopies.dpatch, debian/patches/41_CVE-2009-0196.dpatch, debian/patches/42_CVE-2009-0792.dpatch, debian/patches/43_add-cdnj500-driver.dpatch, debian/patches/45_cups-device-pagesize-margins-duplex-fixes.dpatch, debian/patches/47_ps2write-segfault-fix.dpatch, debian/patches/50_ps2write-do-not-advertize-dsc-conformance.dpatch, debian/patches/53_fix-pstoraster-for-call-with-input-filename.dpatch: Removed patches backported from upstream. * debian/copyright: License change. * debian/ghostscript.links: s/8.64/8.70/ -- Till Kamppeter Wed, 29 Jul 2009 09:47:54 +0200 ghostscript (8.70~dfsg-2.1) unstable; urgency=low * Non-maintainer upload. * Fix some security issues: - CVE-2009-4270[0]: stack-based buffer overflow multiple integer overflows in the icc library (closes: #562643) - fix possible buffer overflow in gs_throw_imp() -- Andreas Kirschbaum Sat, 23 Jan 2010 10:19:35 +0100 ghostscript (8.70~dfsg-2) unstable; urgency=low * Fix resolving package-relations. -- Jonas Smedegaard Sun, 02 Aug 2009 22:37:11 +0200 ghostscript (8.70~dfsg-1) unstable; urgency=low * New upstream release. * Strip unneeded subdirs zlib, jasper, libpng to simplify build and licensing tracking. * Drop patches 0001 and 0002 now included upstream. * Simplify configure and cleanup (autoconf update no longer needed). * Bump main license to GPL-3+ (from GPL-2+) in debian/copyright. * Fix licensing of escv driver (GPL), and bump copyright year. * Update package-relations.mk: Cleanup unversioned+versioned dependency mix. Improve whitespace cleanup. Rewrite and silence applying dependencies. * Update symbols file. -- Jonas Smedegaard Sun, 02 Aug 2009 12:05:15 +0200 ghostscript (8.64.dfsg.1-0ubuntu15) karmic; urgency=low * debian/patches/43_add-cdnj500-driver.dpatch: Set rendering intent for the "Presentation" quality in the "cdnj500" driver to "Perceptual", this gives better colors than the original "SATURATION". -- Till Kamppeter Mon, 13 Jul 2009 14:22:49 +0200 ghostscript (8.64.dfsg.1-0ubuntu14) karmic; urgency=low * debian/control: Moved dependencies of ghostscript-cups on cups, cups-client back to Depends:, for post-install this is sufficient. -- Till Kamppeter Tue, 2 Jun 2009 09:43:49 +0200 ghostscript (8.64.dfsg.1-0ubuntu13) karmic; urgency=low * debian/control: Moved dependencies of ghostscript-cups on cups, cups-client, and perl-base to Pre-Depends:, as only this way it is assured that these packages are configured (especially CUPS daemon running) before this package gets configured (update of the PPDs of existing queues). -- Till Kamppeter Mon, 1 Jun 2009 20:35:49 +0200 ghostscript (8.64.dfsg.1-0ubuntu12) karmic; urgency=low * debian/control: Removed unneeded "perl" from Depends:. This is only needed for Perl applications, not for a simple "perl -p -e ..." in the postinst script. -- Till Kamppeter Tue, 26 May 2009 16:53:49 +0200 ghostscript (8.64.dfsg.1-0ubuntu11) karmic; urgency=low * debian/patches/53_fix-pstoraster-for-call-with-input-filename.dpatch: pstoraster did not work when called with an input file name as the 6th command line argument. * debian/patches/50_ps2write-do-not-advertize-dsc-conformance.dpatch: The "ps2write" output device produces PostScript which is not DSC-conforming, so do not advertize it as DSC-conforming with a "%!PS-Adobe-..." magic string. Use "%!" instead. Otherwise the "pstops" CUPS filter cannot handle this output (LP: #377011). * debian/patches/45_cups-device-pagesize-margins-duplex-fixes.dpatch: Fixed recognition of page size via /cupsPageSizeName. All page sizes were considered custom sizes if /cupsPageSizeName was not set. -- Till Kamppeter Thu, 21 May 2009 15:25:49 +0200 ghostscript (8.64.dfsg.1-0ubuntu10) karmic; urgency=low * debian/control, debian/rules, debian/ghostscript.postinst, debian/ghostscript-cups.postinst: Splitted off the CUPS-related files into its own package, so that the requirements of cups and cups-client for the automatic update of the PPDs of existing print queues do not apply to the ghostscript core package. Added cups and cups-client to the Depnds: entry of the new ghostscript-cups, so that the automatic updates of the PPDs also works on updates to a new release of the distribution and not only on single-package updates. Added also perl as dependency to the ghostscript-cups package as it is also needed for the automatic PPD updates. -- Till Kamppeter Mon, 18 May 2009 23:19:49 +0200 ghostscript (8.64.dfsg.1-0ubuntu9) karmic; urgency=low * debian/patches/47_ps2write-segfault-fix.dpatch: The "ps2write" output device segfaults on the testfile.pdf of the CUPS test suite, making CUPS FTBFS if "ps2write" is used by one of the CUPS filters (Upstream bug #690475). * debian/patches/45_cups-device-pagesize-margins-duplex-fixes.dpatch: The CUPS Raster output device did not handle the unprintable margins correctly on landscape-oriented pages and on back sides. Added also support for the PPD keywords "*cupsBackSide:" and "*APDuplexRequiresFlippedMargin:". * debian/patches/43_add-cdnj500-driver.dpatch: Added driver "cdnj500" for HP DesignJet 500 and 800. -- Till Kamppeter Tue, 12 May 2009 15:49:49 +0200 ghostscript (8.64.dfsg.1-0ubuntu8) jaunty; urgency=low * SECURITY UPDATE: possible arbitrary code execution via JBIG2 symbol dictionary segments - debian/patches/41_CVE-2009-0196.dpatch: validate size of runlength in export symbol table in jbig2dec/jbig2_symbol_dict.c. - CVE-2009-0196 * SECURITY UPDATE: denial of service and possible arbitrary code execution via integer overflows in icclib - debian/patches/42_CVE-2009-0792.dpatch: fix numerous overflows in icclib/icc.c. - CVE-2009-0792 -- Marc Deslauriers Thu, 09 Apr 2009 09:27:31 -0400 ghostscript (8.64.dfsg.1-0ubuntu7) jaunty; urgency=low * debian/patches/40_pdfwrite-numcopies.dpatch: PDF output device of Ghostscript did not take into account /#copies or /NumCopies in the PostScript input, which made some applications, like OpenOffice.org print only one copy also if more than one copy is requested. No Ghostscript prints multiple copies with "pdfwrite" if it is called with "-dDoNumCopies" (LP: #320391, upstream bug #690355). -- Till Kamppeter Sun, 5 Apr 2009 22:11:49 +0200 ghostscript (8.64.dfsg.1-0ubuntu6) jaunty; urgency=low * SECURITY UPDATE: Arbitrary code execution due to integer overflows and insufficient upper-bounds checks in the ICC library - debian/patches/38_CVE-2009-0583_0584.dpatch: fix multiple integer overflows and perform bounds checking in icclib/icc.c. - CVE-2009-0583 - CVE-2009-0584 -- Marc Deslauriers Fri, 27 Mar 2009 08:51:14 -0400 ghostscript (8.64.dfsg.1-0ubuntu5) jaunty; urgency=low * debian/patches/00list: Really apply the patch for LP: #333429. -- Till Kamppeter Wed, 25 Mar 2009 18:32:49 +0100 ghostscript (8.64.dfsg.1-0ubuntu4) jaunty; urgency=low * debian/patches/37_fix-segfault-in-cups-raster-output-device.dpatch: Fixed segfault in the "cups" (CUPS Raster) output device of Ghostscript (LP: #333429, upstream bug 690338). * debian/ghostscript.postinst: Silenced non-fatal error messages when post-install script updates PPDs and there are PPDs not belonging to a CUPS queue in /etc/cups/ppd/ (LP: #345866). -- Till Kamppeter Wed, 25 Mar 2009 16:13:49 +0100 ghostscript (8.64.dfsg.1-0ubuntu3) jaunty; urgency=low * debian/local/apport-hook.py, debian/rules: Added apport hook (LP: #338442). -- Till Kamppeter Thu, 19 Mar 2009 12:39:49 +0100 ghostscript (8.64.dfsg.1-0ubuntu2) jaunty; urgency=low * debian/patches/35_bitcmyk-blank-output.dpatch: The bitcmyk output device produces zero length output (LP: #331127, upstream bug #690287). -- Till Kamppeter Wed, 18 Feb 2009 19:52:54 +0100 ghostscript (8.64.dfsg.1-0ubuntu1) jaunty; urgency=low * New upstream release (Ghostscript 8.64 final release) o No functional change. This is only to let the final release not appear as a release candidate in the help output and documentation. -- Till Kamppeter Tue, 03 Feb 2009 21:42:54 +0100 ghostscript (8.64.dfsg.1~svn9432-0ubuntu1) jaunty; urgency=low * New upstream release (SVN rev 9432, RC3) o Fix regression of X output being broken with large images or other cases of the image buffer being used (Upstream bug #690222, #690260). o Fixed the bbox output device for example3.ps in LP: #160203. -- Till Kamppeter Mon, 02 Feb 2009 21:42:53 +0100 ghostscript (8.64.dfsg.1~svn9415-0ubuntu1) jaunty; urgency=low * New upstream release (SVN rev 9415, RC2) o Fix problem of X display not completely clearing the previous page before drawing the next page (Upstream bug #690255). -- Till Kamppeter Wed, 28 Jan 2009 00:12:16 +0100 ghostscript (8.64.dfsg.1~svn9403-0ubuntu1) jaunty; urgency=low * New upstream release (SVN rev 9403, RC1) o Output of PDF-to-PostScript conversion was not DSC-conforming and prevented CUPS from switching trays when the page size changes in the middle of the document (LP: #310575) o All but one Debian patches are incorporated upstream now. * debian/patches/32_improve-handling-of-media-size-changes-from-gv.dpatch: Removed, applied upstream. -- Till Kamppeter Tue, 27 Jan 2009 10:28:07 +0100 ghostscript (8.64.dfsg.1~svn9377-0ubuntu1) jaunty; urgency=low * New upstream release (SVN rev 9377) o Fixes many bugs concerning PDF rendering, to make the PDF printing workflow correctly working. o Fixes long-standing bugs in many drivers, like input paper tray and duplex options not working for the built-in PCL 4, 5, 5c, 5e, and 6/XL drivers, PDF input not working for bjc600, bjc800, and cups output devices, several options not working and uninitialized memory with cups output device. o Merged nearly all patches of the Ubuntu and Debian packages upstream. o Fixes LP: #317810, LP: #314439, LP: #314018. * debian/patches/03_libpaper_support.dpatch, debian/patches/11_gs-cjk_font_glyph_handling_fix.dpatch, debian/patches/12_gs-cjk_vertical_writing_metrics_fix.dpatch, debian/patches/13_gs-cjk_cjkps_examples.dpatch, debian/patches/20_bbox_segv_fix.dpatch, debian/patches/21_brother_7x0_gdi_fix.dpatch, debian/patches/22_epsn_margin_workaround.dpatch, debian/patches/24_gs_man_fix.dpatch, debian/patches/25_toolbin_insecure_tmp_usage_fix.dpatch, debian/patches/26_assorted_script_fixes.dpatch, debian/patches/29_gs_css_fix.dpatch, debian/patches/30_ps2pdf_man_improvement.dpatch, debian/patches/31_fix-gc-sigbus.dpatch, debian/patches/34_ftbfs-on-hurd-fix.dpatch, debian/patches/35_disable_libcairo.dpatch, debian/patches/38_pxl-duplex.dpatch, debian/patches/39_pxl-resolution.dpatch, debian/patches/42_gs-init-ps-delaybind-fix.dpatch, debian/patches/45_bjc600-bjc800-pdf-input.dpatch, debian/patches/48_cups-output-device-pdf-duplex-uninitialized-memory-fix.dpatch, debian/patches/50_lips4-floating-point-exception.dpatch, debian/patches/52_cups-device-logging.dpatch, debian/patches/55_pcl-input-slot-fix.dpatch, debian/patches/57_pxl-input-slot-fix.dpatch, debian/patches/60_pxl-cups-driver-pdf.dpatch, debian/patches/62_onebitcmyk-pdf.dpatch, debian/patches/65_too-big-temp-files-1.dpatch, debian/patches/67_too-big-temp-files-2.dpatch, debian/patches/70_take-into-account-data-in-stream-buffer-before-refill.dpatch: Removed, applied upstream. * debian/patches/01_docdir_fix_for_debian.dpatch, debian/patches/02_gs_man_fix_debian.dpatch, debian/patches/01_docdir-fix-for-debian.dpatch, debian/patches/02_docdir-fix-for-debian.dpatch: Renamed patches to make merging with Debian easier. * debian/patches/32_improve-handling-of-media-size-changes-from-gv.dpatch, debian/patches/33_bad-params-to-xinitimage-on-large-bitmaps.dpatch: regenerated for new source directory structure. * debian/rules: Corrected paths to remove cidfmap (it is in Resource/Init/ in GS 8.64) and to install headers (source paths are psi/ and base/ now). * debian/rules: Remove all fontmaps, as DeFoMa replaces them. * debian/local/pdftoraster/pdftoraster.c, debian/local/pdftoraster/pdftoraster.convs, debian/rules: Removed added pdftoraster filter and use the one which comes with Ghostscript. * debian/ghostscript.links: s/8.63/8.64/ -- Till Kamppeter Tue, 20 Jan 2009 16:40:45 +0100 ghostscript (8.64~dfsg-13) unstable; urgency=low * Fix ghostscript-cups to recommend (not depend on) cups and cups-client: avoid circular dependencies for cups backends truly depending on both cups and this package. -- Jonas Smedegaard Sat, 11 Jul 2009 22:32:38 +0200 ghostscript (8.64~dfsg-12) unstable; urgency=high * Drop inclusion of symbols.common_le for mips, add it for mipsel. Really really closes: bug#533771, thanks to Mattias Ellert. * Keep urgency=high - still contains security-related urgently needed for testing. -- Jonas Smedegaard Tue, 23 Jun 2009 11:28:02 +0200 ghostscript (8.64~dfsg-11) unstable; urgency=high * Stop registering symbols.common_le for hppa and mipsel (apparently those symbols aren't simply tied to little-endian archs after all). Closes: bug#533771, thanks to Kurt Roeckx. * Set urgency=high as above affects only build-routines (not actual contents of built binaries), no other release blockers occured for 9 days, and older releases contain security-related bugfixes. -- Jonas Smedegaard Sat, 20 Jun 2009 16:36:58 +0200 ghostscript (8.64~dfsg-10) unstable; urgency=low * Fix ghostscript-cups versioned dependencies. -- Jonas Smedegaard Wed, 10 Jun 2009 14:36:08 +0200 ghostscript (8.64~dfsg-9) unstable; urgency=low * Rerelease for unstable. -- Jonas Smedegaard Wed, 10 Jun 2009 10:01:15 +0200 ghostscript (8.64~dfsg-8) experimental; urgency=low [ Till Kamppeter ] * Split off CUPS-related files into new package ghostscript-cups. Closes: bug#528386. * Have ghostscript-cups recommend cups and cups-client to fix/improve PPD update routines. Closes: bug#510962. [ Jonas Smedegaard ] * Clenup dependencies related to transitional packages: + Tighten ghostscript-x dependency on ghostscript + Have ghostscript-doc suggest ghostscript (not depend on it) + Drop seemingly bogus ghostscript-x and ghostscript-doc conflicts + Fix ghostscript providing gs-common twice + Have libgs-dev conflict+replace libgs-esp-dev unversioned * Bump policy compliance to Standards-Version 3.8.1. * Strip boilerplate and tighten indentation of package maintenance scripts. * Fix use bash in ghostscript-cups postinst, thanks to lintian. -- Jonas Smedegaard Tue, 09 Jun 2009 23:19:10 +0200 ghostscript (8.64~dfsg-7) unstable; urgency=low * Avoid bumping to version 8.65 in gs_init.ps. Closes: bug#532392, thanks to Mattias Ellert. -- Jonas Smedegaard Tue, 09 Jun 2009 09:35:13 +0200 ghostscript (8.64~dfsg-6) unstable; urgency=low * Have ghostscript-x provide gs (wrongly dropped in 8.64~dfsg-4). * Really drop cidfmap in Init dir if virtually empty (as promised in 8.64~dfsg-5). Closes: bug#531182, thanks again to YAMASHITA Junji. * Avoid cleaning upstream cruft while in renamed subdirectory. * Register new symbols introduced in 8.64~dfsg-3 (added in upstream SVN revisions 9651, 9664, 9666, 9667, 9718 and 9719). * Update patch 0001 to sync with upstream SVN as of today (r9781): + FAPI Fix for Multiple Master fonts + PDF font handling: load by name when embedded stream unreadable + PDF colour handling: Support /Alternate space being ICCBased too + Update local jbig2dec source to 0.10 release + PDF graphics: Relax Gouraud free-form mesh shading as Acrobat does + PS and PDF improved memory handling for fonts not first in Fontmap + PDF fix font loader when Type 1 font executes 'restore' at EOF + PDF validate annotation /Border attribute, make invisible if wrong + Use 32-bit PostScript integers on 64 bit platform + PDF fix DOCVIEW pdfmark handling + Fix detect banding device, inbreaking wtsimdi device + Misc. minor fixes * Drop patches 0002-0007 and 1005 included above. * Separate jbig2dec patches in new patch 0002. -- Jonas Smedegaard Mon, 08 Jun 2009 18:30:32 +0200 ghostscript (8.64~dfsg-5) unstable; urgency=low * Rename patch 2003→1007 (it may be relevant for upstream). * Improve patch headers. * Fix CMap symlinks. * Drop cidfmap in Init dir if virtually empty, fail build otherwise. * Together, CMap and cidfmap fixes above closes: bug#531182, thanks to YAMASHITA Junji. * Update CDBS snippets: + Fix package-relations.mk cleanup of debhelper 7 (irrelevant here) + Implement fail-source-not-repackaged rule in upstream-tarball.mk * Use new fail-source-not-repackaged rule (and drop unused CMap test). * Track symbols: + Fix symbols file handling in debian/rules to actually work. + Drop symbols inherited from libcairo, zlib, libpng, libjpeg and libjasper, previously statically linked from locally compiled libraries. * Register missing symbols: + p9color missing since 8.64~dfsg-3 + pdf_color_space and pdf_font_metadata missing since 8.64~dfsg-2 Aparently all private symbols which should cause no harm * More reliably move away unused libs during build (as introduced in 8.64~dfsg-2 as part of linking against system shared libraries). -- Jonas Smedegaard Fri, 05 Jun 2009 02:20:05 +0200 ghostscript (8.64~dfsg-4) experimental; urgency=low * Cleanup configure options and compiler flags, and support DEB_BUILD_OPTIONS=FT_BRIDGE (still disabled by default). * Fix typo in README.source and document DEB_MAINTAINER_MODE and Git use (replacing Subversion phrase). * Update watch file: + Use canonical URL + Fix debian version mangling + Improve comment * Partial rewrite of copyright to DEP5 proposed format. * Add CDBS snippet copyright-hints.mk to help track copyright and licensing changes. * Add CDBS snippet buildinfo.mk to include hints about build environment to binary packages potentially useful for debugging. * Drop old transitional packages gs, gs-aladdin and virtual gs-pdfencrypt. * Add symbols files to source package. * Cherry-pick patches from upstream svn: + Patch 0002: fix/relax pdf detection of ARC4 encryption + Patch 0003: bind ps2ai procedures to avoid some errors + Patch 0004: fix pdf_draw.ps to handle missing /Length attribute + Patch 0005: fix cupsPageSizeName to not treat all sizes as custom + Patch 0006: fix pstoraster to support passing filename as 6th arg. + Patch 0007: fix ps2write to not bogusly tag output DSC-compliant * Install via debian/tmp. Fix install version-specific dir and symlink. * Build static lib. * Install library files using d-shlibs. Include local patched copy of d-shlibmove (see bugs #530367, #530368). * Update copyright to include d-shlibs author (no new license). * Install upstream pdftoraster and drop identical local copy. * Drop virtually empty gs-common prerm file, thanks to lintian. * Use bash for ghostscript postinst (uses trap). * Silence lintain warning about unused jpeg source. * Add patch 2003 fixing pphs installation (it is a user script, not a library). -- Jonas Smedegaard Sun, 24 May 2009 22:40:32 +0200 ghostscript (8.64~dfsg-3) experimental; urgency=low * Update patch 0001 to sync with upstream SVN as of today (r9738): + Set USE_MEMSET by default. + Improve font handling, mostly with PDF files. + Fix colour handling with /UseCIEColor in PDF files. + Silence some Coverity warnings. + Add new "cdnj500" device to support HP DesignJet 500. + Improve transparency with PDF files (soft mask branch merged). + Allow inline images in pdfwrite. + Code cleanup in inferno driver. + Fix and improve FAPI, mostly with pdfwrite. + Fix oversights in AES decryption code for PDF files. + Improve cups output device: better page size and margin handling, add PPD keywords *cupsBackSide and *APDuplexRequiresFlippedMargin, and fix keyword *cupsFlipDuplex. + Correct a potential buffer overrun. + Fix unprintable margin handling of the "cups" output device. + Check for unbalanced q/Q operators in content streams of PDF forms. + Fix PostScript interpreter : ICC colour space could cause crash + Use 32 bits for fixed coordinates even on 64 bit cpus. + Fix (ps2write): Crash when converting large shading to image. -- Jonas Smedegaard Tue, 12 May 2009 23:04:08 +0200 ghostscript (8.64~dfsg-2) experimental; urgency=low * Update Vcs hints: Package now maintained in collab-maint group at Alioth using git. * Preserve cruft shipped upstream, to not upset git. * Maintain all package relations in debian/rules, resolved using CDBS. * Bump to debhelper v6. * Use quilt (not dpatch), and renumber patches. * Add new patch 0001 to sync with upstream SVN as of today (r9640): + Improved font handling, especially with CID fonts. + Improved cups driver, including segfault fixes. + Image handling: compression in PDF files, PPM file encoding. + PDF handling: image compression, page rotation, pdf14 transparency, multiple copies, workarounds for some broken PDFs. + Paper sizes (fixes to A3 in pswrite, add hagaki). + bit*** zero-length files when -dLastLine not set. + improved operand stack overflow handling. + Fix gcc and Coverity warnings, also fixing sime segfaults. + Changed ordering of LDFLAGS and library linking. + Fix segfault on archs using non-32-bit integers. + Fix colour issues: infinite loop, coloring of invisible objects. + Fix %%%%BeginPageSetup -> %%BeginPageSetup in DCS comment. + EPSI improved bbox calculation. * Add new patch 1003 modernising autoconf syntax regarding autogenerated cups/pstopxl and cups/pstoraster. * Restore configure in clean rule. * Add new patch 1006 fixing linkage with system libjasper, thanks to Tim Waugh and Redhat. * Link against system shared libraries (not local copies) zlib, libpng, libjpeg and libjasper. Build-depend on libjasper-dev. -- Jonas Smedegaard Thu, 30 Apr 2009 13:46:44 +0200 ghostscript (8.64~dfsg-1.1) unstable; urgency=high * Non-maintainer upload by the Security Team. * This update fixes various security issues: - CVE-2009-0792: multiple integer overflows in the icc library can cause a heap-based buffer overflow possibly leading to arbitray code execution. - CVE-2009-0584/CVE-2009-0583: Multiple integer overflows causing an application crash or possibly arbitrary code execution. - CVE-2009-0196: heap-based buffer overflow in big2_decode_symbol_dict() leading to arbitrary code execution via a crafted JBIG2 symbol dictionary segment. . (Closes: #524915, #522416, #524803) -- Nico Golde Wed, 22 Apr 2009 00:19:51 +0200 ghostscript (8.64~dfsg-1) unstable; urgency=low * New upstream release. * Drop patches 13, 21-22, 24-32 and 34-70: applied upstream now. * Drop patch 03 and simplify configure options: upstream supports libpaper now. * Drop patch 20: unneeded for recent ghostscript (see upstream r9430). * Disable patches 11-12 (CJKV): cannot apply - needs code changes. * Unfuzz patches 01-02. * Add new patch 71 to install CJK example files. * Add new patch 72 enhancing ps2pdf manpage to also mention ps2pdf14 (both original and german translation). * Add README.source referencing quilt, svn-buildpackage and CDBS documentation. * Mention stripped Resource/Font directory in debian/copyright, and rephrase related section for (hopefully) improved readability. * Use local CDBS snippet upstream-tarball to implement get-orig-source and more. Update README.source to document its use. * ps2pdf alternatives handling dropped in preinst of ghostscript and gs-common: ps2pdf is provided upstream as a script. Closes: bug#475817. * Add symlink for german manpage of ps2pdf to ps2pdf14. * Fix bashisms in ghostscript prerm, thanks to lintian. -- Jonas Smedegaard Sun, 08 Mar 2009 01:16:27 +0100 ghostscript (8.63.dfsg.1-2ubuntu2) jaunty; urgency=low * debian/rules: Removed /usr/share/ghostscript/8.63/lib/cidfmap, so that DeFoMa's cidfmap gets used. Otherwise Ubuntu's CJK fonts will not get found by Ghostscript (Thanks to Koji Otani from BBR Inc., Japan for the hint). -- Till Kamppeter Tue, 6 Jan 2009 09:40:45 +0100 ghostscript (8.63.dfsg.1-2ubuntu1) jaunty; urgency=low * debian/patches/02_gs_man_fix_debian.dpatch: Corrected paths in the man page. * debian/patches/14_gs-cjk_big_cmap_post_table.dpatch, debian/patches/23_gdevxini_segv_fix.dpatch, debian/patches/28_print_encrypted_PDFs_from_adobe_reader_8.dpatch: Removed obsolete patches which were not applied any more for longer time. * debian/patches/48_cups-output-device-pdf-duplex-uninitialized-memory.patch.dpatch: Removed accidentally generated file. * Merge from debian unstable, remaining changes: - gs-esp and gs-common depend only on ghostscript, not on ghostscript-x, as gs-esp had already split off gs-esp-x in Ubuntu - Resource/Font directory left in the .orig.tar.gz, therefore also left the lines for removing faulty fonts in debian/rules active. -- Till Kamppeter Mon, 5 Jan 2009 12:21:45 +0100 ghostscript (8.63.dfsg.1-2) unstable; urgency=low * libgs-dev: put versioned dependency on libgs8 - closes: #510691 -- Masayuki Hatta (mhatta) Sun, 04 Jan 2009 12:09:59 +0900 ghostscript (8.63.dfsg.1-1) unstable; urgency=low [Masayuki Hatta] * Maintainer upload, New upstream release. * Acknowledged NMUs, thanks tv - closes: #472645, #495703, #503712 * debian/patches/32_improve-handling-of-media-size-changes-from-gv.dpatch: Allow gv to change the image and media size (Upstream bug #688943) - closes: #142228 * debian/patches/33_bad-params-to-xinitimage-on-large-bitmaps.dpatch: Fixed zooming problem in gv (Upstream bug #689547) - closes: #419183 * debian/patches//34_ftbfs-on-hurd-fix.dpatch: Fixed FTBFS on hurd-i386 - closes: #475704 * Added Homepage, Vcs-Svn and Vcs-Browser headers in control. * Sync'd with the Ubuntu 8.63.dfsg.1-0ubuntu13. [Till Kamppeter] * debian/libgs8.shlibs: Removed. All libgs8 versions should have the same API and ABI. The artificial restriction set by this file required all reverse dependencies to be rebuilt for every stable release of Ghostscript. * debian/patches/35_disable_libcairo.dpatch: Added possibility to compile Ghostscript without the "cairo" output device. The device is still in experimental state and with its dependency on libcairo it pulls in a dependency on X. * debian/control, debian/rules: Build Ghostscript without the "cairo" output device. * debian/patches/38_pxl-duplex.dpatch: The Duplex option of the "pxlmono" and "pxlcolor" drivers did not work. * debian/patches/39_pxl-resolution.dpatch: The resolution must be also set as PJL command for the "pxlmono" and "pxlcolor" drivers. * debian/patches/42_gs-init-ps-delaybind-fix.dpatch: Make "ps2ascii" working again (Upstream bug #690124) - closes: #81430, #229748, #131528 * debian/patches/45_bjc600-bjc800-pdf-input.dpatch: Fix setting of the "DitheringType" option. With PDF input Ghostscript crashes, with PostScript input the "DitheringType" option was probably ignored (Upstream bug #690032). * debian/patches/48_cups-output-device-pdf-duplex-uninitialized-memory.patch.dpatch: Fixed several bugs in the "cups" (CUPS Raster) output device: - Ghostscript crashed with PDF input data - The "Duplex" and "MediaWeight" options were ignored - There was uninitialized memory and wrong usage of pointers, potential cause for segmentation faults or even vulnerabilities - There were mismatches in data types, leading to possible breakage of the "AdvanceDistance", "MediaWeight", and "cupsStringXX" options. (Upstream bug #690101). * debian/local/pdftoraster/pdftoraster.c, debian/local/pdftoraster/pdftoraster.convs, debian/rules: Added pdftoraster filter from the Ghostscript SVN repository - closes: #505282 * debian/patches/50_lips4-floating-point-exception: Fixed floating-point exception in "lips4" and other drivers (Upstream bug #690122). * debian/patches/52_cups-device-logging.dpatch: Made logging of the "cups" output device much less verbose. The log of one jub in debug mode did not fit into the maximum log file size of CUPS. * debian/patches/55_pcl-input-slot-fix.dpatch: Made the paper tray selection via "-dMediaPosition=..." in the PCL 4/5/5e drivers work (Upstream bug #690182). * debian/patches/57_pxl-input-slot-fix.dpatch: Made the paper tray selection via "-dMediaPosition=..." in the PCL 6/XL drivers work. * debian/patches/60_pxl-cups-driver-pdf.dpatch: Made the PCL-XL CUPS filter and PPDs work with PDF input. * debian/patches/62_onebitcmyk-pdf.dpatch: Check the whole Decode array to detect special cases of identity and inverse decoding in PDF files (Upstream bug #690178). * debian/ghostscript.postinst: Added automatic update of the PPD files of already existing print queues. * debian/ghostscript.postinst: Do not try to update the PPDs of existing print queues if CUPS is not installed or not running. * debian/patches/60_pxl-cups-driver-pdf.dpatch: The pstopxl filter did not remove its temporary file after finishing. * debian/patches/65_too-big-temp-files-1.dpatch: Ghostscript produced much too big temporary files (> 10 GB) when printing photos from GNOME apps in 1200 dpi. Part 1 of the fix which reduces the temp file size to less than 2 GB (Upstream bug #690133). * debian/patches/67_too-big-temp-files-2.dpatch: Complete fix for the too big temporary files. Now the bug is completely fixed. Temp files are not much bigger than the jobs themselves now (Upstream bug #690133). * debian/patches/70_take-into-account-data-in-stream-buffer-before-refill.dpatch: Certain files lead to a Ghostscript error due to wrong handling of the stream buffer (Upstream bug #690090). -- Masayuki Hatta (mhatta) Sun, 04 Jan 2009 09:30:13 +0900 ghostscript (8.63.dfsg.1-0ubuntu13) jaunty; urgency=low * debian/patches/70_take-into-account-data-in-stream-buffer-before-refill.dpatch: Certain files lead to a Ghostscript error due to wrong handling of the stream buffer (LP: #306125, upstream bug #690090). * debian/patches/67_too-big-temp-files-2.dpatch: Complete fix for the too big temporary files. Now the bug is completely fixed. Temp files are not much bigger than the jobs themselves now (LP: #288570, upstream bug #690133). -- Till Kamppeter Sun, 14 Dec 2008 15:37:45 +0100 ghostscript (8.63.dfsg.1-0ubuntu12) jaunty; urgency=low * debian/patches/65_too-big-temp-files-1.dpatch: Ghostscript produced much too big temporary files (> 10 GB) when printing photos from GNOME apps in 1200 dpi. Part 1 of the fix which reduces the temp file size to less than 2 GB (LP: #288570, upstream bug #690133). -- Till Kamppeter Wed, 3 Dec 2008 23:37:45 +0100 ghostscript (8.63.dfsg.1-0ubuntu11) jaunty; urgency=low * debian/patches/60_pxl-cups-driver-pdf.dpatch: The pstopxl filter did not remove its temporary file after finishing. -- Till Kamppeter Sat, 29 Nov 2008 13:37:45 +0100 ghostscript (8.63.dfsg.1-0ubuntu10) jaunty; urgency=low * debian/ghostscript.postinst: Do not try to update the PPDs of existing print queues if CUPS is not installed or not running (LP: #302532). -- Till Kamppeter Wed, 26 Nov 2008 22:26:45 +0100 ghostscript (8.63.dfsg.1-0ubuntu9) jaunty; urgency=low * debian/ghostscript.postinst: Added automatic update of the PPD files of already existing print queues. -- Till Kamppeter Wed, 26 Nov 2008 18:18:22 +0100 ghostscript (8.63.dfsg.1-0ubuntu8) jaunty; urgency=low * Release for assorted upstream fixes. * debian/patches/52_cups-device-logging.dpatch: Made logging of the "cups" output device much less verbose. The log of one jub in debug mode did not fit into the maximum log file size of CUPS. * debian/patches/55_pcl-input-slot-fix.dpatch: Made the paper tray selection via "-dMediaPosition=..." in the PCL 4/5/5e drivers work (Upstream bug #690182). * debian/patches/57_pxl-input-slot-fix.dpatch: Made the paper tray selection via "-dMediaPosition=..." in the PCL 6/XL drivers work. * debian/patches/60_pxl-cups-driver-pdf.dpatch: Made the PCL-XL CUPS filter and PPDs work with PDF input. * debian/patches/62_onebitcmyk-pdf.dpatch: Check the whole Decode array to detect special cases of identity and inverse decoding in PDF files (Upstream bug #690178). -- Till Kamppeter Wed, 26 Nov 2008 11:30:22 +0200 ghostscript (8.63.dfsg.1-0ubuntu7) jaunty; urgency=low * debian/local/pdftoraster/pdftoraster.c, debian/local/pdftoraster/pdftoraster.convs, debian/rules: Added pdftoraster filter from the Ghostscript SVN repository (LP: #290395). * debian/control: Added conflict with cups < 1.3.9-4 because the pdftoraster filter was there before. * debian/patches/50_lips4-floating-point-exception: Fixed floating-point exception in "lips4" and other drivers (Upstream bug #690122). -- Till Kamppeter Tue, 11 Nov 2008 10:33:22 +0200 ghostscript (8.63.dfsg.1-0ubuntu6) intrepid; urgency=low * debian/patches/42_gs-init-ps-delaybind-fix.dpatch: Make "ps2ascii" working again (LP: #281419, upstream bug #690124). * debian/patches/45_bjc600-bjc800-pdf-input.dpatch: Fix setting of the "DitheringType" option. With PDF input Ghostscript crashes, with PostScript input the "DitheringType" option was probably ignored (Upstream bug #690032). * debian/patches/48_cups-output-device-pdf-duplex-uninitialized-memory.patch.dpatch: Fixed several bugs in the "cups" (CUPS Raster) output device: - Ghostscript crashed with PDF input data - The "Duplex" and "MediaWeight" options were ignored - There was uninitialized memory and wrong usage of pointers, potential cause for segmentation faults or even vulnerabilities - There were mismatches in data types, leading to possible breakage of the "AdvanceDistance", "MediaWeight", and "cupsStringXX" options. (Upstream bug #690101). -- Till Kamppeter Sun, 19 Oct 2008 12:48:22 +0200 ghostscript (8.63.dfsg.1-0ubuntu5) intrepid; urgency=low * debian/patches/38_pxl-duplex.dpatch: The Duplex option of the "pxlmono" and "pxlcolor" drivers did not work (part 1 of the fix for LP: #282738). * debian/patches/39_pxl-resolution.dpatch: The resolution must be also set as PJL command for the "pxlmono" and "pxlcolor" drivers. -- Till Kamppeter Mon, 13 Oct 2008 22:55:22 +0200 ghostscript (8.63.dfsg.1-0ubuntu4) intrepid; urgency=low * debian/control, debian/rules: Merge ghostscript-fonts back into ghostscript, since this is not needed at present. * debian/rules: Drop most of the fonts from ghostscript since gsfonts ships newer versions. -- Steve Langasek Thu, 21 Aug 2008 07:29:40 +0000 ghostscript (8.63.dfsg.1-0ubuntu3) intrepid; urgency=low * debian/rules: Fixed typo (LP: #256975). * debian/ghostscript.links: s/8.62/8.63/ * debian/patches/35_disable_libcairo.dpatch: Added possibility to compile Ghostscript without the "cairo" output device. The device is still in experimental state and with its dependency on libcairo it pulls in a dependency on X. * debian/control, debian/rules: Build Ghostscript without the "cairo" output device (LP: #256859). -- Till Kamppeter Mon, 11 Aug 2008 17:10:22 +0200 ghostscript (8.63.dfsg.1-0ubuntu2) intrepid; urgency=low * debian/control, debian/rules: Split the fonts off into its own "ghostscript-fonts" package. Changes dependencies of "ghostscript" package that either "ghostscript-fonts" or "gsfonts" can be used. -- Till Kamppeter Mon, 11 Aug 2008 10:10:22 +0200 ghostscript (8.63.dfsg.1-0ubuntu1) intrepid; urgency=low * New upstream release * Merge from debian unstable, remaining changes: - gs-esp and gs-common depend only on ghostscript, not on ghostscript-x, as gs-esp had already split off gs-esp-x in Ubuntu * debian/patches/12_gs-cjk_vertical_writing_metrics_fix.dpatch, debian/patches/30_ps2pdf_man_improvement.dpatch: Adapted to upstream changes. * debian/control: Added libcairo2-dev to the build dependencies, as Ghostscript has a libcairo-based output device now. -- Till Kamppeter Tue, 5 Aug 2008 11:10:22 +0200 ghostscript (8.62.dfsg.1-3.2) unstable; urgency=low * Non-maintainer upload. * Make ghostscript depend on gs-common to prevent removal. Drop gs-common -> ghostscript-x dependency to not force the X version on all users. Hopefully Closes: #503712. -- Thomas Viehmann Sun, 28 Dec 2008 11:18:18 +0100 ghostscript (8.62.dfsg.1-3.1) unstable; urgency=medium * Non-maintainer upload. * Add (empty) gs-common.prerm to enable upgrades etch->lenny to succeed when the old gs-common.prerm fails. Closes: #495703. Thanks to Niko Tyni for the bug report and analysis. -- Thomas Viehmann Sun, 31 Aug 2008 22:26:34 +0200 ghostscript (8.62.dfsg.1-3) unstable; urgency=low * Acknowledged NMU, thanks madcoder - closes: #453903 * Bumped to Standards-Version: 3.8.0. * Fixed fakeroot build error, thanks Bob Lindell - closes: #484712 * ghostscript-doc.doc-base: Made file mask *.htm* instead of *.html. -- Masayuki Hatta (mhatta) Sun, 20 Jul 2008 08:59:17 +0900 ghostscript (8.62.dfsg.1-2.1ubuntu1) intrepid; urgency=low * Merge from debian unstable, remaining changes: - gs-esp and gs-common depend only on ghostscript, not on ghostscript-x, as gs-esp had already split off gs-esp-x in Ubuntu * debian/libgs8.shlibs: Removed. All libgs8 versions should have the same API and ABI. The artificial restriction set by this file required all reverse dependencies to be rebuilt for every stable release of Ghostscript. * debian/ghostscript.doc-base: Removed. The file conflicts with the corresponding file of ghostscript-doc and it also points to documentation files which make only part of ghostscript-doc, so the files can be not installed when this doc-base file is installed. * debian/ghostscript-doc.doc-base: Corrected file mask for all HTML files. The Ghostscript documentation is in *.htm files. -- Till Kamppeter Mon, 9 Jun 2008 18:41:22 +0200 ghostscript (8.62.dfsg.1-2.1) unstable; urgency=high * Non-maintainer upload. * Add patches/31_fix-gc-sigbus.dpatch to avoid sigbus/segfaults on sparc and hppa (and probably errors on other architectures as well). Closes: #453903. -- Pierre Habouzit Wed, 14 May 2008 15:25:03 +0200 ghostscript (8.62.dfsg.1-2) unstable; urgency=low * ghostscript: Tighten up versioned dependency on libgs8 - closes: #470253 * preinsts for each dummy packages now call update-alternatives to make sure gs symlinks are removed before the new ghostscript package is installed - closes: #449173 -- Masayuki Hatta (mhatta) Thu, 13 Mar 2008 02:30:51 +0900 ghostscript (8.62.dfsg.1-1) unstable; urgency=low * New upstream release. * Removed Resource/Font for a minor licensing problem. I'm now contacting the upstream, so they might be back soon. * Fixed in the upstream - closes: #418706 See also http://bugs.ghostscript.com/show_bug.cgi?id=689600 * Now it can handle DEB_BUILD_OPTS as expected - closes: #446819 * 10_ijs_krgb_support.dpatch: incorporated into the upstream, removed. * 27_cups_filters_with_buffered_input.dpatch: incorporated into the upstream, removed. * 28_print_encrypted_PDFs_from_adobe_reader_8.dpatch: incorporated into the upstream, removed. * 31_CVE-2008-0411.dpatch: incorporated into the upstream, removed. thanks Nico Golde for NMU. * shlibs: loosen the libgs8 shlibs version specification, thanks Sune Vuorela for pointing it out - closes: #469218 * control: ghostscript doesn't provide gs, gs-esp, gs-gpl, gs-afpl and gs-aladdin anymore - ghostscript-x does - closes: #448702, #462678 * control: tighten up versioned Conflicts on dummy packages. * rules: removes /usr/share/doc/ghostscript/README.gz explicitly - closes: #460692 * postinst: removes old /etc/alternative symlinks explicitly - closes: #447495, #449061 -- Masayuki Hatta (mhatta) Sun, 09 Mar 2008 10:39:31 +0800 ghostscript (8.61.dfsg.1-1.1) unstable; urgency=high * Non-maintainer upload by security team. * Fix stack based buffer overflow in the zseticcspace() function possibly leading to arbitrary code exeuction via a crafted ps file. (31_CVE-2008-0411.dpatch; Closes: #468190). * Adjusting libgs shlibs file to match the new version number. -- Nico Golde Sat, 01 Mar 2008 11:18:27 +0100 ghostscript (8.61.dfsg.1-1ubuntu3) hardy; urgency=low * SECURITY UPDATE: buffer overflow in color space handling code * debian/patches/31_CVE-2008-0411.dpatch: fix zseticcspace() to perform range checks * References CVE-2008-0411 -- Jamie Strandboge Tue, 08 Apr 2008 11:58:11 -0400 ghostscript (8.61.dfsg.1-1ubuntu2) hardy; urgency=low * Fix debian/libgs8.shlibs for ubuntu version number -- Jonathan Riddell Sat, 16 Feb 2008 18:45:47 +0000 ghostscript (8.61.dfsg.1-1ubuntu1) hardy; urgency=low * Merge from debian unstable, remaining changes: - gs-esp and gs-common depend only on ghostscript, not on ghostscript-x, as gs-esp had already split off gs-esp-x in Ubuntu - Updated the KRGB patch from HP to the newest upstream version with added checks for null forward device in the graphic procedures to fix segfault bug LP: #69905 and corrected "force banding" code in gsijs_open for small images (IE: hagaki in landscape). -- Till Kamppeter Wed, 6 Feb 2008 17:41:22 +0100 ghostscript (8.61.dfsg.1-1) unstable; urgency=low [Masayuki Hatta] * New upstream release. * Now pdf2dsc can handle PageLabels properly - closes: #266166 * Bumped up Standards-Version to 3.7.3 (no physical changes). * NEWS, README.Debian, copyright: Revised. * NEWS: Fixed wrong version number - closes: #454514, #454515 * Sorted out dpatches: 01-09: Debian-specific patches 10-19: Bigger 3rd party patches (KRGB & CJKV) 20-: Temporary bug fixes (should be incorporated into the upstream) * debian/patches/29_gs_css_fix.dpatch: Fixes a syntax error in gs.css - closes: #457118 * debian/patches/30_ps2pdf_man_improvement.dpatch: Improved manpages for ps2pdf - closes: #193461 [Till Kamppeter] * debian/patches/09_ijs_krgb_support.dpatch: Adapted to upstream changes. * debian/rules: Updated CUPS-related variables for "make install" calls. * debian/rules: Remove /usr/include/ghostscript from the ghostscript package, they go into libgs-dev. * debian/patches/40_cups_filters_with_buffered_input.dpatch: Modified cups/psto* filters to let Ghostscript always use buffered input. This works around a Ghostscript bug which prevents printing encrypted PDF files with Adobe Reader 8.1.1 and Ghostscript built as shared library (Ghostscript bug #689577, Ubuntu bug LP: #172264) * debian/patches/42_print_encrypted_PDFs_from_adobe_reader_8.dpatch: Fixed printing of encrypted PDF files from Adobe Reader 8.1.1. This is the real fix now and not only a workaround. (Ghostscript bug #689577, Ubuntu bug LP: #172264). -- Masayuki Hatta (mhatta) Sun, 13 Jan 2008 02:13:25 +0900 ghostscript (8.61.dfsg.1-0ubuntu5) hardy; urgency=low * debian/rules: Do not ship README.gz in ghostscript, it collides with ghostscript-doc. (LP: #185602, Debian #460692) -- Martin Pitt Wed, 30 Jan 2008 11:11:03 +0100 ghostscript (8.61.dfsg.1-0ubuntu4) hardy; urgency=low * debian/patches/09_ijs_krgb_support.dpatch: Updated the KRGB patch from HP to the newest upstream version with added checks for null forward device in the graphic procedures to fix segfault bug LP: #69905 and corrected "force banding" code in gsijs_open for small images (IE: hagaki in landscape). -- Till Kamppeter Wed, 23 Jan 2008 13:17:43 +0000 ghostscript (8.61.dfsg.1-0ubuntu3) hardy; urgency=low * debian/patches/42_print_encrypted_PDFs_from_adobe_reader_8.dpatch: Fixed printing of encrypted PDF files from Adobe Reader 8.1.1. This is the real fix now and not only a workaround. (Ghostscript bug #689577, Ubuntu bug LP: #172264). -- Till Kamppeter Mon, 12 Dec 2007 12:17:43 +0000 ghostscript (8.61.dfsg.1-0ubuntu2) hardy; urgency=low * Merge with Debian unstable. Remaining Ubuntu changes: - gs-esp and gs-common depend only on ghostscript, not on ghostscript-x, as gs-esp had already split off gs-esp-x in Ubuntu - Upstream version 8.61 final * debian/patches/40_cups_filters_with_buffered_input.dpatch: Modified cups/psto* filters to let Ghostscript always use buffered input. This works around a Ghostscript bug which prevents printing encrypted PDF files with Adobe Reader 8.1.1 and Ghostscript built as shared library (Ghostscript bug #689577, Ubuntu bug LP: #172264) -- Till Kamppeter Wed, 5 Dec 2007 13:17:43 +0000 ghostscript (8.61.dfsg.1-0ubuntu1) hardy; urgency=low * New upstream release o Final 8.61 release * debian/patches/09_ijs_krgb_support.dpatch: Adapted to upstream changes. * debian/rules: Updated CUPS-related variables for "make install" calls. * debian/rules: Remove /usr/include/ghostscript from the ghostscript package, they go into libgs-dev. -- Till Kamppeter Thu, 22 Nov 2007 12:17:43 +0000 ghostscript (8.61.dfsg.1~svn8187-3) unstable; urgency=low * Maintainer upload. * Acknowledged NMU, thanks Cyril - closes: #422723, #430337 * 06_libpaper_support.dpatch: fixed to cope with being called repeatedly. Thanks Carlos Garcia Campos - closes: #453048 * debian/watch: Now it works. Thanks Raphael Geissert - closes: #449310 -- Masayuki Hatta (mhatta) Wed, 05 Dec 2007 06:06:23 +0900 ghostscript (8.61.dfsg.1~svn8187-2.1) unstable; urgency=low * Non-maintainer upload. * Fix long-standing implicit pointer conversions by backporting a fix from SVN revision 8232, as pointed by Dann Frazier (Closes: #422723): - 40_implicit_pointer_conversion_fix.dpatch added for this purpose. It also contains an additional tweak for src/gpmisc.c so that no attempt to use fdopen64() is made, fdopen() is the way to go. That tweak also solves the FTBFS on GNU/kFreeBSD (Closes: #430337). - DEB_AUTO_UPDATE_AUTOCONF set to “yes” in debian/rules so that the configure script gets updated at build time (the needed build dependencies are already there). -- Cyril Brulebois Sat, 24 Nov 2007 06:35:17 +0100 ghostscript (8.61.dfsg.1~svn8187-2) unstable; urgency=low * Maintainer upload, acknowledged NMU - closes: #447188 * Made all dummy packages depend on ghostscript AND ghostscript-x, so their nominal "functionality" should virtually be the equivalent to the former gs|gs-gpl|gs-esp|gs-afpl packages - closes: #446825 * Revised debian/copyright - closes: #444468, #444467 * debian/rules: Clean files from package ghostscript which are moved to ghostscript-doc on i386 (where arch-all packages are built). On all non-i386 platforms the files remained in the main package, which causes file conflicts and unnecessary package growth - closes: #446927 (fix from Ubuntu) * debian/patches/06_libpaper_support.dpatch: Added missing "#include ", this made Ghostscript not working at all on IA64 - closes: #428055 (fix from Ubuntu) -- Masayuki Hatta (mhatta) Wed, 31 Oct 2007 02:27:38 +0900 ghostscript (8.61.dfsg.1~svn8187-1.1) unstable; urgency=high * Non-maintainer upload by testing security team. * Included 31-CVE-2007-2721.dpatch to fix remote user-assisted denial of service via malformed image files in embedded copy of jasper (Closes: #447188) -- Nico Golde Sat, 20 Oct 2007 12:46:44 +0200 ghostscript (8.61.dfsg.1~svn8187-1) unstable; urgency=low * New upstream release - closes: #437848, #291452 * Important CJK handling fixes are absent from the current 8.60 or SVN, so I decided to use this SVN snapshots until the issue is fixed (Ubuntu does the same). * Can be built with the modern GCC now - closes: #440427 * Complete re-organization: gs-gpl, gs-esp and gs-afpl are discontinued and gone altogether, and now there's only one ghostscript package - closes: #52603, #159516, #434791, #394628, #394350, #295377, #246983, #416253, #323867 * Imported Ubuntu's various improvements on packaging. Thanks for Ubuntu people, especially Till Kamppeter. * Sorted out dummy packages - closes: #321989, #401137 * Separated -doc package - closes: #138549, #391082, #389872 * Separated -x package, the main ghostscrpt doesn't depend X anymore - cloese: #76814, #393980, #240215 * Separated libgs* packages - closes: #344351 * Enabled cdj880 driver - closes: #157067 * Enabled Lexmark 3200 driver - closes: #157067 * Enabled pcl3 driver - closes: #259075 * Added /usr/share/fonts/type1/gsfonts to fontpath - closes: #434310 * Sorted out licensing information. * Removed jasper/doc/*.pdf since those are shipped without "transparent" copies a la GFDL. -- Masayuki Hatta (mhatta) Sun, 14 Oct 2007 22:24:34 +0900 ghostscript (8.61.dfsg.1~svn8187-0ubuntu4) hardy; urgency=low * debian/rules: Clean /usr/share/doc/*.html files from package 'ghostscript', too (incomplete fix in previous versions), since they are already shipped in ghostscript-doc and thus have a file conflict. (LP: #153218) -- Martin Pitt Mon, 22 Oct 2007 17:21:21 +0200 ghostscript (8.61.dfsg.1~svn8187-0ubuntu3) gutsy; urgency=low [ Till Kamppeter ] * debian/rules: Install missing *.upp files (usptream bug, LP: #150985). [ Martin Pitt ] * debian/rules: Clean files from package ghostscript which are moved to ghostscript-doc on i386 (where arch-all packages are built). On all non-i386 platforms the files remained in the main package, which causes file conflicts and unnecessary package growth. This is a quick hack for Gutsy. In Hardy, this horribly broken build system should be fixed properly. -- Martin Pitt Tue, 09 Oct 2007 23:00:28 +0200 ghostscript (8.61.dfsg.1~svn8187-0ubuntu2) gutsy; urgency=low * debian/patches/06_libpaper_support.dpatch: Added missing "#include ", this made Ghostscript not working at all on IA64 (Fixes LP: #130842, thanks to Ralph Giles from ghostscript.com for the fix and to Matthias Klose for the IA64 test machine). * debian/ghostscript.links: Bumped version number in link for CJK fonts (Fixes LP: #139911). -- Till Kamppeter Tue, 18 Sep 2007 10:00:58 +0100 ghostscript (8.61.dfsg.1~svn8187-0ubuntu1) gutsy; urgency=low * New upstream release o SVN snapshot rev 8187 o CJK patches from Koji Otani to fix several issues with CJK text (should fix http://bugs.ghostscript.com/show_bug.cgi?id=689304). These patches were also applied to ESP Ghostscript and having them in Gutsy's GPL GS will avoide regressions against Feisty's ESP GS. o Minor bug fixes from upstream. -- Till Kamppeter Mon, 13 Aug 2007 21:49:58 +0100 ghostscript (8.60.dfsg.6-0ubuntu2) gutsy; urgency=low * debian/patches/30_assorted_script_fixes.dpatch: Back out the update to pdf2eps, causing build failures on the buildds. * debian/control: Build-depend on freeglut3-dev | libglut-dev. -- Matthias Klose Fri, 10 Aug 2007 10:50:08 +0200 ghostscript (8.60.dfsg.6-0ubuntu1) gutsy; urgency=low * Final release of Ghostscript 8.60 o First official release of GPL Ghostscript with merged functionality of ESP Ghostscript. o Closes: LP: #128801 * debian/patches/50_gv_kghostview_compatibility.dpatch: Removed workaround, real fix done upstream -- Till Kamppeter Thu, 02 Aug 2007 02:13:11 +0100 ghostscript (8.60.dfsg.5-0ubuntu1) gutsy; urgency=low * New upstream release o SVN snapshot rev 8127 o Carried over some bug fixes from ESP Ghostscript (see http://bugs.ghostscript.com/show_bug.cgi?id=689315) o Minor bug fixes from upstream. * debian/patches/30_assorted_script_fixes.dpatch: Updated. -- Till Kamppeter Mon, 16 Jul 2007 17:43:58 +0100 ghostscript (8.60.dfsg.4-0ubuntu1) gutsy; urgency=low * New upstream release o SVN snapshot rev 8050 o From now on we take snapshots from the trunk, as the merger of ESP and GPL Ghostscript is completed and moved into the trunk. The branch "gs-esp-gpl-merger" has been removed. o Minor bug fixes from upstream. * debian/patches/50_gv_kghostview_compatibility.dpatch: Updated. -- Till Kamppeter Thu, 14 Jun 2007 2:53:50 -0700 ghostscript (8.60.dfsg.3-0ubuntu2) gutsy; urgency=low * debian/control: + Make gsfonts a Depends instead of Recommends as it was before on the gs-common package. This fixes the GStreamer build failure. -- Sebastian Dröge Tue, 12 Jun 2007 21:15:25 +0200 ghostscript (8.60.dfsg.3-0ubuntu1) gutsy; urgency=low * New upstream release o SVN snapshot rev 8025, branch "gs-esp-gpl-merger" o Minor bug fixes from upstream. * debian/rules: Renamed executable /usr/bin/gsc to /usr/bin/gs to not conflict with the gambc package (Fixes LP: #118785). -- Till Kamppeter Wed, 06 Jun 2007 17:22:27 +0100 ghostscript (8.60.dfsg.2-0ubuntu2) gutsy; urgency=low * debian/ghostscript.preinst: - Only remove the gs alternatives on upgrades from before 8.60.dfsg.2-0ubuntu1, and don't let the lack of alternatives fail installation. - Remove "rm -rf /etc/ghostscript /etc/gs-gpl" insanity. -- Martin Pitt Fri, 01 Jun 2007 14:18:02 +0200 ghostscript (8.60.dfsg.2-0ubuntu1) gutsy; urgency=low * New upstream release o SVN snapshot rev 7997, branch "gs-esp-gpl-merger" o Added functionality to compile with shared libgs and without GTK via "--disable-gtk" configure option (feature overtaken from ESP Ghostscript). o Minor bug fixes from upstream. * debian/patches/40_fix_imdi_patch.dpatch: Removed, fixed upstream. -- Till Kamppeter Wed, 23 May 2007 11:54:11 +0100 ghostscript (8.60.dfsg.1-0ubuntu2) gutsy; urgency=low * debian/rules: Added forgotten option "--disable-gtk" to the "./configure" command line, this prevented ghostscript from building on the build servers. * Added missing version number to "Conflicts: gs-common" in the ghostscript package. * Do away with the update-alternatives, we have one grand unified Ghostscript now! -- Till Kamppeter Tue, 22 May 2007 21:38:21 +0100 ghostscript (8.60.dfsg.1-0ubuntu1) gutsy; urgency=low * This is the first Debian/Ubuntu package reflecting Artifex' move to do the head development of Ghostscript under GPL and the merger of ESP Ghostscript into GPL Ghostscript which followed after that. * Renamed from "gs-gpl" to "ghostscript" on agreement with Debian Ghostscript maintainer Masayuki Hatta * New upstream release o SVN snapshot rev 7979, branch "gs-esp-gpl-merger" o This is the head of the Ghostscript development now. There is no separate AFPL Ghostscript any more. See http://www.ghostscript.com/awki/News. o All extra functionality of ESP Ghostscript is merged into GPL Ghostscript now and the development of ESP Ghostscript is discontinued. See http://www.cups.org/espgs/. * debian/control: Added tags and transitional packages to make this package (ghostscript) replacing gs-esp and gs-afpl (Closes: LP#47432, LP#47458, LP#75894, LP#83769, LP#103595, LP#105752, LP#108159, LP#109304). * debian/rules, debian/control, debian/dirs, debian/ghostscript.*, debian/README.Debian, debian/gs.defoma: Merged in gs-common. * debian/control: Set Ubuntu maintainer. * debian/rules: Activated full functionality by appropriate "./configure" command line options. This is now the one and only Ghostscript in Ubuntu Linux. * debian/rules: Do not build static executable, to reduce the build time to one half of the former build time of gs-esp (or to not double the build time of ghostscript). * debian/rules, debian/control: Split package into ghostscript, libgs8, libgs-dev, and ghostscript-x, like we did with gs-esp, also split off documentation into ghostcript-doc. * debian/NEWS: Added info about merger of ESP and GPL Ghostscript * debian/patches/: Removed 01_gsdir_for_gs-gpl.dpatch, 02_fontpath_for_debian, 20_additional_drivers, 21_additional_drivers_mak, 22_gdi_support, 23_hl12x0_support: They are not needed any more after merging in the ESP GS functionality and moving to "ghostscript" as package name. * debian/patches/09_ijs_krgb_support.dpatch: Updated to version 1.3 of the KRGB patch (from HPLIP 1.7.3). * debian/patches/04_gdevxini_segv_fix.dpatch: Removed, it makes the X device being reopened on every page size change and breaks output with tools like gv (gv hangs without showing any page). * debian/patches/40_fix_imdi_patch.dpatch: Fixed imdi directory location in src/devs.mak * debian/patches/50_gv_kghostview_compatibility.dpatch: Fixed compatibility with GUIs like gv and kghostview (see upstream bug 689237, http://bugs.ghostscript.com/show_bug.cgi?id=689237, note: reintroduces upstream bug 687125 but that bug is much less a problem). * debian/ghostscript.postinst: update-alternatives configuration does not get correctly updated when the obsolete gs-esp and gs-afpl packages get removed via the transitional packages. Let the post-install script of the ghostscript package reset update-alternatives to auto mode for such a case. -- Till Kamppeter Mon, 21 May 2007 13:00:21 +0100 gs-gpl (8.56.dfsg.1-1) unstable; urgency=low * New upstream release. * man/gs.1: Paths are adjusted to Debian - closes: #405049 * man/gs.1: Fixed various typos - closes: #323534 * Fixed insecure /tmp usage in toolbin scripts (CAN-2005-2352) - closes: #291373 * Now opdfread.ps is installed - closes: #401755 -- Masayuki Hatta (mhatta) Sat, 05 May 2007 00:58:39 +0900 gs-gpl (8.54.dfsg.1-5) unstable; urgency=high * Oops, I forgot to apply dpatch #20, so the large amount of drivers are missing in -4. Mea Culpa. * Added Brother HL-1240/1250 support - closes: #280693 * Make sure /etc/gs-gpl is removed - closes: #333474 * Remove Fontmap and Fontmap.GS from the package - closes: #325400 * Provides the index.html symlink - closes: #303792 * Added binary-indep rules in debian/rules - closes: #267398 -- Masayuki Hatta (mhatta) Sat, 21 Oct 2006 10:25:56 +0900 gs-gpl (8.54.dfsg.1-4) unstable; urgency=high * Brought back KRGB colorspace support to ijs - closes: #355616 * Brought back Samsung GDI support - closes: #365337 * gs depends on gs-gpl | gs-esp - closes: #297024 * rules, gs-gpl.links: s/8.15/8.54/g. -- Masayuki Hatta (mhatta) Wed, 18 Oct 2006 21:33:33 +0900 gs-gpl (8.54.dfsg.1-3) unstable; urgency=low * Supports big post table for CMap - closes: #205055 * Fixed a potential segv problem in src/gdevxini.c, thanks Ian Jackson for providing a patch - closes: #254206 -- Masayuki Hatta (mhatta) Wed, 18 Oct 2006 03:48:57 +0900 gs-gpl (8.54.dfsg.1-2) unstable; urgency=high * Made qsort call in src/gxfcopy.c 64-bit clean, thanks Andreas - closes: #390875 -- Masayuki Hatta (mhatta) Thu, 12 Oct 2006 09:28:26 +0900 gs-gpl (8.54.dfsg.1-1) unstable; urgency=low * New upstream release - closes: #373805 * Acknowledged NMUs, since crash on ppc has been fixed in the upstream - closes: #357326, #327288, #324796 -- Masayuki Hatta (mhatta) Tue, 26 Sep 2006 01:25:04 +0900 gs-gpl (8.50-1.1) unstable; urgency=high * Non-maintainer upload. * debian/patches/00list: Re-enable patch 10_powerpc_crash_fix; upstream delayed to fix after the 8.50 release. Cures segfaults on ppc (again). Thanks to Roger Leigh for testing. Closes: #357326 -- Daniel Kobras Wed, 29 Mar 2006 14:22:21 +0200 gs-gpl (8.50-1) unstable; urgency=low * Works done at Codefest in Malaysia 2006. * New upstream release - closes: #347637, #348834 * Updated debian/watch - closes: #354352 * Bumped to Standards-Version: 3.6.2.2 (no physical changes). -- Masayuki Hatta (mhatta) Sun, 5 Mar 2006 10:46:33 +0900 gs-gpl (8.15-4.1) unstable; urgency=low * Non-maintainer upload. * Use gcc-3.4 on s390. -- Bastian Blank Thu, 29 Dec 2005 10:52:10 +0000 gs-gpl (8.15-4) unstable; urgency=low * Apply patch 10 working around a crashing bug on powerpc (details in the patch file itself). This closes: bug#324796, #325570, #327288 (thanks to Paul Brossier for first reporting, Ian Jackson for providing the patch, and Thomas Bushnell BSG for shouting about the problem). -- Jonas Smedegaard Mon, 19 Sep 2005 15:15:44 +0200 gs-gpl (8.15-3) unstable; urgency=low * Bumped Standards-Version to 3.6.2.1 (no physical changes). * Removed patch 04, since it doesn't affect at all. * Enabled jbig2dec support. * Now uses cidfmap generated by defoma. * gs-gpl.links: make a symlink of CMap directory under /usr/share/gs-gpl/8.15/Resource. NOTE: even if CMap files can be found somewhere in the font path, gs-esp fails to prepare a composed font with CIDFont and CMap. This hack is a workaround for "the CMap files must be put into the first directory of the font path" problem. Many Thanks Akira TAGOH for suggestion. -- Masayuki Hatta (mhatta) Thu, 18 Aug 2005 03:38:59 +0900 gs-gpl (8.15-2) unstable; urgency=low * Drop stp patch: + Remove stp-related parts of additional_drivers patches 20 and 21. + Drop build-dependency on libgimpprint-dev. + Remove stp note from README.Debian. + Closes: bug#313026 (thanks to Roger Leigh ). -- Jonas Smedegaard Wed, 20 Jul 2005 14:05:26 +0200 gs-gpl (8.15-1) unstable; urgency=low * Repackaged source tarball with non-free CMaps stripped. * Added check in debian/rules to fail if CMaps exist in the source. * Mention in debian/copyright that CMaps are stripped. * Add myself as uploader (acknowledged by Masayuki), and re-upload as regular maintainer upload. This package closes: bug#280352 (thanks to some anonymous(?) lilypond-lover offering virtual beer for pushing this newer release, and Wouter Verhelst for delivering the message). * Correct UTF8-encoding of debian/changelog. -- Jonas Smedegaard Fri, 15 Jul 2005 13:27:05 +0200 gs-gpl (8.15-0.1) unstable; urgency=low * NMU of newer upstream release. * Update and unfuzz patches (Note: source patched by 04_resourcedir_fix_for_debian slightly changed upstream, so may no longer be needed). * Use fine-grained X11 build-dependencies. -- Jonas Smedegaard Tue, 12 Jul 2005 10:52:11 +0200 gs-gpl (8.01-5) unstable; urgency=high * [NEWS] added a note on CJK TTF support. * Revive Samsung GDI support, thanks plum - closes: #250180 * Revive Brother 7x0 GDI support - closes: #253479 * Added KRGB colorspace support to gs IJS driver - closes: #249166 * Fix SEGV on -sDEVICE=bbox - closes: #250290, #254877 * Adjust the margins for Epson drivers - closes: #48975 * Now Suggests hpijs - closes: #161953 -- Masayuki Hatta (mhatta) Sun, 15 Aug 2004 13:03:15 +0900 gs-gpl (8.01-4) unstable; urgency=low * Fixed the priority to 20 - closes: #246983 * Removed funky character in NEWS, thanks tbm for pointing it out. -- Masayuki Hatta (mhatta) Wed, 5 May 2004 16:09:24 +0900 gs-gpl (8.01-3) unstable; urgency=low * Added Build-Dep: libgimpprint1-dev - closes: #244143 * Added lj3100sw driver - closes: #243963 * Revised description. * Added notes on stp. -- Masayuki Hatta (mhatta) Wed, 28 Apr 2004 05:40:05 +0900 gs-gpl (8.01-2) unstable; urgency=low * Added STP support culled from gimp-print 4.2.6. -- Masayuki Hatta (mhatta) Tue, 13 Apr 2004 13:20:31 +0900 gs-gpl (8.01-1) unstable; urgency=low * New maintainer with torsten's blessing. He is still a co-maintainer. * The package name has been changed to gs-gpl. * Now uses dpatch. * Acknowledged NMUs - closes: #63163, #136652, #105179, #128314, #128416 * New upstream release - closes: #235686, #226088 * Revised copyright - closes: #226020 * Moved *map under /etc/gs-gpl - closes: #179244 * Do not run "update-alternatives --remove" when upgrade - closes: #163267 * Improved libpaper support - closes: #182268 * Set the font path appropriately - closes: #122828, #159816, #111874, #195931, #128955 * Removed stp driver - closes: #170550 * Added cfax driver - closes: #183438 * Set the priority to 20. -- Masayuki Hatta (mhatta) Sat, 27 Mar 2004 00:00:05 +0900 gs (7.07-1) unstable; urgency=low * New upstream release. + Uses /dev/urandom instead of /dev/random so does not block forever waiting for quality random numbers (closes: #176850). * Fix buffer overflow in gdevhpij.c (sizeof(PK) < PIPE_BUF...) and remove the old patch (closes: #184345). * debian/devices: Add pngalpha device. -- Torsten Landschoff Wed, 18 Jun 2003 10:51:53 +0200 gs (7.06-1.1) unstable; urgency=low * NMU * Fix unconditional PIPE_BUF bug to build on GNU. (Closes: #184345) -- Robert Millan Sun, 13 Apr 2003 14:01:41 +0200 gs (7.06-1) unstable; urgency=low * New upstream release. * debian/rules: + Include History7.htm into the changelog. + Kill the /usr/share/man/de hierarchy which only documents stuff in gs-common, not even the gs command. -- Torsten Landschoff Thu, 3 Apr 2003 11:34:02 +0200 gs (7.05-3) unstable; urgency=low * Reextract the source without running ntpdate on another console and rebuild to fix the search path (closes: #173493, #173560). -- Torsten Landschoff Fri, 20 Dec 2002 15:54:29 +0100 gs (7.05-2) unstable; urgency=low * debian/control: Conflicts, Provides and Replaces gs-pdfencrypt - that functionality is now included in gs itself and the old stuff breaks with current gs (closes: #173222). * Apply the patch from Florian Zumbiehl (identical to the upstream solution in newer releases) to fix the scaling of the psmono/psgray driver - the output was scaled twice (closes: #171530). -- Torsten Landschoff Tue, 17 Dec 2002 11:44:44 +0100 gs (7.05-1) unstable; urgency=low * New upstream release. * debian/control: Use libpng3-dev instead libpng2-dev. -- Torsten Landschoff Sun, 1 Sep 2002 01:10:37 +0200 gs (6.53-7) unstable; urgency=low * debian/rules (binary-arch): Use rm -Rf to kill the man dir as rm -R seems to ask for permission for some users (closes: #152037). -- Torsten Landschoff Wed, 28 Aug 2002 01:28:36 +0200 gs (6.53-6) unstable; urgency=low * debian/devices: Enable the ljet4d driver as suggested by Isidro Cachadiña Gutiérez. -- Torsten Landschoff Tue, 27 Aug 2002 11:29:17 +0200 gs (6.53-5) unstable; urgency=low * Apply the hpijs margin patch from http://hpinkjet.sourceforge.net/gdevijs2.patch (closes: #151869). -- Torsten Landschoff Thu, 4 Jul 2002 09:54:39 +0200 gs (6.53-4) unstable; urgency=low * Enable the hl1240 driver (the hl1250 should already be there, but it seems it isn't...). * debian/control: Change build dependency on libgimpprint-dev to libgimpprint1-dev. -- Torsten Landschoff Wed, 3 Jul 2002 19:36:58 +0200 gs (6.53-3) unstable; urgency=high * debian/copyright: Include information about add on packages and their licenses. * debian/devices: Move x11 in front of x11alpha which has problems with mono displays at least (closes: #138844). * src/unix-gcc.mak: Reenable the pipe device as it seems harmless after all and many filters will break as they are using this feature to circumvent the old Ghostscript problem with -sOutputFile=- when the PostScript file writes text to stdout which interferes with the printer commands... (closes: #138364). * debian/control: Remove the reference to gs-pdfencrypt which is now obsolete as it is included in the official Ghostscript now. * Lintian cleanup: + Remove the extra license file /usr/share/doc/gs/COPYING.gz + Copying.htm stays as it is since it is linked in the docs + Convert History[56].htm to changes.gz using html2text to have an upstream changelog. * Included a few important patches from the Ghostscript CVS: + Handle the margins from an ijs server correctly. It was my hope that this would account for #141608, but that does not seem to be the case :( + src/gdevx.c: Patched to use the "right" color depth on X11 for all cases. It used to take the actual number of bits to store the color info as opposed to the number of bits actually used. + lib/pdf2dsc.ps: This was broken because of the security fix. Patched to open the files before dropping privileges. * lib/stcolor.ps: Compare the product name with "GNU Ghostscript" instead of just "Ghostscript" to detect the interpreter (closes: #108120). * src/gdevbj10.c: Apply the patch to fix the margins for the Canon BJ10e submitted by Jim Hague (closes: #118078). * debian/postinst: Link the manpage to gs.1.gz as well as a slave of the /usr/bin/gs alternative (closes: #122538). * gimp-print/README.stp: Copy from gimp-print source tree. * debian/docs: Install that file as $(docdir)/README.stp for those using that driver and needing some infos (closes: #122099). + debian/README.Debian: Refer the user to README.stp. * debian/rules: Install the documentation of the pcl3 driver (closes: #39342). * debian/docs: Add the README.lexmark of the lexmarkgs driver to the installed documentation. -- Torsten Landschoff Tue, 9 Apr 2002 02:29:10 +0200 gs (6.53-2) unstable; urgency=high * [SECURITY] src/unix-gcc.mak: Disable the pipe device as well since it still allows executing arbitrary commands. I'll turn it back on when I am sure it does not cause any security problems. -- Torsten Landschoff Thu, 7 Mar 2002 12:24:53 +0100 gs (6.53-1) unstable; urgency=high * New upstream release (closes: #130426). + Fixes the security problem allowing reading all files and executing random commands (closes: #136652). * debian/gen-makefile: Fix the BUILD_OPTIONS check (closes: #121871). * Should fix the cjk stuff I hope (closes: #116516). In case there is another problem please could somebody provide me with information how to check that it works? I am more than deeply frustrated with getting readmes in japanese, web pages in japanese etc. That's just deeply frustrating. -- Torsten Landschoff Wed, 6 Mar 2002 01:20:30 +0100 gs (6.51-7) unstable; urgency=medium * Urgency medium because it works around a bug breaking the package on one Debian architecture. * src/gxobj.h [IA64]: Lock the object alignment to 16 bytes, as the initial setjmp segfaults because of a bad alignment. jmp_buf needs to be on 16 byte boundaries for this arch. This is a quick work around until somebody comes up with a better fix - at least it gets gs to work on ia64 - I am not certain how much memory overhead this causes though. Kudos to John Daily for his investigative work. I am leaving the bug open for now, since it does not really fix the problem (#128314). -- Torsten Landschoff Tue, 8 Jan 2002 21:12:22 +0100 gs (6.51-6) unstable; urgency=low * ijs/*: Include the ijs driver from the hpijs source. * debian/devices: Add ijs to the device list. * src/contrib.mak: Include ijs/contrib.mak-6.51.add -- Torsten Landschoff Mon, 31 Dec 2001 15:00:45 +0100 gs (6.51-5) unstable; urgency=low * gimp-print/gdevstp.c: Update from gimp-print 4.1.99-rc1 (closes: #120009) -- Torsten Landschoff Fri, 16 Nov 2001 14:29:11 +0100 gs (6.51-4) unstable; urgency=low * src/gdevxini.c: Apply the patch supplied by Chanop Silpa-Anan (closes: #85811). Thanks for your support, Chanop! * debian/gen-makefile: Add /usr/share/ghostscript/common to the search path to get gs-pdfencrypt working again (closes: #119406). * Download the lex5000 driver and include it in the build system (closes: #58657). * debian/devices: Add lx5000, lex5000. -- Torsten Landschoff Wed, 14 Nov 2001 16:47:57 +0100 gs (6.51-3) unstable; urgency=low * debian/devices: Enabled the cfax driver as requested by a user. -- Torsten Landschoff Fri, 9 Nov 2001 17:48:23 +0100 gs (6.51-2) unstable; urgency=low * Enable the Brother HL 1250 driver (closes: #63027). -- Torsten Landschoff Wed, 17 Oct 2001 12:07:23 +0200 gs (6.51-1) unstable; urgency=low * New upstream release (closes: #101928). * The new upstream release fixes many problems with the interpreter. These bugs were fixed in Ghostscript 6.0: + the font rendering problem in X11 is fixed (closes: #28579) + ps2pdf does not write rectangles for polygons anymore (closes: #36200) + the PDF which crashed gs does not lead to any problems (closes: #45361) + a PDF which was inverted by pdf2ps stays black on white now (closes: #49659). + Philipp's file crashing gs does not do so anymore (closes: #58468) + the invalid LanguageGroup in fonts does not cause gs to abort anymore (closes: #67462). + another PDF file which caused a crash is working now (closes: #89995) * Rewrote the build system. * The libjpeg sources are now included in the diff which is not nice but working (closes: #87896). * lynx is not used anymore to convert the changelog to plain text (closes: #93722). * The hpijs driver is now included upstream (closes: #106294). * Driver support for the Apple Imagewriter is now included (closes: #110740). * Make the package use update-alternatives so that different gs packages can cooperate (closes: #98227). * Add in the gdi driver provided by Daniel Burrows (closes: #105885). * debian/devices: Add omni to the list + debian/gen-makefile: Add threading and dynamic linking support. * debian/control: Add libglib1.2-dev to the Build-Depends as it is needed for the Omni driver. * debian/devices: Go through the list of available drivers and add what we seem to be able to build. Among the new devices: - cdj970 (closes: #112434) - cljet5, cljet5pr, cljet5c - dl2100, hl7x0 - the generic hpijs device (supports hpijs 0.97, closes: #102369, #110657) - imagen, inferno, jetp3852 - lex2050, lex3200, lex5700 - oki4w - plan9bm - psrgb - x11cmyk2, x11cmyk4, x11cmyk8, x11gray4 * src/contrib.mak: Add missing generic hpijs device. * Enable stp driver and link with libgimpprint (closes: #82454, #87004, #103036) * debian/control: Build-Depend on libgimpprint-dev. * debian/gen-makefile: Add support for the DEB_BUILD_OPTIONS environment variable (more precisely, the debug option leads to a build with debugging support and exported private variables). * Add in the CJK support using the patch from Yasuhiro Take . A huge "THANK YOU" to him for his work!!! His changes: + Add debian/patches/gs-cjk-M2-R1+CJKPDF.diff & .info, and apply it to the source. + debian/control: Conflicts: Add gs-cjk-resource (<< 1.20010910-1) because the new gs-cjk patch requires new gs-cjk-resource that i've already prepared and doesn't work with older ones. + debian/control: Depends: Add gs-common (>= 0.2) because font configuration for the new gs-cjk patch is completely different from the old one. * debian/control: Removed the conflict with gs_x, gs_svga and gs_both. I don't even remember when those packages where in Debian, probably before Debian 1.3 so a direct upgrade is going to fail anyway. And with intermediate upgrades it will not be a problem. * src/imainarg.c: Reapply the papersize diff from debian/patches. -- Torsten Landschoff Tue, 16 Oct 2001 21:06:14 +0200 gs (5.50-8) unstable; urgency=low * debian/rules: Use html2text to convert the html changelog into plain text instead of lynx (closes: #93722). * debian/control: Update Build-Depends. * debian/prerm: Fix the case to handle both removal and upgrade instead of handling upgrading in two cases (closes: #98458). * debian/control: Merge multi-line Build-Depends into one line for now until our tools support multi line fields (closes: #98459). -- Torsten Landschoff Mon, 4 Jun 2001 01:22:36 +0200 gs (5.50-7) unstable; urgency=low * debian/postrm: Add missing #DEBHELPER# (arg!). * debian/prerm: Add defoma-app clean on upgrade. * debian/gs.templates: Remove the double negation of the previewer question (closes: #94146). * Merge german translation for debconf templates (closes: #93840). * debian/shlibs.local: Depend on svgalibg1 or svgalib-dummyg1 alternatively (closes: #93811). -- Torsten Landschoff Tue, 1 May 2001 22:24:55 +0200 gs (5.50-6) unstable; urgency=low * debian/README: + Move copyright info to debian/copyright. + Mention the align.ps file (closes: #67317). * gdevbbox.c: Use default color methods instead of NULL pointers so that gs -sDEVICE=bbox does not crash anymore (closes: #36883). -- Torsten Landschoff Sat, 7 Apr 2001 21:09:55 +0200 gs (5.50-5) unstable; urgency=low * debian/default_path.sh: + Include defoma dir in search path. + Search local directories before system directories. + Defoma is preferred if available... * debian/postinst: Fix the hopefully last bashism (s/source/g/). * Included support for Hewlett Packard's own printer driver called hpijs (closes: #92010). Note that you will need the hpijs package for using it. -- Torsten Landschoff Sat, 7 Apr 2001 02:40:15 +0200 gs (5.50-4) unstable; urgency=low * Install interesting Postscript files as examples (closes: #79461). * Finally include the missing if-hpdj filter (closes: #63705). * Also add the documentation of hp8xx (closes: #63566). -- Torsten Landschoff Thu, 5 Apr 2001 03:58:27 +0200 gs (5.50-3) unstable; urgency=low * debian/rules: + Don't remove debian/postinst anymore in clean target. + Read package and version info from changelog. + Convert to debhelper. * debian/postinst: Again rewritten from scratch (guess why!? *arg*) -- Torsten Landschoff Thu, 5 Apr 2001 02:34:17 +0200 gs (5.50-2) unstable; urgency=low * debian/postinst: Completely rewritten. + Fixes the bashism reported by Joey Hess (closes: #92056). + Does not mess with /usr/local anymore (closes: #57276). * unix-gcc.mak: Readd the x11 device (closes: #92586). * debian/config: Change the priority of the defoma questions to low. I don't see how the defaults can cause any problems. * debian/shlibs.local: Removed. Let's see if it works without. -- Torsten Landschoff Thu, 5 Apr 2001 01:36:09 +0200 gs (5.50-1) unstable; urgency=low * Finally upgrade to new upstream version, still based on the old package (the reimplementation is still under the hood ;) (closes: #65832, #87673). * unix-gcc.mak: Make x11alpha the default device on X11 as already done in gs-aladdin. Modern systems should be able to handle the anti aliasing fast enough. * debian/control: Update build dependencies for new X11. * debian/control: Removed Conflicts with local defoma packages made by Yasuhiro. * debian/patches/svgalib: Adjust for name change of the main Makefile and move the targets out of the ifeq so that one can run the file standalone. * debian/patches/hpdj: - Don't patch zmedia2.c since upstream changed it since 5.10. - Adjust for name change of the main makefile. - Use the right patch from the hpdj distribution for 5.50. * debian/patches/hp8xx: - Update the devs.mak diff for gs 5.50. - Adjust for name change of main makefile. * debian/rules: Disable kanji and jpdrivers support (needs update for 5.50). * debian/patches/lexmarkgs: - Update the devs.mak diff for 5.50. * debian/control: Add missing build-depends (closes: #82114, #88393). * debian/rules: Make debian/addentry executable before running it (closes: #90278). * time_.h: Include as well as sys/time.h (closes: #90433, #88391). -- Torsten Landschoff Thu, 29 Mar 2001 01:17:54 +0200 gs (5.10-11.5defoma2) unstable; urgency=low * Add kanji patches. -- Yasuhiro Take Tue, 27 Mar 2001 20:58:55 +0900 gs (5.10-11.5defoma1) unstable; urgency=low * Add Defoma support. * Remove kanji patches. -- Yasuhiro Take Tue, 20 Mar 2001 18:21:22 +0900 gs (5.10-11) unstable; urgency=low * debian/control: Added build time dependency for libfreetype2-dev (closes: #82114). * Included upp files for stc740 printer provided by Gregory P. Smith (closes: #76845). -- Torsten Landschoff Mon, 15 Jan 2001 00:53:32 +0100 gs (5.10-10.1) stable unstable; urgency=high * Non-maintainer upload by security team * Patch from Werner Fink: + Create temporary files securely using mkstemp instead of mktemp + Don't set LD_RUN_PATH to empty, that makes the runtime linker look in the current path as well -- Wichert Akkerman Wed, 22 Nov 2000 03:35:35 +0100 gs (5.10-10) unstable; urgency=low * contrib/kanji/man/ps2jpdf.1: Changed ".SH PS2JPDF" into ".SH NAME" (closes: #59925, #60002, #60474). * debian/rules: Added -isp to call of dpkg-gencontrol (lintian). -- Torsten Landschoff Wed, 15 Mar 2000 23:30:41 +0100 gs (5.10-9) frozen unstable; urgency=high * Applied patch from Colin Phipps to fix security problem in ps2epsi (closes: #57034) -- Torsten Landschoff Sun, 6 Feb 2000 02:24:33 +0100 gs (5.10-8) frozen unstable; urgency=low * Only a simple change to close a bugreport: The package contained a directory in /usr/local in violation with policy. Sorry for this, the directories are now created by the postinst (closes: #56396). -- Torsten Landschoff Fri, 28 Jan 2000 09:52:17 +0100 gs (5.10-7) frozen unstable; urgency=low * This can go into frozen since the changes are absolutely simple. * debian/control: Fixed build dependencies (closes: #55451). * debian/patches/hpdj: Added installation of margin files as requested in #39342 (for gs-aladdin). * gcc-head.mak: Added path for local fonts as requested in #31898 (/usr/local/lib/ghostscript/{common,5.10,fonts}) * debian/rules: Make the directories intended for local fonts. * gs.1: Added documentation for local postscript files. -- Torsten Landschoff Thu, 20 Jan 2000 12:47:48 +0100 gs (5.10-6) unstable; urgency=low * Added driver for Lexmark 7000. Thanks to Alex Winbow for pointing me to the patch. * debian/rules: Completely rewritten and a bit modularized. * hpdj driver updated to version 2.6. -- Torsten Landschoff Wed, 12 Jan 2000 20:24:44 +0100 gs (5.10-5) unstable; urgency=low * New maintainer. * debian/control: Added build dependencies. * Applied patch from Taketoshi Sano to remove copyrighted stuff from the package (closes: #52575). * This release is based on Wicherts NMU (thanks for the work Wichert!) closes: #53071 -- Torsten Landschoff Wed, 29 Dec 1999 22:22:02 +0100 gs (5.10-4.1) unstable; urgency=low * Non-maintainer upload * Apply patch to fix mac ttf rendering, Closes: Bug#52590 -- Wichert Akkerman Sun, 19 Dec 1999 17:05:38 +0100 gs (5.10-4) unstable; urgency=low * Small patch applied to file gs_init.ps, so that japanese fonts are required only for japanese people (many thaks to Fumitoshi Ukai) (closes: Bug#49725, #49732, #49867) -- Marco Pistore Fri, 12 Nov 1999 12:45:37 +0100 gs (5.10-3) unstable; urgency=low * Many thanks to Taketoshi Sano for his great job with the Japanese support (closes Bug#41570) -- Marco Pistore Sun, 7 Nov 1999 02:56:13 +0100 gs (5.10-2.0.vflib.2) experimental; urgency=low * Non Maintainer. * Add support for many drivers included in gs510j49 * FHS transition * Lintian free -- Taketoshi Sano Sun, 31 Oct 1999 09:21:06 +0900 gs (5.10-2.0.vflib.1) experimental; urgency=low * Non Maintainer. * Experimental revision for Japanese VFlib support enhancement. * Please check and modify this experimental revision to add Japanese support on the Debian package of "gs" -- Taketoshi Sano Sat, 30 Oct 1999 15:03:07 +0900 gs (5.10-2) unstable; urgency=low * Added support for hp8xx drivers by Uli Wortmann (closes Bug#40807). * Added support for epsf and ttfont features. * Changed "Aladdin Ghostscript" into "GNU Ghostscript" in file stcolor.ps e stcinfo.ps (closed Bug#35411, Bug#35525). -- Marco Pistore Sat, 10 Jul 1999 23:29:57 +0200 gs (5.10-1) unstable frozen; urgency=low * Ghostscript 5.10 is GPL! This package essentially corresponds to package gs-aladdin_5.10-12, but redistributed under GPL. Changes w.r.t. gs-aladdin_5.10-12 are: * Corrected "regulamentations" --> "regulations" in description of package. * Filenames in script pdf2ps are now enclosed in double quotes * Fixed the manpages for bdftops, printafm and wftopfa, so that they work with apropos. The various patches to ghostscript 5.10 that have been proposed by L.P.Deutsch and that appear in gs-aladdin_5.10-12 also appear in this package. -- Marco Pistore Sun, 3 Jan 1999 18:22:57 +0100 gs (4.03-6) unstable; urgency=low * Moved to version 2.5 of hpdj driver by Martin Lottermoser (debian/rules is changed accordingly). * Mentined package gsfonts in description of gs. -- Marco Pistore Mon, 7 Dec 1998 22:06:21 +0100 gs (4.03-5) frozen unstable; urgency=low * Fixed the manpages for bdftops, printafm and wftopfa, so that they work with apropos. * Removed *.1.gz files from /usr/doc/gs (they already are in the /usr/man/man1 directory). -- Marco Pistore Fri, 6 Nov 1998 10:52:31 +0100 gs (4.03-4) frozen unstable; urgency=low * Fixed files stcolor.ps and stcinfo.ps so that they recognize that they are called by GNU ghostscript; thanks to Gordon Matzigkeit (closes Bug#28726). -- Marco Pistore Thu, 5 Nov 1998 21:44:07 +0100 gs (4.03-3) unstable; urgency=low * Changed "Recommends: gs-pdfencrypt" to "Suggests: gs-pdfencrypt" in control file (closes Bug#27431) * Removed "Provides: gs_x, gs_svga, gs_both", since "_" cannot appear in package names, and no packages should depend on these quite old virtual packages. * Changed directory name for the libjpeg source from ../libjpeg-6a to ../libjpeg: so it does not depend on the particular version of libjpeg (changes in files gcc-head.mak, debian/rules and debian/jpeg). * Linked against libjpeg-6b. -- Marco Pistore Sat, 10 Oct 1998 00:01:15 +0200 gs (4.03-2) unstable; urgency=low * Now /usr/lib/ghostscript/common is searched for library files before /usr/lib/ghostscript/X.YY (where X.YY is the version of ghostscript). This is useful for installing packages like gs-pdfencrypt, that provide (modified) library files to ghostscript that are independent from the version of gs (also gs.1 is changed accordingly) * Now gs-pdfencrypt (in the nonUS distribution) is suggested by gs-aladdin. Changed the message in the file pdf_sec.ps so that it suggests to install that package if an encrypted pdf file is being processed. * Linked against libpng2 (closes Bug#26924) -- Marco Pistore Tue, 29 Sep 1998 21:01:10 +0200 gs (4.03-1) unstable; urgency=low * New upstream version (gs 4.03 is finally GPL!!!) * Pristine source * Set options in gcc-head.mak * Added man pages for all the binaries * All example files in /usr/doc/gs/examples start now with %! * Script font2c moved from /usr/bin to /usr/lib/ghostscript (there is really no reason to put this script in /usr/bin) * Patched devs.mak and gdevpng.c so to work with version 0.96 of libpng. * Patched gdevcdj.c so that device cdeskjet works (and is identical to cdj500) * Patched gdevl256.c imainarg.c so that superuser rights are given away as soon as possible, and re-obtained only to start svgalib (see /usr/doc/gs/README.Debian and /usr/doc/gs/setuid.Debian) * Patched imainarg.c to set default paper accordig to the system paper as reported by libpaper, also patched imaiarg.c so that the lvga256 device is chosen as the default one if gs is not called from X * Patched zlib.mak: here the shared file for zlib is called libz, not libgz -- Marco Pistore Thu, 4 Jun 1998 20:29:47 +0100 gs (3.33-7) unstable; urgency=low * Corrected address of FSF in copyright file * All the scripts start now with #! * Added man pages for all the binaries * bdftops, font2c and wftopfa moved from /usr/bin to /usr/lib/ghostscript (there is really no reason to put these scripts in /usr/bin) * gs.real moved to /usr/lib/ghostscript (it should not be called by the user) -- Marco Pistore Thu, 12 Mar 1998 20:29:38 +0100 gs (3.33-6) unstable; urgency=low * New maintainer * Libc6 (hamm) release * Minor fixes in debian/rules * Bug 10270 fixed: now manpages are compressed * Bug 9935 fixed: package works with svgalib-dummy * Redundant dependencies removed in debian/control (this also fixes Bug 9157) * Now device cdeskjet works (and is identical to cdj500) -- Marco Pistore Mon, 29 Sep 1997 20:41:47 +0200 gs (3.33-5) stable; urgency=low * Examples used to be in /usr/doc/$(examples)/examples, but $(examples) was empty (should have been $(package), must have been sleeping) -- joost witteveen Fri, 7 Feb 1997 15:15:37 +0100 gs (3.33-4) stable; urgency=low * debian/rules didn't install some files in ./debian/tmp, but in /!!! Why do I need root to build packages? * Minor fix in wrapper.c (no change in binary) -- joost witteveen Tue, 21 Jan 1997 19:15:53 +0100 gs (3.33-3) stable; urgency=low * apparently, gs-3.33 never got compiled with all devices (only a pitiful few ones). Fixed this. -- joost witteveen Fri, 8 Nov 1996 21:49:49 +0100 gs (3.33-2) unstable; urgency=low * Converted to new source format * Removed the "+1" bug in the wrapper that caused coredumps with libc5.4.7 * included x11alpha x11cmyk devices * removed dependancy on gsfonts * Improved argument parsing of wrapper * Stripped the executables * Fixed discription bug "This version is aladdin coright,..."! (Sorry!) -- joost witteveen Thu, 31 Oct 1996 20:56:01 +0100 debian/ghostscript.install0000644000000000000000000000004211763726276013144 0ustar usr/bin/ usr/sbin/ usr/share/man/