diff options
author | sketch <sketch> | 2009-06-26 20:30:15 +0000 |
---|---|---|
committer | sketch <sketch> | 2009-06-26 20:30:15 +0000 |
commit | be0cf1fb8ede9e4e49a5ae8ee8bbe900a1b7e700 (patch) | |
tree | 242bf95c1db14600b5db5bf3bfaf0f5641a28095 /x11/pixman | |
parent | 60d74276466074684c15e50ea73d56eb7b2cd599 (diff) | |
download | pkgsrc-be0cf1fb8ede9e4e49a5ae8ee8bbe900a1b7e700.tar.gz |
You can't return from a void function. Fixes Solaris build and gives 999
dependant packages a chance to build.
Diffstat (limited to 'x11/pixman')
-rw-r--r-- | x11/pixman/distinfo | 3 | ||||
-rw-r--r-- | x11/pixman/patches/patch-af | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/x11/pixman/distinfo b/x11/pixman/distinfo index d255fe6e7e1..93939bf04e0 100644 --- a/x11/pixman/distinfo +++ b/x11/pixman/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.26 2009/06/08 09:04:32 wiz Exp $ +$NetBSD: distinfo,v 1.27 2009/06/26 20:30:15 sketch Exp $ SHA1 (pixman-0.15.10.tar.bz2) = c28039d2112cfc20f05532149716df91ea30ac49 RMD160 (pixman-0.15.10.tar.bz2) = 11c69c49f80976b2b4840eecbb092700337b498c @@ -8,3 +8,4 @@ SHA1 (patch-ab) = 422f2c0f3450da01c11a4005473945291421d41f SHA1 (patch-ac) = c798e52ecd8fc2a5788552df0a0842f524705126 SHA1 (patch-ad) = b2fa221652bc5f8bec000e071417b0180816a451 SHA1 (patch-ae) = a15fc3bdce0cf3efe19e1bd43c18e97fba8831f4 +SHA1 (patch-af) = 9509210ebe99d1a825a4c8d242a2cdf483737f3e diff --git a/x11/pixman/patches/patch-af b/x11/pixman/patches/patch-af new file mode 100644 index 00000000000..a5190280211 --- /dev/null +++ b/x11/pixman/patches/patch-af @@ -0,0 +1,13 @@ +$NetBSD: patch-af,v 1.6 2009/06/26 20:30:16 sketch Exp $ + +--- pixman/pixman-bits-image.c.orig Fri Jun 26 21:16:52 2009 ++++ pixman/pixman-bits-image.c Fri Jun 26 21:17:57 2009 +@@ -272,7 +272,7 @@ + coords[i + 1] = y; + } + +- return bits_image_fetch_pixels_src_clip (image, buffer, n_pixels); ++ bits_image_fetch_pixels_src_clip (image, buffer, n_pixels); + } + + #define N_TMP_PIXELS (256) |