diff options
author | Sergey A. Osokin <osa@FreeBSD.org> | 2003-07-20 12:09:18 +0000 |
---|---|---|
committer | Sergey A. Osokin <osa@FreeBSD.org> | 2003-07-20 12:09:18 +0000 |
commit | 046302cfd966a7379fcaa991ffb1ec2d84dfbae1 (patch) | |
tree | cc163fa7dcf3140c30f71c4386c33d321b033853 /mail/mutt-devel | |
parent | a20e7c4696930974c482b099bdacd6ee3b9bf343 (diff) | |
download | ports-046302cfd966a7379fcaa991ffb1ec2d84dfbae1.tar.gz ports-046302cfd966a7379fcaa991ffb1ec2d84dfbae1.zip |
Notes
Diffstat (limited to 'mail/mutt-devel')
-rw-r--r-- | mail/mutt-devel/Makefile | 3 | ||||
-rw-r--r-- | mail/mutt-devel/files/patch-pop_auth.c | 19 |
2 files changed, 21 insertions, 1 deletions
diff --git a/mail/mutt-devel/Makefile b/mail/mutt-devel/Makefile index 1e9f979669e4..0de801b509bc 100644 --- a/mail/mutt-devel/Makefile +++ b/mail/mutt-devel/Makefile @@ -75,7 +75,7 @@ PORTNAME= mutt-devel PORTVERSION= 1.5.4 -PORTREVISION?= 4 +PORTREVISION?= 5 CATEGORIES+= mail ipv6 .if defined(WITH_MUTT_NNTP) CATEGORIES+= news @@ -177,6 +177,7 @@ LIB_DEPENDS+= slang.1:${PORTSDIR}/devel/libslang USE_OPENSSL= yes .endif .if defined(WITH_MUTT_CYRUS_SASL) +BROKEN= "mutt-devel's SASL code appears to be broken" LIB_DEPENDS+= sasl.8:${PORTSDIR}/security/cyrus-sasl .endif .if ! defined(WITHOUT_MUTT_SMIME_OUTLOOK_COMPAT) diff --git a/mail/mutt-devel/files/patch-pop_auth.c b/mail/mutt-devel/files/patch-pop_auth.c new file mode 100644 index 000000000000..1f7a37f269be --- /dev/null +++ b/mail/mutt-devel/files/patch-pop_auth.c @@ -0,0 +1,19 @@ +--- pop_auth.c.orig Thu Jul 17 19:42:53 2003 ++++ pop_auth.c Thu Jul 17 19:46:01 2003 +@@ -206,12 +206,12 @@ + mutt_message _("Authenticating (APOP)..."); + + /* Compute the authentication hash to send to the server */ +- MD5Init (&mdContext); +- MD5Update (&mdContext, (unsigned char *)pop_data->timestamp, ++ MD5_Init (&mdContext); ++ MD5_Update (&mdContext, (unsigned char *)pop_data->timestamp, + strlen (pop_data->timestamp)); +- MD5Update (&mdContext, (unsigned char *)pop_data->conn->account.pass, ++ MD5_Update (&mdContext, (unsigned char *)pop_data->conn->account.pass, + strlen (pop_data->conn->account.pass)); +- MD5Final (digest, &mdContext); ++ MD5_Final (digest, &mdContext); + + for (i = 0; i < sizeof (digest); i++) + sprintf (hash + 2 * i, "%02x", digest[i]); |