update to neomutt-20170306
This commit is contained in:
parent
dfc0e73fe8
commit
ccc6920533
@ -1,8 +1,8 @@
|
||||
# $OpenBSD: Makefile,v 1.9 2017/03/02 17:42:28 sthen Exp $
|
||||
# $OpenBSD: Makefile,v 1.10 2017/03/07 09:12:48 sthen Exp $
|
||||
|
||||
COMMENT= tty-based e-mail client, Mutt with patches
|
||||
|
||||
V= 20170225
|
||||
V= 20170306
|
||||
DISTNAME= neomutt-$V
|
||||
|
||||
CATEGORIES= mail
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (neomutt-20170225.tar.gz) = 8D0iGLf0qrPy+6GtixQTPZYkB73JE13xqitULLkAjso=
|
||||
SIZE (neomutt-20170225.tar.gz) = 4644244
|
||||
SHA256 (neomutt-20170306.tar.gz) = bIpapOKM19zSPz6JqZFtgRWQH+nVYb+zmPVgUDnX+Ic=
|
||||
SIZE (neomutt-20170306.tar.gz) = 4645116
|
||||
|
@ -1,18 +0,0 @@
|
||||
$OpenBSD: patch-getdomain_c,v 1.1 2017/03/02 17:42:28 sthen Exp $
|
||||
|
||||
From b0997a4cb799433c8073229b507fc49a91d61284 Mon Sep 17 00:00:00 2001
|
||||
From: guyzmo <guyzmo+github+pub@m0g.net>
|
||||
Date: Sat, 25 Feb 2017 12:47:14 +0100
|
||||
Subject: [PATCH] Fixes missing semi-colon compilation issue (#433)
|
||||
|
||||
--- getdomain.c.orig Thu Mar 2 17:34:32 2017
|
||||
+++ getdomain.c Thu Mar 2 17:34:35 2017
|
||||
@@ -67,7 +67,7 @@ int getdnsdomainname (char *d, size_t len)
|
||||
|
||||
#else /* !HAVE_GETADDRINFO_A */
|
||||
|
||||
- getaddrinfo(node, NULL, &hints, &h)
|
||||
+ getaddrinfo(node, NULL, &hints, &h);
|
||||
|
||||
#endif
|
||||
|
@ -1,60 +0,0 @@
|
||||
$OpenBSD: patch-mutt_h,v 1.1 2017/03/02 17:42:28 sthen Exp $
|
||||
--- mutt.h.orig Thu Mar 2 17:39:52 2017
|
||||
+++ mutt.h Thu Mar 2 17:40:05 2017
|
||||
@@ -651,17 +651,17 @@ typedef struct replace_list_t
|
||||
struct replace_list_t *next;
|
||||
} REPLACE_LIST;
|
||||
|
||||
-inline LIST *mutt_new_list()
|
||||
+static inline LIST *mutt_new_list()
|
||||
{
|
||||
return safe_calloc (1, sizeof (LIST));
|
||||
}
|
||||
|
||||
-inline RX_LIST *mutt_new_rx_list()
|
||||
+static inline RX_LIST *mutt_new_rx_list()
|
||||
{
|
||||
return safe_calloc (1, sizeof (RX_LIST));
|
||||
}
|
||||
|
||||
-inline REPLACE_LIST *mutt_new_replace_list()
|
||||
+static inline REPLACE_LIST *mutt_new_replace_list()
|
||||
{
|
||||
return safe_calloc (1, sizeof (REPLACE_LIST));
|
||||
}
|
||||
@@ -733,7 +733,7 @@ typedef struct envelope
|
||||
unsigned int refs_changed : 1; /* References changed to break thread */
|
||||
} ENVELOPE;
|
||||
|
||||
-inline ENVELOPE *mutt_new_envelope()
|
||||
+static inline ENVELOPE *mutt_new_envelope()
|
||||
{
|
||||
return safe_calloc (1, sizeof (ENVELOPE));
|
||||
}
|
||||
@@ -745,7 +745,7 @@ typedef struct parameter
|
||||
struct parameter *next;
|
||||
} PARAMETER;
|
||||
|
||||
-inline PARAMETER *mutt_new_parameter()
|
||||
+static inline PARAMETER *mutt_new_parameter()
|
||||
{
|
||||
return safe_calloc (1, sizeof (PARAMETER));
|
||||
}
|
||||
@@ -929,7 +929,7 @@ typedef struct header
|
||||
char *maildir_flags; /* unknown maildir flags */
|
||||
} HEADER;
|
||||
|
||||
-inline HEADER *mutt_new_header()
|
||||
+static inline HEADER *mutt_new_header()
|
||||
{
|
||||
return safe_calloc (1, sizeof (HEADER));
|
||||
}
|
||||
@@ -1131,7 +1131,7 @@ typedef struct
|
||||
int tabs;
|
||||
} ENTER_STATE;
|
||||
|
||||
-inline ENTER_STATE *mutt_new_enter_state()
|
||||
+static inline ENTER_STATE *mutt_new_enter_state()
|
||||
{
|
||||
return safe_calloc (1, sizeof (ENTER_STATE));
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user