diff options
author | Michael Nottebrock <lofi@FreeBSD.org> | 2004-08-01 14:39:24 +0000 |
---|---|---|
committer | Michael Nottebrock <lofi@FreeBSD.org> | 2004-08-01 14:39:24 +0000 |
commit | b10036a482a7bc5b06a70faf24fb4709c94c6857 (patch) | |
tree | 5acf8ba74a42974457c4a6bc46943a4f48d0dcf7 /print/ghostscript-gnu | |
parent | 2d8fc7cd6be767278395a215010cefa5440c56f6 (diff) |
Notes
Diffstat (limited to 'print/ghostscript-gnu')
-rw-r--r-- | print/ghostscript-gnu/files/patch-src_gdevescv.c | 11 | ||||
-rw-r--r-- | print/ghostscript-gnu/files/patch-src_gdevesmv.c | 11 | ||||
-rw-r--r-- | print/ghostscript-gnu/files/patch-src_gdevhl12.c | 11 |
3 files changed, 33 insertions, 0 deletions
diff --git a/print/ghostscript-gnu/files/patch-src_gdevescv.c b/print/ghostscript-gnu/files/patch-src_gdevescv.c new file mode 100644 index 000000000000..0fcb53a995dd --- /dev/null +++ b/print/ghostscript-gnu/files/patch-src_gdevescv.c @@ -0,0 +1,11 @@ +--- eplaser/gdevescv.c.orig Sun Aug 1 13:47:00 2004 ++++ eplaser/gdevescv.c Sun Aug 1 14:02:23 2004 +@@ -1697,7 +1697,7 @@ + gs_logical_operation_t lop, const gx_clip_path * pcpath) + { + gx_device_vector const *vdev = (gx_device_vector *) dev; +- gx_device_escv const *pdev = (gx_device_escv *) dev; ++ gx_device_escv *pdev = (gx_device_escv *) dev; + stream *s = gdev_vector_stream(vdev); + + if (w <= 0 || h <= 0) return 0; diff --git a/print/ghostscript-gnu/files/patch-src_gdevesmv.c b/print/ghostscript-gnu/files/patch-src_gdevesmv.c new file mode 100644 index 000000000000..9d77b2d60512 --- /dev/null +++ b/print/ghostscript-gnu/files/patch-src_gdevesmv.c @@ -0,0 +1,11 @@ +--- eplaser/gdevesmv.c.orig Sun Aug 1 14:02:52 2004 ++++ eplaser/gdevesmv.c Sun Aug 1 14:03:39 2004 +@@ -1797,7 +1797,7 @@ + gs_logical_operation_t lop, const gx_clip_path * pcpath) + { + gx_device_vector const *vdev = (gx_device_vector *) dev; +- gx_device_esmv const *pdev = (gx_device_esmv *) dev; ++ gx_device_esmv *pdev = (gx_device_esmv *) dev; + stream *s = gdev_vector_stream(vdev); + gx_color_index color = gx_dc_pure_color(pdcolor); + char obuf[64]; diff --git a/print/ghostscript-gnu/files/patch-src_gdevhl12.c b/print/ghostscript-gnu/files/patch-src_gdevhl12.c new file mode 100644 index 000000000000..2976befa7cbe --- /dev/null +++ b/print/ghostscript-gnu/files/patch-src_gdevhl12.c @@ -0,0 +1,11 @@ +--- src/gdevhl12.c.orig Sun Aug 1 13:39:19 2004 ++++ src/gdevhl12.c Sun Aug 1 13:40:07 2004 +@@ -640,7 +640,7 @@ + case TRAY_MANUAL: + tray_pcl = "\033&l2H"; + break; +- default: ++ default: ; + } + if (pdev->PageCount == 0) { + /* initialize printer */ |