View | Details | Raw Unified | Return to bug 54592
Collapse All | Expand All

(-)/usr/ports/mail/mutt-devel/Makefile (-1 / +2 lines)
Lines 75-81 Link Here
75
75
76
PORTNAME=	mutt-devel
76
PORTNAME=	mutt-devel
77
PORTVERSION=	1.5.4
77
PORTVERSION=	1.5.4
78
PORTREVISION?=	4
78
PORTREVISION?=	5
79
CATEGORIES+=	mail ipv6
79
CATEGORIES+=	mail ipv6
80
.if defined(WITH_MUTT_NNTP)
80
.if defined(WITH_MUTT_NNTP)
81
CATEGORIES+=	news
81
CATEGORIES+=	news
Lines 177-182 Link Here
177
USE_OPENSSL=	yes
177
USE_OPENSSL=	yes
178
.endif
178
.endif
179
.if defined(WITH_MUTT_CYRUS_SASL)
179
.if defined(WITH_MUTT_CYRUS_SASL)
180
BROKEN=		"mutt-devel's SASL code appears to be broken"
180
LIB_DEPENDS+=	sasl.8:${PORTSDIR}/security/cyrus-sasl
181
LIB_DEPENDS+=	sasl.8:${PORTSDIR}/security/cyrus-sasl
181
.endif
182
.endif
182
.if ! defined(WITHOUT_MUTT_SMIME_OUTLOOK_COMPAT)
183
.if ! defined(WITHOUT_MUTT_SMIME_OUTLOOK_COMPAT)
(-)/usr/ports/mail/mutt-devel/files/patch-pop_auth.c (+19 lines)
Line 0 Link Here
1
--- pop_auth.c.orig	Thu Jul 17 19:42:53 2003
2
+++ pop_auth.c	Thu Jul 17 19:46:01 2003
3
@@ -206,12 +206,12 @@
4
   mutt_message _("Authenticating (APOP)...");
5
 
6
   /* Compute the authentication hash to send to the server */
7
-  MD5Init (&mdContext);
8
-  MD5Update (&mdContext, (unsigned char *)pop_data->timestamp,
9
+  MD5_Init (&mdContext);
10
+  MD5_Update (&mdContext, (unsigned char *)pop_data->timestamp,
11
 	     strlen (pop_data->timestamp));
12
-  MD5Update (&mdContext, (unsigned char *)pop_data->conn->account.pass,
13
+  MD5_Update (&mdContext, (unsigned char *)pop_data->conn->account.pass,
14
 	     strlen (pop_data->conn->account.pass));
15
-  MD5Final (digest, &mdContext);
16
+  MD5_Final (digest, &mdContext);
17
 
18
   for (i = 0; i < sizeof (digest); i++)
19
     sprintf (hash + 2 * i, "%02x", digest[i]);

Return to bug 54592