summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2007-06-19 12:27:29 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2007-06-19 12:27:29 +0800
commite0848d372da15bd7623c3c944b16fafd552945e8 (patch)
tree59c11f309609f5cb4eb9e1df42c3eb90aaca3576
parenta7f7f762df0f1d5861edf12c1bd55344979399d8 (diff)
downloadmarcuscom-ports-e0848d372da15bd7623c3c944b16fafd552945e8.tar
marcuscom-ports-e0848d372da15bd7623c3c944b16fafd552945e8.tar.gz
marcuscom-ports-e0848d372da15bd7623c3c944b16fafd552945e8.tar.bz2
marcuscom-ports-e0848d372da15bd7623c3c944b16fafd552945e8.tar.lz
marcuscom-ports-e0848d372da15bd7623c3c944b16fafd552945e8.tar.xz
marcuscom-ports-e0848d372da15bd7623c3c944b16fafd552945e8.tar.zst
marcuscom-ports-e0848d372da15bd7623c3c944b16fafd552945e8.zip
Update to 1.11.4.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@9044 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r--databases/evolution-data-server/files/patch-camel_camel-object.c22
-rw-r--r--databases/evolution-data-server/files/patch-camel_providers_imap4_camel-imap4-store.c11
2 files changed, 0 insertions, 33 deletions
diff --git a/databases/evolution-data-server/files/patch-camel_camel-object.c b/databases/evolution-data-server/files/patch-camel_camel-object.c
deleted file mode 100644
index 9aef5b739..000000000
--- a/databases/evolution-data-server/files/patch-camel_camel-object.c
+++ /dev/null
@@ -1,22 +0,0 @@
---- camel/camel-object.c.orig Wed Oct 18 15:53:34 2006
-+++ camel/camel-object.c Wed Oct 18 15:55:01 2006
-@@ -457,7 +457,7 @@
- }
-
- /* we batch up the properties and set them in one go */
-- if (!(argv = g_try_malloc ((gulong)(sizeof (*argv) + (count - CAMEL_ARGV_MAX) * sizeof (argv->argv[0])))))
-+ if (!(argv = g_try_malloc ((guint32)(sizeof (*argv) + (count - CAMEL_ARGV_MAX) * sizeof (argv->argv[0])))))
- return -1;
-
- argv->argc = 0;
-@@ -537,8 +537,8 @@
-
- count = g_slist_length(props);
-
-- arggetv = g_malloc0(sizeof(*arggetv) + (count - CAMEL_ARGV_MAX) * sizeof(arggetv->argv[0]));
-- argv = g_malloc0(sizeof(*argv) + (count - CAMEL_ARGV_MAX) * sizeof(argv->argv[0]));
-+ arggetv = g_malloc0((guint32)(sizeof(*arggetv) + (count - CAMEL_ARGV_MAX) * sizeof(arggetv->argv[0])));
-+ argv = g_malloc0((guint32)(sizeof(*argv) + (count - CAMEL_ARGV_MAX) * sizeof(argv->argv[0])));
- l = props;
- i = 0;
- while (l) {
diff --git a/databases/evolution-data-server/files/patch-camel_providers_imap4_camel-imap4-store.c b/databases/evolution-data-server/files/patch-camel_providers_imap4_camel-imap4-store.c
deleted file mode 100644
index aa55a089d..000000000
--- a/databases/evolution-data-server/files/patch-camel_providers_imap4_camel-imap4-store.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- camel/providers/imap4/camel-imap4-store.c.orig Mon May 7 00:57:52 2007
-+++ camel/providers/imap4/camel-imap4-store.c Mon May 7 00:58:34 2007
-@@ -324,7 +324,7 @@ connect_to_server (CamelIMAP4Engine *eng
-
- camel_imap4_command_unref (ic);
-
-- if (camel_tcp_stream_ssl_enable_ssl ((SpruceTcpStreamSSL *) tcp_stream) == -1) {
-+ if (camel_tcp_stream_ssl_enable_ssl (CAMEL_TCP_STREAM_SSL (tcp_stream)) == -1) {
- camel_exception_setv (ex, CAMEL_EXCEPTION_SYSTEM,
- _("Failed to connect to IMAP server %s in secure mode: %s"),
- service->url->host, _("TLS negotiations failed"));