summaryrefslogtreecommitdiff
path: root/mail/mutt
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2001-01-10 17:45:32 +0000
committertron <tron@pkgsrc.org>2001-01-10 17:45:32 +0000
commit5136d988b5c5a2ca5ac8c1a810cbd33d8f3dd9c5 (patch)
tree63a27513db313c76298eea9fa7abcc7077a68d4a /mail/mutt
parent8016e23d6e590fc710a00ed96a4edc8e4b676502 (diff)
downloadpkgsrc-5136d988b5c5a2ca5ac8c1a810cbd33d8f3dd9c5.tar.gz
Make LP64 fix work on Solaris.
Diffstat (limited to 'mail/mutt')
-rw-r--r--mail/mutt/files/patch-sum4
-rw-r--r--mail/mutt/patches/patch-ah14
2 files changed, 13 insertions, 5 deletions
diff --git a/mail/mutt/files/patch-sum b/mail/mutt/files/patch-sum
index 2764d2e9ad7..d90c5faddfc 100644
--- a/mail/mutt/files/patch-sum
+++ b/mail/mutt/files/patch-sum
@@ -1,4 +1,4 @@
-$NetBSD: patch-sum,v 1.12 2000/11/09 14:53:00 itojun Exp $
+$NetBSD: patch-sum,v 1.13 2001/01/10 17:45:32 tron Exp $
MD5 (patch-aa) = 7d2e9e14bd302e841ed1f2b47f0dfa58
MD5 (patch-ab) = e7f615cb63a40130edefe8a51aca3593
@@ -7,4 +7,4 @@ MD5 (patch-ad) = e457f59e7d3c215a54d6d0256fe10439
MD5 (patch-ae) = 9f7427c1b9477c19e11a748c889174a6
MD5 (patch-af) = b530bbcd85e85ae7233be82d698a374f
MD5 (patch-ag) = 53602ef8fd94e9ce0ce7f03b61c85495
-MD5 (patch-ah) = 9626fd08270eba43d1b2cca49b94ddc6
+MD5 (patch-ah) = 8997ef180f3469894aee54f51218f269
diff --git a/mail/mutt/patches/patch-ah b/mail/mutt/patches/patch-ah
index d540b409913..0041cdfb91f 100644
--- a/mail/mutt/patches/patch-ah
+++ b/mail/mutt/patches/patch-ah
@@ -1,8 +1,8 @@
-$NetBSD: patch-ah,v 1.1 2000/06/22 13:50:34 tron Exp $
+$NetBSD: patch-ah,v 1.2 2001/01/10 17:45:32 tron Exp $
--- imap/md5.h.orig Fri Aug 20 10:24:06 1999
-+++ imap/md5.h Thu Jun 22 15:13:06 2000
-@@ -26,14 +26,16 @@
++++ imap/md5.h Wed Jan 10 18:30:43 2001
+@@ -26,14 +26,24 @@
#ifndef MD5_H
#define MD5_H 1
@@ -13,11 +13,19 @@ $NetBSD: patch-ah,v 1.1 2000/06/22 13:50:34 tron Exp $
/* UINT2 defines a two byte word */
-typedef unsigned short int UINT2;
++#ifdef __sun__
++typedef uint16_t UINT2;
++#else
+typedef u_int16_t UINT2;
++#endif
/* UINT4 defines a four byte word */
-typedef unsigned long int UINT4;
++#ifdef __sun__
++typedef uint32_t UINT4;
++#else
+typedef u_int32_t UINT4;
++#endif
/* MD5 context. */
typedef struct {