diff options
author | wiz <wiz@pkgsrc.org> | 2009-08-27 10:38:19 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2009-08-27 10:38:19 +0000 |
commit | 0d6654945fa0c40adf3521a2a26851a7f1d77653 (patch) | |
tree | e5d2651b663bb31223899df3b39b8bef6acbe756 /mail/mutt-devel | |
parent | cc57c67c41200c0badc8c3f9f8713e6755e9a038 (diff) | |
download | pkgsrc-0d6654945fa0c40adf3521a2a26851a7f1d77653.tar.gz |
Fix build with openssl in current.
Ok tonio@
Diffstat (limited to 'mail/mutt-devel')
-rw-r--r-- | mail/mutt-devel/distinfo | 3 | ||||
-rw-r--r-- | mail/mutt-devel/patches/patch-ae | 22 |
2 files changed, 24 insertions, 1 deletions
diff --git a/mail/mutt-devel/distinfo b/mail/mutt-devel/distinfo index 6a2b844d751..5863ae85287 100644 --- a/mail/mutt-devel/distinfo +++ b/mail/mutt-devel/distinfo @@ -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-aa) = 59d89dce24110be2927c8a1ea1fa5b780d644372 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 --git a/mail/mutt-devel/patches/patch-ae b/mail/mutt-devel/patches/patch-ae new file mode 100644 index 00000000000..1c76bde9790 --- /dev/null +++ b/mail/mutt-devel/patches/patch-ae @@ -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))); + } + |