diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2007-03-29 12:00:44 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2007-03-29 12:00:44 +0000 |
commit | 60cd0a733738e7d368c210db5afbab594acceac0 (patch) | |
tree | d21ef38a9b85f34f994356fa56108b0c8d183054 /graphics/cairo | |
parent | 1190651e85c243b35a55f658a66bdaa0e43d0a92 (diff) | |
download | pkgsrc-60cd0a733738e7d368c210db5afbab594acceac0.tar.gz |
Repair a broken build on solaris and possibly others.
Diffstat (limited to 'graphics/cairo')
-rw-r--r-- | graphics/cairo/Makefile | 3 | ||||
-rw-r--r-- | graphics/cairo/distinfo | 3 | ||||
-rw-r--r-- | graphics/cairo/patches/patch-ac | 29 |
3 files changed, 33 insertions, 2 deletions
diff --git a/graphics/cairo/Makefile b/graphics/cairo/Makefile index 4084d56f8a3..0ec4a4c1144 100644 --- a/graphics/cairo/Makefile +++ b/graphics/cairo/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.53 2007/03/20 15:29:18 drochner Exp $ +# $NetBSD: Makefile,v 1.54 2007/03/29 12:00:44 dmcmahill Exp $ DISTNAME= cairo-1.4.2 +PKGREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://cairographics.org/releases/ diff --git a/graphics/cairo/distinfo b/graphics/cairo/distinfo index 730d6cd7fa7..b5d1b7bf073 100644 --- a/graphics/cairo/distinfo +++ b/graphics/cairo/distinfo @@ -1,8 +1,9 @@ -$NetBSD: distinfo,v 1.31 2007/03/20 15:29:18 drochner Exp $ +$NetBSD: distinfo,v 1.32 2007/03/29 12:00:44 dmcmahill Exp $ SHA1 (cairo-1.4.2.tar.gz) = 9e7a323fc7d81d5011044d7eb22db3bf26ff7314 RMD160 (cairo-1.4.2.tar.gz) = 53ad2e60507e181cb754991c1fe8f8de47f366a3 Size (cairo-1.4.2.tar.gz) = 3081092 bytes SHA1 (patch-aa) = a5bcc788ba51b1943b6f37678437491a46a7b45c SHA1 (patch-ab) = 02ab6fef56431729db98691e9ed9c879c625f016 +SHA1 (patch-ac) = 3bbe230d3631989a9b858f6fbb1427655b4f0859 SHA1 (patch-ae) = 55c4c5992059e96c96ac022028fe9fed811909fa diff --git a/graphics/cairo/patches/patch-ac b/graphics/cairo/patches/patch-ac new file mode 100644 index 00000000000..82161370b2b --- /dev/null +++ b/graphics/cairo/patches/patch-ac @@ -0,0 +1,29 @@ +$NetBSD: patch-ac,v 1.5 2007/03/29 12:00:44 dmcmahill Exp $ + +See https://bugs.freedesktop.org/show_bug.cgi?id=10441 +Instead of the patch there which relies on things like __hpux__ +we use the configure test results. + +--- test/pdiff/pdiff.c.orig 2007-03-19 15:08:04.000000000 -0500 ++++ test/pdiff/pdiff.c +@@ -20,7 +20,19 @@ + #include <math.h> + #include <stdio.h> + #include <stdlib.h> +-#include <stdint.h> ++ ++#ifdef HAVE_STDINT_H ++# include <stdint.h> ++#else ++# ifdef HAVE_INTTYPES_H ++# include <inttypes.h> ++# else ++# ifdef HAVE_SYS_INT_TYPES_H ++# include <sys/int_types.h> ++# endif ++# endif ++#endif ++ + #include "pdiff.h" + + #ifndef M_PI |