pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/graphics/aqsis Fix a case of bogus extra { and } in ar...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/6b1ca9e1319c
branches:  trunk
changeset: 475769:6b1ca9e1319c
user:      kristerw <kristerw%pkgsrc.org@localhost>
date:      Tue May 25 21:13:26 2004 +0000

description:
Fix a case of bogus extra { and } in array initialization, that makes
gcc 3.3 complain loudly.

diffstat:

 graphics/aqsis/distinfo         |   3 ++-
 graphics/aqsis/patches/patch-ag |  23 +++++++++++++++++++++++
 2 files changed, 25 insertions(+), 1 deletions(-)

diffs (41 lines):

diff -r 64f156c82dbf -r 6b1ca9e1319c graphics/aqsis/distinfo
--- a/graphics/aqsis/distinfo   Tue May 25 19:05:12 2004 +0000
+++ b/graphics/aqsis/distinfo   Tue May 25 21:13:26 2004 +0000
@@ -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-ad) = d5dc010175fc749268075e391fcb9fd5ff0ae6b9
 SHA1 (patch-ae) = d2ce4d8833a0ea27aaa6242c476fe542efe92574
 SHA1 (patch-af) = 5251aedf37fd4ab8e954d90e484d82bdcf0a8e45
+SHA1 (patch-ag) = 673c7fb0a9619d5a8f8a0ad0906c5f29fb639358
diff -r 64f156c82dbf -r 6b1ca9e1319c graphics/aqsis/patches/patch-ag
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/graphics/aqsis/patches/patch-ag   Tue May 25 21:13:26 2004 +0000
@@ -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.



Home | Main Index | Thread Index | Old Index