summaryrefslogtreecommitdiff
path: root/graphics/cairo/patches
diff options
context:
space:
mode:
authorwiz <wiz>2015-03-15 21:09:24 +0000
committerwiz <wiz>2015-03-15 21:09:24 +0000
commit7df68d52cc332ec000e24615f1a2a38ce4619a5c (patch)
tree9863a111680b52a0988e501154e1b005ace9fbe5 /graphics/cairo/patches
parent819fff1560c8bc381bd4b58c32ffa72887eec14c (diff)
downloadpkgsrc-7df68d52cc332ec000e24615f1a2a38ce4619a5c.tar.gz
Remove outdated patch after 1.14.2 update.
Diffstat (limited to 'graphics/cairo/patches')
-rw-r--r--graphics/cairo/patches/patch-src_cairo-tor-scan-converter_c20
1 files changed, 0 insertions, 20 deletions
diff --git a/graphics/cairo/patches/patch-src_cairo-tor-scan-converter_c b/graphics/cairo/patches/patch-src_cairo-tor-scan-converter_c
deleted file mode 100644
index 297d9113dd9..00000000000
--- a/graphics/cairo/patches/patch-src_cairo-tor-scan-converter_c
+++ /dev/null
@@ -1,20 +0,0 @@
-$NetBSD: patch-src_cairo-tor-scan-converter_c,v 1.1 2014/11/15 00:38:08 mef Exp $
-
-dot command segfaults easily to output *.png.
-See http://mail-index.netbsd.org/pkgsrc-users/2014/10/28/msg020603.html
-And this patch is at:
-https://www.mail-archive.com/debian-bugs-dist@lists.debian.org/msg1272017.html
-
---- src/cairo-tor-scan-converter.c~ 2014-10-14 10:46:33.000000000 +0900
-+++ src/cairo-tor-scan-converter.c 2014-11-03 21:10:36.000000000 +0900
-@@ -1167,8 +1167,8 @@ can_do_full_row (struct active_list *act
-
- if (e->dy) {
- struct quorem x = e->x;
-- x.quo += e->dxdy_full.quo - e->dxdy.quo/2;
-- x.rem += e->dxdy_full.rem - e->dxdy.rem/2;
-+ x.quo += e->dxdy_full.quo;
-+ x.rem += e->dxdy_full.rem;
- if (x.rem < 0) {
- x.quo--;
- x.rem += e->dy;