Update to 0.8.9

This commit is contained in:
couderc 2003-01-17 12:04:28 +00:00
parent 72af77da5c
commit f1c9845b3e
8 changed files with 84 additions and 9 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.32 2002/12/26 15:07:26 couderc Exp $
# $OpenBSD: Makefile,v 1.33 2003/01/17 12:04:28 couderc Exp $
COMMENT= "mail/news client in gtk+"
VERSION= 0.8.8
VERSION= 0.8.9
DISTNAME= sylpheed-${VERSION}
CATEGORIES= mail news x11
HOMEPAGE= http://sylpheed.good-day.net

View File

@ -1,3 +1,3 @@
MD5 (sylpheed-0.8.8.tar.gz) = 829da1579fa49a831a4317a41782551a
RMD160 (sylpheed-0.8.8.tar.gz) = 5c93b8a7ce922cb0546005647deefb80996ce5a8
SHA1 (sylpheed-0.8.8.tar.gz) = 573c3f20aac4fba577a7c856b29de653f6d92e59
MD5 (sylpheed-0.8.9.tar.gz) = b693c2d9d89c6b3ca7be1e4087643586
RMD160 (sylpheed-0.8.9.tar.gz) = 77cf165640b64e40c4f83a9b2c4a119442255991
SHA1 (sylpheed-0.8.9.tar.gz) = 2077335f753fa1cdf76f11a32f74ac3f7fb816d7

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-src_codeconv_c,v 1.1 2003/01/17 12:04:28 couderc Exp $
--- src/codeconv.c.orig Thu Jan 16 04:09:46 2003
+++ src/codeconv.c Fri Jan 17 13:47:33 2003
@@ -705,7 +705,7 @@ gchar *conv_iconv_strdup(const gchar *in
outbuf_p = outbuf;
out_left = out_size;
- while ((n_conv = iconv(cd, (gchar **)&inbuf_p, &in_left,
+ while ((n_conv = iconv(cd, (const char **) &inbuf_p, &in_left,
&outbuf_p, &out_left)) < 0) {
if (EILSEQ == errno) {
*outbuf_p = '\0';

View File

@ -0,0 +1,21 @@
$OpenBSD: patch-src_imap_c,v 1.1 2003/01/17 12:04:28 couderc Exp $
--- src/imap.c.orig Fri Jan 17 13:44:39 2003
+++ src/imap.c Fri Jan 17 13:46:52 2003
@@ -2922,7 +2922,7 @@ static gchar *imap_modified_utf7_to_loca
to_len = strlen(mutf7_str) * 5;
to_p = to_str = g_malloc(to_len + 1);
- if (iconv(cd, &norm_utf7_p, &norm_utf7_len, &to_p, &to_len) == -1) {
+ if (iconv(cd, (const char **) &norm_utf7_p, &norm_utf7_len, &to_p, &to_len) == -1) {
g_warning(_("iconv cannot convert UTF-7 to %s\n"),
conv_get_current_charset_str());
g_string_free(norm_utf7, TRUE);
@@ -2988,7 +2988,7 @@ static gchar *imap_locale_to_modified_ut
mblen++)
;
from_len -= mblen;
- if (iconv(cd, &from_tmp, &mblen,
+ if (iconv(cd, (const char **) &from_tmp, &mblen,
&norm_utf7_p, &norm_utf7_len) == -1) {
g_warning(_("iconv cannot convert %s to UTF-7\n"),
conv_get_current_charset_str());

View File

@ -0,0 +1,14 @@
$OpenBSD: patch-src_inc_c,v 1.1 2003/01/17 12:04:28 couderc Exp $
--- src/inc.c.orig Fri Jan 17 13:43:36 2003
+++ src/inc.c Fri Jan 17 13:44:04 2003
@@ -76,7 +76,9 @@ static GdkBitmap *errorxpmmask;
static GdkPixmap *okxpm;
static GdkBitmap *okxpmmask;
-#define MSGBUFSIZE 8192
+#ifndef MSGBUFSIZE
+# define MSGBUFSIZE 8192
+#endif
static void inc_finished (MainWindow *mainwin,
gboolean new_messages);

View File

@ -0,0 +1,14 @@
$OpenBSD: patch-src_mbox_c,v 1.1 2003/01/17 12:04:28 couderc Exp $
--- src/mbox.c.orig Fri Jan 17 13:42:59 2003
+++ src/mbox.c Fri Jan 17 13:43:22 2003
@@ -42,7 +42,9 @@
#include "account.h"
#include "utils.h"
-#define MSGBUFSIZE 8192
+#ifndef MSGBUFSIZE
+# define MSGBUFSIZE 8192
+#endif
#define FPUTS_TO_TMP_ABORT_IF_FAIL(s) \
{ \

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-src_procmime_c,v 1.2 2001/11/28 22:45:17 naddy Exp $
--- src/procmime.c.orig Mon Nov 26 11:37:18 2001
+++ src/procmime.c Mon Nov 26 11:37:45 2001
@@ -910,7 +910,7 @@ static GHashTable *procmime_get_mime_typ
$OpenBSD: patch-src_procmime_c,v 1.3 2003/01/17 12:04:28 couderc Exp $
--- src/procmime.c.orig Fri Jan 17 03:29:03 2003
+++ src/procmime.c Fri Jan 17 13:30:46 2003
@@ -913,7 +913,7 @@ static GHashTable *procmime_get_mime_typ
mime_type_list =
procmime_get_mime_type_list(SYSCONFDIR "/mime.types");
if (!mime_type_list) {

View File

@ -0,0 +1,14 @@
$OpenBSD: patch-src_smtp_h,v 1.1 2003/01/17 12:04:28 couderc Exp $
--- src/smtp.h.orig Fri Jan 17 13:33:49 2003
+++ src/smtp.h Fri Jan 17 13:34:33 2003
@@ -36,7 +36,9 @@ typedef struct _SMTPSession SMTPSession;
#define SMTP_SESSION(obj) ((SMTPSession *)obj)
-#define MSGBUFSIZE 8192
+#ifndef MSGBUFSIZE
+# define MSGBUFSIZE 8192
+#endif
#define SM_OK 0
#define SM_ERROR 128