diff options
author | kristerw <kristerw@pkgsrc.org> | 2004-05-25 21:13:26 +0000 |
---|---|---|
committer | kristerw <kristerw@pkgsrc.org> | 2004-05-25 21:13:26 +0000 |
commit | 62fd4c4b585cacee7dbbf43c34f5326b17dacba0 (patch) | |
tree | c5d020b30b7d7aed7d0f04875f0dba2225bfcc4e /graphics | |
parent | 462981caf89075a3f6b0242160d90412072d03d9 (diff) | |
download | pkgsrc-62fd4c4b585cacee7dbbf43c34f5326b17dacba0.tar.gz |
Fix a case of bogus extra { and } in array initialization, that makes
gcc 3.3 complain loudly.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/aqsis/distinfo | 3 | ||||
-rw-r--r-- | graphics/aqsis/patches/patch-ag | 23 |
2 files changed, 25 insertions, 1 deletions
diff --git a/graphics/aqsis/distinfo b/graphics/aqsis/distinfo index b3422c9beaa..db2c0df0849 100644 --- a/graphics/aqsis/distinfo +++ b/graphics/aqsis/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.2 2003/03/15 12:24:22 dmcmahill Exp $ +$NetBSD: distinfo,v 1.3 2004/05/25 21:13:26 kristerw Exp $ SHA1 (aqsis-0.6.4.tar.gz) = 7a8e10db5502907840d8d2f4269eb3b489875dd4 Size (aqsis-0.6.4.tar.gz) = 857020 bytes @@ -8,3 +8,4 @@ SHA1 (patch-ac) = 5633148c8f7617ddef0e8831bd003dc9cb3f3596 SHA1 (patch-ad) = d5dc010175fc749268075e391fcb9fd5ff0ae6b9 SHA1 (patch-ae) = d2ce4d8833a0ea27aaa6242c476fe542efe92574 SHA1 (patch-af) = 5251aedf37fd4ab8e954d90e484d82bdcf0a8e45 +SHA1 (patch-ag) = 673c7fb0a9619d5a8f8a0ad0906c5f29fb639358 diff --git a/graphics/aqsis/patches/patch-ag b/graphics/aqsis/patches/patch-ag new file mode 100644 index 00000000000..88aecdcee54 --- /dev/null +++ b/graphics/aqsis/patches/patch-ag @@ -0,0 +1,23 @@ +$NetBSD: patch-ag,v 1.1 2004/05/25 21:13:26 kristerw Exp $ + +--- render/ri.cpp.orig 2004-05-25 22:51:42.000000000 +0200 ++++ render/ri.cpp 2004-05-25 22:52:32.000000000 +0200 +@@ -3854,12 +3854,12 @@ + // Now copy the images to the big map. + CqTextureMap* Images[ 6 ] = + { +- {&tpz}, +- {&tpx}, +- {&tpy}, +- {&tnx}, +- {&tny}, +- {&tnz} ++ &tpz, ++ &tpx, ++ &tpy, ++ &tnx, ++ &tny, ++ &tnz + }; + + // Create a new image. |