From 4b8c103d72d84e9a02aae4ea0b166a8d97913bf0 Mon Sep 17 00:00:00 2001 From: Hiroki Sato Date: Sun, 3 Jun 2007 16:39:47 +0000 Subject: Fix build when lvga256 or vgalib is enabled. Spotted by: itetcu --- print/ghostscript8/files/patch-src-gdevvglb.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 print/ghostscript8/files/patch-src-gdevvglb.c (limited to 'print/ghostscript8/files/patch-src-gdevvglb.c') diff --git a/print/ghostscript8/files/patch-src-gdevvglb.c b/print/ghostscript8/files/patch-src-gdevvglb.c new file mode 100644 index 000000000000..81abb24feb8a --- /dev/null +++ b/print/ghostscript8/files/patch-src-gdevvglb.c @@ -0,0 +1,19 @@ +--- src/gdevvglb.c.orig Mon Jun 4 01:15:47 2007 ++++ src/gdevvglb.c Mon Jun 4 01:18:45 2007 +@@ -149,10 +149,13 @@ + } + + private gx_color_index +-vgalib_map_rgb_color(gx_device * dev, gx_color_value red, +- gx_color_value green, gx_color_value blue) ++vgalib_map_rgb_color(gx_device * dev, const gx_color_value cv[]) + { +- return pc_4bit_map_rgb_color(dev, red, green, blue); ++ gx_color_value r = cv[0]; ++ gx_color_value g = cv[1]; ++ gx_color_value b = cv[2]; ++ ++ return pc_4bit_map_rgb_color(dev, cv); + } + + private int -- cgit v1.2.3