pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/audio/kmp Fix GCC 3.4 by adding explicit this reference.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/4df6fe02b586
branches:  trunk
changeset: 505597:4df6fe02b586
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Thu Jan 05 14:24:38 2006 +0000

description:
Fix GCC 3.4 by adding explicit this reference.

diffstat:

 audio/kmp/distinfo         |   3 ++-
 audio/kmp/patches/patch-ab |  13 +++++++++++++
 2 files changed, 15 insertions(+), 1 deletions(-)

diffs (29 lines):

diff -r bbd98e9dc513 -r 4df6fe02b586 audio/kmp/distinfo
--- a/audio/kmp/distinfo        Thu Jan 05 12:00:39 2006 +0000
+++ b/audio/kmp/distinfo        Thu Jan 05 14:24:38 2006 +0000
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.2 2005/02/23 20:39:47 agc Exp $
+$NetBSD: distinfo,v 1.3 2006/01/05 14:24:38 joerg Exp $
 
 SHA1 (kmp-0.01.tar.bz2) = 7da2b6b71b9c41ca7429479c683cbbfc62d980c1
 RMD160 (kmp-0.01.tar.bz2) = ba880f7483dcb0f4772a7f41cd79ef1309fd5e58
 Size (kmp-0.01.tar.bz2) = 486474 bytes
 SHA1 (patch-aa) = 8ca65b5df3b68b18773ca0b9c34b3e5cde21bdd6
+SHA1 (patch-ab) = 31f7fab9191384b2f16eb87f854fed63f3244f72
diff -r bbd98e9dc513 -r 4df6fe02b586 audio/kmp/patches/patch-ab
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/kmp/patches/patch-ab        Thu Jan 05 14:24:38 2006 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-ab,v 1.1 2006/01/05 14:24:38 joerg Exp $
+
+--- linkedlist.h.orig  2006-01-05 14:01:20.000000000 +0000
++++ linkedlist.h
+@@ -121,7 +121,7 @@ template <class ItemType>
+ int linkedList<ItemType>::add(ItemType Item, int location) {
+       node* parent;
+       node* nextspot;
+-      if(!find(location, root_, parent)) return 0;
++      if(!find(location, this->root_, parent)) return 0;
+       nextspot = parent->next;
+       parent->next = new node;
+       parent->next->next = nextspot;



Home | Main Index | Thread Index | Old Index