diff options
author | rillig <rillig@pkgsrc.org> | 2006-08-03 19:33:55 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-08-03 19:33:55 +0000 |
commit | aec9f02b0c4df532f952133b362bdfc3603f7068 (patch) | |
tree | b4d2078439b7f8cc336a98b31e9e1e5dbc8d87f2 /graphics | |
parent | 508628fdf24b0648fa6eef6d0bd8e8da7f188adf (diff) | |
download | pkgsrc-aec9f02b0c4df532f952133b362bdfc3603f7068.tar.gz |
Just fixing pkglint warnings doesn't help. Sometimes they are just
pointers that something else is wrong. In this case, the file contained
_three_ instances of __sun__, but only two were in the patch, so pkglint
could not warn on the third one.
Now pango really builds on Solaris with SunPro (tested).
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/glitz/distinfo | 4 | ||||
-rw-r--r-- | graphics/glitz/patches/patch-ab | 15 |
2 files changed, 14 insertions, 5 deletions
diff --git a/graphics/glitz/distinfo b/graphics/glitz/distinfo index 5af3faa708b..3d37577e82b 100644 --- a/graphics/glitz/distinfo +++ b/graphics/glitz/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.14 2006/08/03 18:22:17 rillig Exp $ +$NetBSD: distinfo,v 1.15 2006/08/03 19:33:55 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) = 09713cb2b827adaa4795d49cf38edac34e8482a1 +SHA1 (patch-ab) = 5f2462b4414d8afedd0206444bb127ccd9924f31 diff --git a/graphics/glitz/patches/patch-ab b/graphics/glitz/patches/patch-ab index 7d8ee0d53d0..f0e03659417 100644 --- a/graphics/glitz/patches/patch-ab +++ b/graphics/glitz/patches/patch-ab @@ -1,7 +1,16 @@ -$NetBSD: patch-ab,v 1.4 2006/08/03 18:22:17 rillig Exp $ +$NetBSD: patch-ab,v 1.5 2006/08/03 19:33:55 rillig Exp $ ---- src/glitzint.h.orig 2006-07-07 11:24:14.200890000 +1200 -+++ src/glitzint.h +--- src/glitzint.h.orig 2006-03-13 14:43:57.000000000 +0100 ++++ src/glitzint.h 2006-08-03 20:59:16.783689410 +0200 +@@ -56,7 +56,7 @@ + # endif + #endif + +-#if defined(__APPLE__) || defined(__sun__) ++#if defined(__APPLE__) || defined(__sun) + # define floorf(a) floor (a) + # define ceilf(a) ceil (a) + # define sinf(a) sin (a) @@ -69,7 +69,7 @@ # define sqrtf(a) sqrt (a) #endif |