summaryrefslogtreecommitdiff
path: root/print/ghostscript/patches
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2007-07-17 18:53:54 +0000
committerdrochner <drochner@pkgsrc.org>2007-07-17 18:53:54 +0000
commit33fb4292af0e37d868367ffb097635619f99419f (patch)
tree42dabfeaf01d0254f6ed730257c45d8e4f354e56 /print/ghostscript/patches
parentf5e24874706df03df52695c2a0d945e35261a449 (diff)
downloadpkgsrc-33fb4292af0e37d868367ffb097635619f99419f.tar.gz
update to 8.57
In addition to the usual bug fixes, there are specific performance and quality improvements in the areas of patterns, shading and image filtering. Also new in this release is an implementation of the Well Tempered Screening algorithm in an output device, using Graeme Gill's IMDI library for efficient color mapping. pkgsrc change: use the bundled jasper as the pkgsrc one is incompatible
Diffstat (limited to 'print/ghostscript/patches')
-rw-r--r--print/ghostscript/patches/patch-ac17
1 files changed, 0 insertions, 17 deletions
diff --git a/print/ghostscript/patches/patch-ac b/print/ghostscript/patches/patch-ac
deleted file mode 100644
index 68a8122a638..00000000000
--- a/print/ghostscript/patches/patch-ac
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-ac,v 1.3 2007/06/29 19:24:46 dmcmahill Exp $
-
-Don't segfault on 64-bit systems.
-
-Patch found in Debian bug 390875 and tested on netbsd-2/alpha.
-
---- src/gxfcopy.c.orig 2006-03-23 12:39:23.000000000 +0000
-+++ src/gxfcopy.c
-@@ -2391,7 +2391,7 @@ order_font_data(gs_copied_font_data_t *c
- a[j++] = &cfdata->names[i];
- }
- }
-- qsort(a, cfdata->num_glyphs, sizeof(int), compare_glyph_names);
-+ qsort(a, cfdata->num_glyphs, sizeof(gs_copied_glyph_name_t *), compare_glyph_names);
- for (; j >= 0; j--)
- cfdata->glyphs[j].order_index = a[j] - cfdata->names;
- gs_free_object(memory, a, "order_font_data");