update to 0.9.11

This commit is contained in:
couderc 2004-05-31 12:54:32 +00:00
parent 67a6ca5fda
commit 75b1400fd8
6 changed files with 14 additions and 52 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.48 2004/04/10 19:13:50 couderc Exp $
# $OpenBSD: Makefile,v 1.49 2004/05/31 12:54:32 couderc Exp $
COMMENT= "mail/news client in gtk+"
VERSION= 0.9.10
VERSION= 0.9.11
DISTNAME= sylpheed-${VERSION}
CATEGORIES= mail news x11
HOMEPAGE= http://sylpheed.good-day.net

View File

@ -1,3 +1,3 @@
MD5 (sylpheed-0.9.10.tar.gz) = e56a0fa0ee7fc0e531a260a6e2ca9fd8
RMD160 (sylpheed-0.9.10.tar.gz) = 003631cad712ceb0a9e29e777a700e2a82961a35
SHA1 (sylpheed-0.9.10.tar.gz) = 179ac4e9d8bed5e761b9d532a948570830f4ba13
MD5 (sylpheed-0.9.11.tar.gz) = 0964ef7441bbca2f8e6ed4f5f181e47a
RMD160 (sylpheed-0.9.11.tar.gz) = 3872c75785a83fd6832a36f43980e52a431e3324
SHA1 (sylpheed-0.9.11.tar.gz) = 195cf0bd77a210e09135adec26843f71b3877973

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-ltmain_sh,v 1.3 2004/04/10 19:13:50 couderc Exp $
--- ltmain.sh.orig 2004-02-29 12:54:30.000000000 +0100
+++ ltmain.sh 2004-04-09 17:07:33.000000000 +0200
@@ -1361,6 +1361,17 @@ EOF
$OpenBSD: patch-ltmain_sh,v 1.4 2004/05/31 12:54:32 couderc Exp $
--- ltmain.sh.orig 2004-05-29 14:33:49.000000000 +0200
+++ ltmain.sh 2004-05-31 14:45:19.000000000 +0200
@@ -1371,6 +1371,17 @@ EOF
continue
;;
@ -19,7 +19,7 @@ $OpenBSD: patch-ltmain_sh,v 1.3 2004/04/10 19:13:50 couderc Exp $
-module)
module=yes
continue
@@ -2011,6 +2022,10 @@ EOF
@@ -2024,6 +2035,10 @@ EOF
fi
continue
;;

View File

@ -1,7 +1,7 @@
$OpenBSD: patch-src_inc_c,v 1.2 2004/04/10 19:13:50 couderc Exp $
--- src/inc.c.orig 2004-02-29 12:53:58.000000000 +0100
+++ src/inc.c 2004-04-09 17:07:33.000000000 +0200
@@ -75,7 +75,9 @@ static GdkBitmap *errorxpmmask;
$OpenBSD: patch-src_inc_c,v 1.3 2004/05/31 12:54:32 couderc Exp $
--- src/inc.c.orig 2004-05-11 07:13:18.000000000 +0200
+++ src/inc.c 2004-05-31 14:45:19.000000000 +0200
@@ -76,7 +76,9 @@ static GdkBitmap *errorxpmmask;
static GdkPixmap *okxpm;
static GdkBitmap *okxpmmask;

View File

@ -1,23 +0,0 @@
$OpenBSD: patch-src_procmsg_c,v 1.1 2004/04/12 13:02:35 couderc Exp $
--- src/procmsg.c.orig 2004-04-12 15:53:19.000000000 +0200
+++ src/procmsg.c 2004-04-12 15:55:34.000000000 +0200
@@ -127,8 +127,8 @@ GHashTable *procmsg_to_folder_hash_table
static gint procmsg_read_cache_data_str(FILE *fp, gchar **str)
{
gchar buf[BUFFSIZE];
- gint ret = 0;
- size_t len;
+ gint ret = 0,
+ len;
if (fread(&len, sizeof(len), 1, fp) == 1) {
if (len < 0)
@@ -137,7 +137,7 @@ static gint procmsg_read_cache_data_str(
gchar *tmp = NULL;
while (len > 0) {
- size_t size = MIN(len, BUFFSIZE - 1);
+ gint size = MIN(len, BUFFSIZE - 1);
if (fread(buf, size, 1, fp) != 1) {
ret = -1;

View File

@ -1,15 +0,0 @@
$OpenBSD: patch-src_quote_fmt_lex_c,v 1.1 2004/04/10 19:13:50 couderc Exp $
--- src/quote_fmt_lex.c.orig 2004-04-09 19:09:16.000000000 +0200
+++ src/quote_fmt_lex.c 2004-04-09 19:27:05.000000000 +0200
@@ -21,7 +21,11 @@
#include <string.h>
#include <errno.h>
#include <stdlib.h>
+#ifndef __OpenBSD__
#include <stdint.h> /* May break IA64 test-noansi-r */
+#else
+#include <inttypes.h>
+#endif
/* end standard C headers. */