From 0af42fd714fafc92abf8d08448785e47ddd0a7bf Mon Sep 17 00:00:00 2001 From: joerg Date: Thu, 5 Jan 2006 14:24:38 +0000 Subject: Fix GCC 3.4 by adding explicit this reference. --- audio/kmp/distinfo | 3 ++- audio/kmp/patches/patch-ab | 13 +++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 audio/kmp/patches/patch-ab (limited to 'audio') 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 + int linkedList::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; -- cgit v1.2.3