File:
[cvs.NetBSD.org] /
pkgsrc /
mail /
mutt-kz /
patches /
Attic /
patch-aq
Revision
1.1:
download - view:
text,
annotated -
select for diffs
Sun Jan 12 17:43:37 2014 UTC (11 years, 2 months ago) by
wiz
Branches:
MAIN
CVS tags:
pkgsrc-2016Q2-base,
pkgsrc-2016Q2,
pkgsrc-2016Q1-base,
pkgsrc-2016Q1,
pkgsrc-2015Q4-base,
pkgsrc-2015Q4,
pkgsrc-2015Q3-base,
pkgsrc-2015Q3,
pkgsrc-2015Q2-base,
pkgsrc-2015Q2,
pkgsrc-2015Q1-base,
pkgsrc-2015Q1,
pkgsrc-2014Q4-base,
pkgsrc-2014Q4,
pkgsrc-2014Q3-base,
pkgsrc-2014Q3,
pkgsrc-2014Q2-base,
pkgsrc-2014Q2,
pkgsrc-2014Q1-base,
pkgsrc-2014Q1,
HEAD
Import mutt-kz-1.5.22.1rc1 as mail/mutt-kz.
This package contains the mutt-kz fork with notmuch support and
another improvements.
The Mutt E-Mail Client by Michael Elkins <me@cs.hmc.edu>
``All mail clients suck. This one just sucks less.'' -me, circa 1995
Mutt is a small but very powerful text-based MIME mail client.
Mutt is highly configurable, and is well suited to the mail power
user with advanced features like key bindings, keyboard macros,
mail threading, color, PGP and S/MIME, POP3, IMAP, various mailbox
formats, regular expression searches and a powerful pattern matching
language for selecting groups of messages.
$NetBSD: patch-aq,v 1.1 2014/01/12 17:43:37 wiz Exp $
--- mvchgat.c.orig 2011-07-05 08:47:10.596708000 +0000
+++ mvchgat.c
@@ -0,0 +1,27 @@
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include "mutt.h"
+#include "mutt_curses.h"
+
+#ifndef USE_SLANG_CURSES
+#ifndef HAVE_MVWCHGAT
+int
+mvwchgat(WINDOW *win, int y, int x, int count, attr_t attr, short color,
+ const void *opts)
+{
+ wmove(win, y, x);
+ return wattr_set(win, attr, color, opts);
+}
+#endif
+
+#ifndef HAVE_MVCHGAT
+int
+mvchgat(int y, int x, int count, attr_t attr, short color,
+ const void *opts)
+{
+ return mvwchgat(stdscr, y, x, count, attr, color, opts);
+}
+#endif
+#endif
CVSweb <webmaster@jp.NetBSD.org>