diff options
author | drochner <drochner@pkgsrc.org> | 2011-11-27 14:20:42 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2011-11-27 14:20:42 +0000 |
commit | 6593d7596ee0e27a63bde94b23dbb92d32556cbe (patch) | |
tree | 43063817ef06df981554bfbc2888a2c32b808ced /graphics | |
parent | 566f8a045f16dcc775029b5dcbe4f47ad2d7ffae (diff) | |
download | pkgsrc-6593d7596ee0e27a63bde94b23dbb92d32556cbe.tar.gz |
modify an autoconf test so that the compiler can't calculate the
result at compile time (as it does with newer gcc), fixes build
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/geomview/distinfo | 4 | ||||
-rw-r--r-- | graphics/geomview/patches/patch-aa | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/graphics/geomview/distinfo b/graphics/geomview/distinfo index 6d29083d6c9..393c4765b76 100644 --- a/graphics/geomview/distinfo +++ b/graphics/geomview/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.6 2007/06/21 12:38:27 markd Exp $ +$NetBSD: distinfo,v 1.7 2011/11/27 14:20:42 drochner Exp $ SHA1 (geomview-1.8.1.tar.gz) = 026a22ecba471f7d55c407de4fc409213d166477 RMD160 (geomview-1.8.1.tar.gz) = 4c42b928376517115e1bba16c978b80ff41b7b45 Size (geomview-1.8.1.tar.gz) = 2766832 bytes -SHA1 (patch-aa) = ff0451f0bb80ac49cb157788b49a71c1f5b46ef9 +SHA1 (patch-aa) = 90d09d7a2cc6a86ccfd600d98f3a99dc3df20265 SHA1 (patch-ab) = 706b10ccfb3ba02baa48b461123707cdd9cbfdff SHA1 (patch-ac) = 55d2297e8a31203fc5f21b2800f4a2948ee07f9c SHA1 (patch-ad) = 9db6fb9ffae5939f80bfcae8aa5da389437d627c diff --git a/graphics/geomview/patches/patch-aa b/graphics/geomview/patches/patch-aa index 3a37280fd4e..ecd7f0a1888 100644 --- a/graphics/geomview/patches/patch-aa +++ b/graphics/geomview/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.4 2007/06/21 12:38:27 markd Exp $ +$NetBSD: patch-aa,v 1.5 2011/11/27 14:20:42 drochner Exp $ --- configure.orig 2001-03-26 17:23:02.000000000 +1200 +++ configure @@ -9,7 +9,7 @@ $NetBSD: patch-aa,v 1.4 2007/06/21 12:38:27 markd Exp $ +double s; int main() { - double s = sin(1.5); -+ s = sin(1.5); ++ s = sin(s); ; return 0; } EOF if { (eval echo configure:3443: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then |