diff options
author | johans <johans@FreeBSD.org> | 2007-12-13 02:02:33 +0800 |
---|---|---|
committer | johans <johans@FreeBSD.org> | 2007-12-13 02:02:33 +0800 |
commit | c4345db27042592540b4068170c6f74d60721e0c (patch) | |
tree | 719a14ef0c3d5aede93d3a36a3499a504d618b6e /mail | |
parent | b0575437cc486d63cb2c28e734025ec52b65e574 (diff) | |
download | freebsd-ports-gnome-c4345db27042592540b4068170c6f74d60721e0c.tar.gz freebsd-ports-gnome-c4345db27042592540b4068170c6f74d60721e0c.tar.zst freebsd-ports-gnome-c4345db27042592540b4068170c6f74d60721e0c.zip |
- Update to 2.4.124a
- Remove obsolete patch from mi@ (now included in distribution)
Diffstat (limited to 'mail')
-rw-r--r-- | mail/elm+ME/Makefile | 3 | ||||
-rw-r--r-- | mail/elm+ME/distinfo | 3 | ||||
-rw-r--r-- | mail/elm+ME/files/patch-search-fix | 24 |
3 files changed, 4 insertions, 26 deletions
diff --git a/mail/elm+ME/Makefile b/mail/elm+ME/Makefile index d910400c47b8..919ff103432d 100644 --- a/mail/elm+ME/Makefile +++ b/mail/elm+ME/Makefile @@ -7,7 +7,6 @@ PORTNAME= elm+ME PORTVERSION= ${ELM_VERSION}.${ELM_REVISION}${ELM_PATCHLEVEL:S/_//} -PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= http://www.elmme-mailer.org/ \ ftp://ftp.elmme-mailer.org/elmme-mailer.org/src/elm-2.4ME+/ \ @@ -83,7 +82,7 @@ OPTIONS= ELM_ICONV "libiconv support" on \ ELM_VERSION= 2.4 ELM_REVISION= 124 -ELM_PATCHLEVEL= _ # a...z = patch-level, _ means no patch-level. +ELM_PATCHLEVEL= a # a...z = patch-level, _ means no patch-level. ELM_PATCHDONE= false .for level in _ a b c d e f g h i j k l m n o p q r s t u v w x y z diff --git a/mail/elm+ME/distinfo b/mail/elm+ME/distinfo index 3adbc9a9b79c..3adc7bf107c1 100644 --- a/mail/elm+ME/distinfo +++ b/mail/elm+ME/distinfo @@ -1,3 +1,6 @@ MD5 (elm-2.4ME+124.tar.gz) = c9604dd0629094dd7c4b29712df1159d SHA256 (elm-2.4ME+124.tar.gz) = 609e07dfc31d05fad4757639dbc6f60ffb56d049528b6a1d258c7f259144e6cf SIZE (elm-2.4ME+124.tar.gz) = 1669056 +MD5 (elm-2.4ME+PL124a.patch.gz) = 9bd8eea44642aecaf7f56efd44859fed +SHA256 (elm-2.4ME+PL124a.patch.gz) = fd641f7153d8767414f0f8ec2cddf7d703663c1347c524d6c38a46cf39bc52c1 +SIZE (elm-2.4ME+PL124a.patch.gz) = 3964 diff --git a/mail/elm+ME/files/patch-search-fix b/mail/elm+ME/files/patch-search-fix deleted file mode 100644 index 8f378c3156ff..000000000000 --- a/mail/elm+ME/files/patch-search-fix +++ /dev/null @@ -1,24 +0,0 @@ -The meaningful part of the patch obtained from Kari E. Hurtta -(elm+ME maintainer), which fixes a double-free in parsing of -certain MIME e-mails. The patch should be included in the next -release of elm. - ---- melib/mime_decode.c 25 Aug 2007 11:51:51 -0000 2.0 -+++ melib/mime_decode.c 28 Oct 2007 07:39:29 -0000 2.2 -@@ -2525,11 +2525,13 @@ - unlink(fname); /* Unlink was delayed */ - *name = NULL; - } -- free(fname); -- } - -- if (!name) - free(fname); -+ -+ } else { -+ if (!name) -+ free(fname); -+ } - return tmpfp; - } - |