diff options
author | wiz <wiz@pkgsrc.org> | 2008-11-19 12:06:41 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2008-11-19 12:06:41 +0000 |
commit | b2f928e473a6403cf00ad9186922e02a5ba31b3f (patch) | |
tree | 6c662486c5c42627dac366d6574ca17127cd5a8e /mail | |
parent | 08884f6efd615ca1fb9fe5ab3eaf7098f1b1fb3f (diff) | |
download | pkgsrc-b2f928e473a6403cf00ad9186922e02a5ba31b3f.tar.gz |
Solve a problem with illegal byte sequences, causing mutt hangs.
Patch from Takehiko NOZAKI in
http://mail-index.netbsd.org/current-users/2008/11/19/msg006092.html
Bump PKGREVISION.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/mutt-devel/Makefile | 3 | ||||
-rw-r--r-- | mail/mutt-devel/distinfo | 3 | ||||
-rw-r--r-- | mail/mutt-devel/patches/patch-ae | 12 |
3 files changed, 16 insertions, 2 deletions
diff --git a/mail/mutt-devel/Makefile b/mail/mutt-devel/Makefile index 5ebd73cabd4..7d74b91bd2f 100644 --- a/mail/mutt-devel/Makefile +++ b/mail/mutt-devel/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.68 2008/05/18 08:26:30 tonio Exp $ +# $NetBSD: Makefile,v 1.69 2008/11/19 12:06:41 wiz Exp $ DISTNAME= mutt-1.5.18 +PKGREVISION= 1 CATEGORIES= mail MUTT_SITES= ftp://ftp.mutt.org/mutt/ \ ftp://ftp.stealth.net/pub/mirrors/ftp.mutt.org/pub/mutt/ \ diff --git a/mail/mutt-devel/distinfo b/mail/mutt-devel/distinfo index 5c96c28558c..a179bd15716 100644 --- a/mail/mutt-devel/distinfo +++ b/mail/mutt-devel/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.50 2008/06/02 16:42:34 sketch Exp $ +$NetBSD: distinfo,v 1.51 2008/11/19 12:06:41 wiz Exp $ SHA1 (mutt-1.5.18.tar.gz) = a835a1933297494f2c6c68b9a334cc1d71a95e5a RMD160 (mutt-1.5.18.tar.gz) = 1c8595f66eb9aa94c01a6020be20a75c0c8d2d14 @@ -12,6 +12,7 @@ Size (patch-1.5.18.rr.compressed.1.gz) = 10577 bytes SHA1 (patch-aa) = 59d89dce24110be2927c8a1ea1fa5b780d644372 SHA1 (patch-ab) = afc1b743c9299d0aa817dff3a0e580bbb3b9302a SHA1 (patch-ad) = ecfa994c7c5e494b6eb7356327b96de6559146fc +SHA1 (patch-ae) = bea9a46e431ef9582c96b94556e56295ad92c8ed SHA1 (patch-ag) = b27327f0da19f8f3aad8d11505d7e6eabe9febd8 SHA1 (patch-al) = ac8d963286d9edee73ee00bdb8f4ffcd65c6cd5d SHA1 (patch-am) = f7f20860bccb63ed5464e3a1225719ffc3fa504f diff --git a/mail/mutt-devel/patches/patch-ae b/mail/mutt-devel/patches/patch-ae new file mode 100644 index 00000000000..cccf7826723 --- /dev/null +++ b/mail/mutt-devel/patches/patch-ae @@ -0,0 +1,12 @@ +$NetBSD: patch-ae,v 1.12 2008/11/19 12:06:41 wiz Exp $ + +--- mbyte.c.orig 2008-05-10 07:47:57.000000000 +0000 ++++ mbyte.c +@@ -496,6 +496,7 @@ int mutt_filter_unprintable (char **s) + { + k = 1; + wc = replacement_char(); ++ memset (&mbstate1, 0, sizeof (mbstate1)); + } + if (!IsWPrint (wc)) + wc = '?'; |