summaryrefslogtreecommitdiff
path: root/print/ghostscript7-x11/files/patch-src_gdevxalt.c
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2016-06-17 23:28:04 +0000
committerMathieu Arnold <mat@FreeBSD.org>2016-06-17 23:28:04 +0000
commit1a8a092d9fefcbd7f960c82c59802c61807867a6 (patch)
tree48e47bf661e0e5d6ed9c060e8aea683b30d4540f /print/ghostscript7-x11/files/patch-src_gdevxalt.c
parent- Update to 1.7.1 (diff)
Rename all files containing a : in their filename.
While there, run make makepatch on affected ports, and rename patches accordingly. Sponsored by: Absolight
Notes
Notes: svn path=/head/; revision=417041
Diffstat (limited to 'print/ghostscript7-x11/files/patch-src_gdevxalt.c')
-rw-r--r--print/ghostscript7-x11/files/patch-src_gdevxalt.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/print/ghostscript7-x11/files/patch-src_gdevxalt.c b/print/ghostscript7-x11/files/patch-src_gdevxalt.c
new file mode 100644
index 000000000000..023fad7e2e89
--- /dev/null
+++ b/print/ghostscript7-x11/files/patch-src_gdevxalt.c
@@ -0,0 +1,31 @@
+--- src/gdevxalt.c.orig 2003-01-17 00:49:02 UTC
++++ src/gdevxalt.c
+@@ -30,6 +30,7 @@
+ #include "gdevx.h"
+
+ extern const gx_device_X gs_x11_device;
++extern const gx_device_X gs_x11alpha_device;
+
+ /*
+ * Define a forwarding device with a cache for the first 16 colors,
+@@ -957,3 +958,20 @@ x_rg32x_alt_map_color(gx_device * dev, g
+ rgb[2] = ((color >> 11) & 0x3ff) * gx_max_color_value / 0x3ff;
+ return -1;
+ }
++
++#ifdef GS_DEVS_SHARED
++extern void gs_lib_register_device(const gx_device *dev);
++void
++gs_shared_init(void)
++{
++ gs_lib_register_device(&gs_x11_device);
++ gs_lib_register_device(&gs_x11alpha_device);
++ gs_lib_register_device(&gs_x11cmyk_device);
++ gs_lib_register_device(&gs_x11cmyk2_device);
++ gs_lib_register_device(&gs_x11cmyk4_device);
++ gs_lib_register_device(&gs_x11cmyk8_device);
++ gs_lib_register_device(&gs_x11gray2_device);
++ gs_lib_register_device(&gs_x11gray4_device);
++ gs_lib_register_device(&gs_x11mono_device);
++}
++#endif