diff --git a/mail/sylpheed/Makefile b/mail/sylpheed/Makefile index 9d5d6f00666..4e1bb4176bb 100644 --- a/mail/sylpheed/Makefile +++ b/mail/sylpheed/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.34 2003/01/18 22:41:44 brad Exp $ +# $OpenBSD: Makefile,v 1.35 2003/02/11 12:25:06 couderc Exp $ COMMENT= "mail/news client in gtk+" -VERSION= 0.8.9 +VERSION= 0.8.10 DISTNAME= sylpheed-${VERSION} CATEGORIES= mail news x11 HOMEPAGE= http://sylpheed.good-day.net diff --git a/mail/sylpheed/distinfo b/mail/sylpheed/distinfo index d2bf66907bc..5a9908376a8 100644 --- a/mail/sylpheed/distinfo +++ b/mail/sylpheed/distinfo @@ -1,3 +1,3 @@ -MD5 (sylpheed-0.8.9.tar.gz) = b693c2d9d89c6b3ca7be1e4087643586 -RMD160 (sylpheed-0.8.9.tar.gz) = 77cf165640b64e40c4f83a9b2c4a119442255991 -SHA1 (sylpheed-0.8.9.tar.gz) = 2077335f753fa1cdf76f11a32f74ac3f7fb816d7 +MD5 (sylpheed-0.8.10.tar.gz) = 1ef196e07690767a710de74c0eed8d3c +RMD160 (sylpheed-0.8.10.tar.gz) = 3d72185e80f7e1e0a60625e708f4138f0acd4006 +SHA1 (sylpheed-0.8.10.tar.gz) = bf9666f6c4774faa36d52648029693fad43ab7df diff --git a/mail/sylpheed/patches/patch-src_codeconv_c b/mail/sylpheed/patches/patch-src_codeconv_c deleted file mode 100644 index ca555b01d6e..00000000000 --- a/mail/sylpheed/patches/patch-src_codeconv_c +++ /dev/null @@ -1,12 +0,0 @@ -$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'; diff --git a/mail/sylpheed/patches/patch-src_imap_c b/mail/sylpheed/patches/patch-src_imap_c deleted file mode 100644 index c41204cf177..00000000000 --- a/mail/sylpheed/patches/patch-src_imap_c +++ /dev/null @@ -1,21 +0,0 @@ -$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());