diff options
author | joerg <joerg@pkgsrc.org> | 2005-09-26 07:49:06 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2005-09-26 07:49:06 +0000 |
commit | 5d3b96380307a4cf3b7230d3d37c8c71e6f1d8cb (patch) | |
tree | 9ffd8abc0bc79a63716142e543597128a8e49226 /net | |
parent | 9b7389e81e9ebe15e76e94440b50a076cf712498 (diff) | |
download | pkgsrc-5d3b96380307a4cf3b7230d3d37c8c71e6f1d8cb.tar.gz |
Fix a bug in the tab-completion. When the prefix is not unique, rtorrent
would have hit an internal assertion later. The patch is a merge from
the unstable tree as suggested by the author.
Bump revision to 1.
Diffstat (limited to 'net')
-rw-r--r-- | net/rtorrent/Makefile | 3 | ||||
-rw-r--r-- | net/rtorrent/distinfo | 3 | ||||
-rw-r--r-- | net/rtorrent/patches/patch-aa | 14 |
3 files changed, 18 insertions, 2 deletions
diff --git a/net/rtorrent/Makefile b/net/rtorrent/Makefile index 96da488095d..30e8a169eb3 100644 --- a/net/rtorrent/Makefile +++ b/net/rtorrent/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.1.1.1 2005/07/22 22:28:08 adam Exp $ +# $NetBSD: Makefile,v 1.2 2005/09/26 07:49:06 joerg Exp $ DISTNAME= rtorrent-0.3.0 +PKGREVISION= 1 CATEGORIES= net MASTER_SITES= http://libtorrent.rakshasa.no/downloads/ diff --git a/net/rtorrent/distinfo b/net/rtorrent/distinfo index fdbf271f6c4..a4c87666fb5 100644 --- a/net/rtorrent/distinfo +++ b/net/rtorrent/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.1.1.1 2005/07/22 22:28:08 adam Exp $ +$NetBSD: distinfo,v 1.2 2005/09/26 07:49:06 joerg Exp $ SHA1 (rtorrent-0.3.0.tar.gz) = f9872d0112918f16d386e97149fb09e509a08af0 RMD160 (rtorrent-0.3.0.tar.gz) = a26936d013b795ec8606c407fe02c8cf02e997ce Size (rtorrent-0.3.0.tar.gz) = 194518 bytes +SHA1 (patch-aa) = 4938f4f38c52f72b64d348c52c02f29f3217846b diff --git a/net/rtorrent/patches/patch-aa b/net/rtorrent/patches/patch-aa new file mode 100644 index 00000000000..d48788bcf8e --- /dev/null +++ b/net/rtorrent/patches/patch-aa @@ -0,0 +1,14 @@ +$NetBSD: patch-aa,v 1.1 2005/09/26 07:49:06 joerg Exp $ + +--- src/ui/element_string_list.cc.orig 2005-09-25 19:07:46.000000000 +0200 ++++ src/ui/element_string_list.cc +@@ -43,7 +43,8 @@ + + namespace ui { + +-ElementStringList::ElementStringList() { ++ElementStringList::ElementStringList(): ++ m_window(NULL) { + m_list.push_back("Test string 1"); + m_list.push_back("Test string 2"); + } |