diff options
author | joerg <joerg@pkgsrc.org> | 2006-01-05 14:24:38 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-01-05 14:24:38 +0000 |
commit | 0af42fd714fafc92abf8d08448785e47ddd0a7bf (patch) | |
tree | 456c337280fdadf1c42336ddbf306f54a29d5c2b /audio | |
parent | e64aa87bbed3b4ca6e736e218b57ba1201cef85a (diff) | |
download | pkgsrc-0af42fd714fafc92abf8d08448785e47ddd0a7bf.tar.gz |
Fix GCC 3.4 by adding explicit this reference.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/kmp/distinfo | 3 | ||||
-rw-r--r-- | audio/kmp/patches/patch-ab | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/audio/kmp/distinfo b/audio/kmp/distinfo index 38cde9c1b55..ba5a51a2f5e 100644 --- a/audio/kmp/distinfo +++ b/audio/kmp/distinfo @@ -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 --git a/audio/kmp/patches/patch-ab b/audio/kmp/patches/patch-ab new file mode 100644 index 00000000000..54295fca999 --- /dev/null +++ b/audio/kmp/patches/patch-ab @@ -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; |