diff options
author | rillig <rillig@pkgsrc.org> | 2006-08-03 18:22:16 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-08-03 18:22:16 +0000 |
commit | 34c63c56b7e173149174e955ab01763df30a296c (patch) | |
tree | f0b7a2d4904a070684216330f02beb3b1734fd02 /graphics/glitz | |
parent | 5317e897d865aa5fd7eb0c6b2799b6f6c8b446c8 (diff) | |
download | pkgsrc-34c63c56b7e173149174e955ab01763df30a296c.tar.gz |
Fixed a build failure of devel/pango by replacing __sun__ with __sun in
patch-ab, as told by pkglint. Maybe that warning is really useful. :)
Bumped PKGREVISION.
Diffstat (limited to 'graphics/glitz')
-rw-r--r-- | graphics/glitz/Makefile | 4 | ||||
-rw-r--r-- | graphics/glitz/distinfo | 4 | ||||
-rw-r--r-- | graphics/glitz/patches/patch-ab | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/graphics/glitz/Makefile b/graphics/glitz/Makefile index d6518aa1bd5..f75fc262a87 100644 --- a/graphics/glitz/Makefile +++ b/graphics/glitz/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.20 2006/07/25 19:19:27 minskim Exp $ +# $NetBSD: Makefile,v 1.21 2006/08/03 18:22:17 rillig Exp $ DISTNAME= glitz-0.5.6 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= graphics MASTER_SITES= http://cairographics.org/snapshots/ diff --git a/graphics/glitz/distinfo b/graphics/glitz/distinfo index 0ab6ad11c8a..5af3faa708b 100644 --- a/graphics/glitz/distinfo +++ b/graphics/glitz/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.13 2006/07/06 23:43:27 markd Exp $ +$NetBSD: distinfo,v 1.14 2006/08/03 18:22:17 rillig Exp $ SHA1 (glitz-0.5.6.tar.gz) = 81604bf02ceda85ea32b52423f78a883aaec6dc6 RMD160 (glitz-0.5.6.tar.gz) = 547ef1be273856942e0fa36c097c4acb367336b2 Size (glitz-0.5.6.tar.gz) = 459224 bytes SHA1 (patch-aa) = d725f03f96082b6d9b31c608a0e4c1beb71e87f1 -SHA1 (patch-ab) = b51728a187a7628df36f3ae241083398a7d04da0 +SHA1 (patch-ab) = 09713cb2b827adaa4795d49cf38edac34e8482a1 diff --git a/graphics/glitz/patches/patch-ab b/graphics/glitz/patches/patch-ab index 0692b7969ee..7d8ee0d53d0 100644 --- a/graphics/glitz/patches/patch-ab +++ b/graphics/glitz/patches/patch-ab @@ -1,4 +1,4 @@ -$NetBSD: patch-ab,v 1.3 2006/07/06 23:43:27 markd Exp $ +$NetBSD: patch-ab,v 1.4 2006/08/03 18:22:17 rillig Exp $ --- src/glitzint.h.orig 2006-07-07 11:24:14.200890000 +1200 +++ src/glitzint.h @@ -7,7 +7,7 @@ $NetBSD: patch-ab,v 1.3 2006/07/06 23:43:27 markd Exp $ #endif -#if __GNUC__ >= 3 && defined(__ELF__) -+#if __GNUC__ >= 3 && defined(__ELF__) && !defined(__sun__) ++#if __GNUC__ >= 3 && defined(__ELF__) && !defined(__sun) # define slim_hidden_proto(name) slim_hidden_proto1(name, INT_##name) # define slim_hidden_def(name) slim_hidden_def1(name, INT_##name) # define slim_hidden_proto1(name, internal) \ @@ -16,7 +16,7 @@ $NetBSD: patch-ab,v 1.3 2006/07/06 23:43:27 markd Exp $ #endif -#if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3)) && defined(__ELF__) -+#if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3)) && defined(__ELF__) && !defined(__sun__) ++#if (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 3)) && defined(__ELF__) && !defined(__sun) #define __internal_linkage __attribute__((__visibility__("hidden"))) #else #define __internal_linkage |