summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2016-09-08 21:56:49 +0000
committerwiz <wiz@pkgsrc.org>2016-09-08 21:56:49 +0000
commita03c1cdcc8feeb1fce5a04efcf98d6ed1781bab0 (patch)
tree22ad57e3dac10bd9cae65aa80dc4a89a0aaeebc6 /mail
parente86e8ad480a0a5dda3e3dcdc4ef6a14160d1fdf4 (diff)
downloadpkgsrc-a03c1cdcc8feeb1fce5a04efcf98d6ed1781bab0.tar.gz
Add two patches to fix build on NetBSD 7.
Diffstat (limited to 'mail')
-rw-r--r--mail/neomutt/distinfo4
-rw-r--r--mail/neomutt/patches/patch-handler.c49
-rw-r--r--mail/neomutt/patches/patch-pattern.c49
3 files changed, 101 insertions, 1 deletions
diff --git a/mail/neomutt/distinfo b/mail/neomutt/distinfo
index 1d86cd985c6..d3e4d0cfd06 100644
--- a/mail/neomutt/distinfo
+++ b/mail/neomutt/distinfo
@@ -1,6 +1,8 @@
-$NetBSD: distinfo,v 1.5 2016/09/04 20:53:05 wiz Exp $
+$NetBSD: distinfo,v 1.6 2016/09/08 21:56:49 wiz Exp $
SHA1 (neomutt-20160827.tar.gz) = 12964dc21b55ff84c0e4987a15d86c2f2c4c5b4a
RMD160 (neomutt-20160827.tar.gz) = 62268ba46965a9684820d407d4ba15e76fbc31ca
SHA512 (neomutt-20160827.tar.gz) = e7c654febe48c31441280ce28b121a9363869dd3dce966f47f1d9faa4557c86cfb350fa48d71b1a00eeab19d4c0f72d43e32b3008e25f863c9c1d795d8f7ec94
Size (neomutt-20160827.tar.gz) = 2629013 bytes
+SHA1 (patch-handler.c) = 79ccd9cb11fa78a22091ca67d7e77e00f87730a1
+SHA1 (patch-pattern.c) = f3dd6591d24a5b7bc89aa9c045552d44013e0921
diff --git a/mail/neomutt/patches/patch-handler.c b/mail/neomutt/patches/patch-handler.c
new file mode 100644
index 00000000000..e2e3faf6bb2
--- /dev/null
+++ b/mail/neomutt/patches/patch-handler.c
@@ -0,0 +1,49 @@
+$NetBSD: patch-handler.c,v 1.1 2016/09/08 21:56:49 wiz Exp $
+
+--- handler.c.orig 2016-08-27 00:03:28.000000000 +0000
++++ handler.c
+@@ -1596,7 +1596,7 @@ static int run_decode_and_handler (BODY
+ int origType;
+ char *savePrefix = NULL;
+ FILE *fp = NULL;
+-#ifndef USE_FMEMOPEN
++#ifndef HAVE_OPEN_MEMSTREAM
+ char tempfile[_POSIX_PATH_MAX];
+ #endif
+ size_t tmplength = 0;
+@@ -1606,7 +1606,7 @@ static int run_decode_and_handler (BODY
+
+ fseeko (s->fpin, b->offset, 0);
+
+-#ifdef USE_FMEMOPEN
++#ifdef HAVE_OPEN_MEMSTREAM
+ char *temp;
+ size_t tempsize;
+ #endif
+@@ -1626,7 +1626,7 @@ static int run_decode_and_handler (BODY
+ {
+ /* decode to a tempfile, saving the original destination */
+ fp = s->fpout;
+-#ifdef USE_FMEMOPEN
++#ifdef HAVE_OPEN_MEMSTREAM
+ s->fpout = open_memstream (&temp, &tempsize);
+ if (!s->fpout) {
+ mutt_error _("Unable to open memory stream!");
+@@ -1670,7 +1670,7 @@ static int run_decode_and_handler (BODY
+ /* restore final destination and substitute the tempfile for input */
+ s->fpout = fp;
+ fp = s->fpin;
+-#ifdef USE_FMEMOPEN
++#ifdef HAVE_OPEN_MEMSTREAM
+ if (tempsize) {
+ s->fpin = fmemopen (temp, tempsize, "r");
+ } else { /* fmemopen cannot handle zero-length buffers */
+@@ -1708,7 +1708,7 @@ static int run_decode_and_handler (BODY
+
+ /* restore the original source stream */
+ safe_fclose (&s->fpin);
+-#ifdef USE_FMEMOPEN
++#ifdef HAVE_OPEN_MEMSTREAM
+ if (tempsize)
+ FREE(&temp);
+ #endif
diff --git a/mail/neomutt/patches/patch-pattern.c b/mail/neomutt/patches/patch-pattern.c
new file mode 100644
index 00000000000..032df64ead9
--- /dev/null
+++ b/mail/neomutt/patches/patch-pattern.c
@@ -0,0 +1,49 @@
+$NetBSD: patch-pattern.c,v 1.1 2016/09/08 21:56:49 wiz Exp $
+
+--- pattern.c.orig 2016-08-27 00:03:28.000000000 +0000
++++ pattern.c
+@@ -162,7 +162,7 @@ msg_search (CONTEXT *ctx, pattern_t* pat
+ HEADER *h = ctx->hdrs[msgno];
+ char *buf;
+ size_t blen;
+-#ifdef USE_FMEMOPEN
++#ifdef HAVE_OPEN_MEMSTREAM
+ char *temp;
+ size_t tempsize;
+ #else
+@@ -178,7 +178,7 @@ msg_search (CONTEXT *ctx, pattern_t* pat
+ memset (&s, 0, sizeof (s));
+ s.fpin = msg->fp;
+ s.flags = MUTT_CHARCONV;
+-#ifdef USE_FMEMOPEN
++#ifdef HAVE_OPEN_MEMSTREAM
+ s.fpout = open_memstream (&temp, &tempsize);
+ if (!s.fpout) {
+ mutt_perror ("Error opening memstream");
+@@ -207,7 +207,7 @@ msg_search (CONTEXT *ctx, pattern_t* pat
+ if (s.fpout)
+ {
+ safe_fclose (&s.fpout);
+-#ifdef USE_FMEMOPEN
++#ifdef HAVE_OPEN_MEMSTREAM
+ FREE(&temp);
+ #else
+ unlink (tempfile);
+@@ -220,7 +220,7 @@ msg_search (CONTEXT *ctx, pattern_t* pat
+ mutt_body_handler (h->content, &s);
+ }
+
+-#ifdef USE_FMEMOPEN
++#ifdef HAVE_OPEN_MEMSTREAM
+ fclose (s.fpout);
+ lng = tempsize;
+
+@@ -290,7 +290,7 @@ msg_search (CONTEXT *ctx, pattern_t* pat
+ if (option (OPTTHOROUGHSRC))
+ {
+ safe_fclose (&fp);
+-#ifdef USE_FMEMOPEN
++#ifdef HAVE_OPEN_MEMSTREAM
+ if (tempsize)
+ FREE(&temp);
+ #else