diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2007-03-27 19:59:21 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2007-03-27 19:59:21 +0000 |
commit | 20352fa29823ad73e4f06d086dc9598d1a274ab8 (patch) | |
tree | 8dca0c9c79381ab1af57f988e6007e2e7b2e40fa /print/ghostscript8/files/patch-src:gdevifno.c | |
parent | Clean up CXXFLAGS. Fix compilation with gcc-4.1.x. (diff) |
- Update to 8.56
- Switch to GTK 2.x
- SWitch to ship-in jasper which contains some fixes for gs
PR: ports/110818
Submitted by: KATO Tsuguru <tkato432 at yahoo.com>
Notes
Notes:
svn path=/head/; revision=188581
Diffstat (limited to 'print/ghostscript8/files/patch-src:gdevifno.c')
-rw-r--r-- | print/ghostscript8/files/patch-src:gdevifno.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/print/ghostscript8/files/patch-src:gdevifno.c b/print/ghostscript8/files/patch-src:gdevifno.c deleted file mode 100644 index b3bc447dd27a..000000000000 --- a/print/ghostscript8/files/patch-src:gdevifno.c +++ /dev/null @@ -1,15 +0,0 @@ ---- src/gdevifno.c.orig Sun Jun 16 14:48:55 2002 -+++ src/gdevifno.c Sun Nov 10 22:49:32 2002 -@@ -99,8 +99,10 @@ - * rgb and color map entries - */ - private gx_color_index --inferno_rgb2cmap(gx_device *dev, gx_color_value red, -- gx_color_value green, gx_color_value blue) { -+inferno_rgb2cmap(gx_device *dev, const gx_color_value cv[]) { -+ gx_color_value red = cv[0]; -+ gx_color_value green = cv[1]; -+ gx_color_value blue = cv[2]; - int shift; - inferno_device *bdev = (inferno_device*) dev; - int nbits = bdev->nbits; |