pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mail/mutt-devel Fix build with openssl in current.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/f9ab0f321e0a
branches:  trunk
changeset: 398240:f9ab0f321e0a
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Thu Aug 27 10:38:19 2009 +0000

description:
Fix build with openssl in current.
Ok tonio@

diffstat:

 mail/mutt-devel/distinfo         |   3 ++-
 mail/mutt-devel/patches/patch-ae |  22 ++++++++++++++++++++++
 2 files changed, 24 insertions(+), 1 deletions(-)

diffs (43 lines):

diff -r 86ef81001462 -r f9ab0f321e0a mail/mutt-devel/distinfo
--- a/mail/mutt-devel/distinfo  Thu Aug 27 10:37:24 2009 +0000
+++ b/mail/mutt-devel/distinfo  Thu Aug 27 10:38:19 2009 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.62 2009/08/10 14:18:12 apb Exp $
+$NetBSD: distinfo,v 1.63 2009/08/27 10:38:19 wiz Exp $
 
 SHA1 (mutt-1.5.20.tar.gz) = d2bec7a33771f128ca49b1723b06b6d248a35d31
 RMD160 (mutt-1.5.20.tar.gz) = df582f79364b9fd70a0001e76a119d8f78275ebb
@@ -10,6 +10,7 @@
 SHA1 (patch-ab) = 779037e78738a8dcad5115020e4e9eeb540bbf76
 SHA1 (patch-ac) = 40d119b7efed1a4622c42badc9ee97349b504044
 SHA1 (patch-ad) = ecfa994c7c5e494b6eb7356327b96de6559146fc
+SHA1 (patch-ae) = 9523ec98ceeb410f5e9ab468e29727da3ac6bfb5
 SHA1 (patch-af) = 36ca7b54d42537b1d23d87e58d6e31dbad032c0e
 SHA1 (patch-ag) = 2b76839be18271a72cb9e407f54879736f2a7ad6
 SHA1 (patch-ah) = dfe747c30a44bb309cccaca1bd5174fccc3c2bed
diff -r 86ef81001462 -r f9ab0f321e0a mail/mutt-devel/patches/patch-ae
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/mail/mutt-devel/patches/patch-ae  Thu Aug 27 10:38:19 2009 +0000
@@ -0,0 +1,22 @@
+$NetBSD: patch-ae,v 1.14 2009/08/27 10:38:19 wiz Exp $
+
+--- mutt_ssl.c.orig    2009-06-10 05:08:29.000000000 +0000
++++ mutt_ssl.c
+@@ -652,7 +652,7 @@ static int check_host (X509 *x509cert, c
+   char *buf = NULL;
+   int bufsize;
+   /* needed to get the DNS subjectAltNames: */
+-  STACK *subj_alt_names;
++  STACK_OF(GENERAL_NAME) *subj_alt_names;
+   int subj_alt_names_count;
+   GENERAL_NAME *subj_alt_name;
+   /* did we find a name matching hostname? */
+@@ -735,7 +735,7 @@ static int ssl_cache_trusted_cert (X509 
+ {
+   dprint (1, (debugfile, "trusted: %s\n", c->name));
+   if (!SslSessionCerts)
+-    SslSessionCerts = sk_new_null();
++    SslSessionCerts = sk_X509_new_null();
+   return (sk_X509_push (SslSessionCerts, X509_dup(c)));
+ }
+ 



Home | Main Index | Thread Index | Old Index