diff options
author | dholland <dholland> | 2012-06-24 01:49:14 +0000 |
---|---|---|
committer | dholland <dholland> | 2012-06-24 01:49:14 +0000 |
commit | 176472cbb35e39aa80bc3e4433da97ed25f7eb8e (patch) | |
tree | 9c2356c123c42a0ea092aad2bd98f7612bccf076 /graphics | |
parent | d04ce5ee06d5acff565bd7711e2644c20ed76fad (diff) | |
download | pkgsrc-176472cbb35e39aa80bc3e4433da97ed25f7eb8e.tar.gz |
Add missing <cstddef> to get size_t defined; should fix Solaris build.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/extrema/distinfo | 3 | ||||
-rw-r--r-- | graphics/extrema/patches/patch-src_Graphics_GRA__thiessenTriangulation_h | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/graphics/extrema/distinfo b/graphics/extrema/distinfo index 6ab0b1f54d4..a8be4ee9cc3 100644 --- a/graphics/extrema/distinfo +++ b/graphics/extrema/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.3 2010/06/16 20:45:42 drochner Exp $ +$NetBSD: distinfo,v 1.4 2012/06/24 01:49:14 dholland Exp $ SHA1 (extrema-4.4.4.tar.gz) = eff38eb3c36aa9acc3ad471ea57f2037c66e1842 RMD160 (extrema-4.4.4.tar.gz) = 4ce6dcacca51ac18deb770cd9c0f7f77d0458ccd Size (extrema-4.4.4.tar.gz) = 6404330 bytes +SHA1 (patch-src_Graphics_GRA__thiessenTriangulation_h) = ede808bc2f19f3aafb31310eb04aa5317ad9b471 diff --git a/graphics/extrema/patches/patch-src_Graphics_GRA__thiessenTriangulation_h b/graphics/extrema/patches/patch-src_Graphics_GRA__thiessenTriangulation_h new file mode 100644 index 00000000000..20faafe9678 --- /dev/null +++ b/graphics/extrema/patches/patch-src_Graphics_GRA__thiessenTriangulation_h @@ -0,0 +1,15 @@ +$NetBSD: patch-src_Graphics_GRA__thiessenTriangulation_h,v 1.1 2012/06/24 01:49:14 dholland Exp $ + +- this file uses size_t without including a definition of it, leading +to build failure on Solaris. + +--- src/Graphics/GRA_thiessenTriangulation.h~ 2009-11-05 21:03:01.000000000 +0000 ++++ src/Graphics/GRA_thiessenTriangulation.h +@@ -18,6 +18,7 @@ Foundation, Inc., 51 Franklin Street, Fi + #ifndef GRA_THIESSENTRIANGULATION + #define GRA_THIESSENTRIANGULATION + ++#include <cstddef> + #include <vector> + + class GRA_thiessenTriangulation |