diff options
author | rillig <rillig> | 2007-10-17 21:46:13 +0000 |
---|---|---|
committer | rillig <rillig> | 2007-10-17 21:46:13 +0000 |
commit | ab62a4ddc351ee9b2aa05b85d86332434c722797 (patch) | |
tree | 8c9d88ef67709324e84c85017b34cd8d099e91e7 /audio/muse | |
parent | 5df857f57c7ed98aec6b45d4f8d20bc29eae018e (diff) | |
download | pkgsrc-ab62a4ddc351ee9b2aa05b85d86332434c722797.tar.gz |
Fixed build error with g++4.
Diffstat (limited to 'audio/muse')
-rw-r--r-- | audio/muse/distinfo | 3 | ||||
-rw-r--r-- | audio/muse/patches/patch-ah | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/audio/muse/distinfo b/audio/muse/distinfo index aa5318c912d..b6d7f8ce526 100644 --- a/audio/muse/distinfo +++ b/audio/muse/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.6 2006/10/23 23:48:45 rillig Exp $ +$NetBSD: distinfo,v 1.7 2007/10/17 21:46:13 rillig Exp $ SHA1 (MuSE-0.9.tar.gz) = c73dfe6cf5a8da3430864a76d0bc8d9f2cb7d118 RMD160 (MuSE-0.9.tar.gz) = 53eb653a0488ae3a5ef9486d8b2a9006fdba619d @@ -10,3 +10,4 @@ SHA1 (patch-ad) = 5f2322a1c9c3c9ee4e4dbe3aa810c0f2c5d999fd SHA1 (patch-ae) = 1097b09eb842fe1d90ec28913ad511e515f55a8a SHA1 (patch-af) = 20b68a9758ec109b3dec37b5898076a0cff5bfcc SHA1 (patch-ag) = 65515e3a2e8947a1ac1b01e5585a1ca04513bd70 +SHA1 (patch-ah) = 458d747f30e7767f53bc5dd890da1dd9e94cabfa diff --git a/audio/muse/patches/patch-ah b/audio/muse/patches/patch-ah new file mode 100644 index 00000000000..91bc61a6058 --- /dev/null +++ b/audio/muse/patches/patch-ah @@ -0,0 +1,13 @@ +$NetBSD: patch-ah,v 1.1 2007/10/17 21:46:13 rillig Exp $ + +--- src/linklist.h.orig 2004-02-13 16:58:16.000000000 +0000 ++++ src/linklist.h 2007-10-17 21:44:34.000000000 +0000 +@@ -44,7 +44,7 @@ class Linklist { + bool movedown(int pos); + bool moveto(int num, int pos); + Entry *pick(int pos); +- Entry *Linklist::selected(); ++ Entry *selected(); + + Entry *operator[](int pos) { return pick(pos); }; + |