diff options
author | rillig <rillig@pkgsrc.org> | 2005-04-12 01:18:42 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-04-12 01:18:42 +0000 |
commit | af1be0a5bc3fd374ea49f58e58c927f10eb2c134 (patch) | |
tree | ac423b7c659fc422d07b3697de4b5edd260ddd28 /mail/evolution-data-server | |
parent | dd7d0f01107b9fa33e208bffbde56aecb8471e16 (diff) | |
download | pkgsrc-af1be0a5bc3fd374ea49f58e58c927f10eb2c134.tar.gz |
Really added the patches. Approved by jlam.
Diffstat (limited to 'mail/evolution-data-server')
-rw-r--r-- | mail/evolution-data-server/patches/patch-ak | 14 | ||||
-rw-r--r-- | mail/evolution-data-server/patches/patch-al | 16 | ||||
-rw-r--r-- | mail/evolution-data-server/patches/patch-am | 26 |
3 files changed, 56 insertions, 0 deletions
diff --git a/mail/evolution-data-server/patches/patch-ak b/mail/evolution-data-server/patches/patch-ak new file mode 100644 index 00000000000..5d839bc3196 --- /dev/null +++ b/mail/evolution-data-server/patches/patch-ak @@ -0,0 +1,14 @@ +$NetBSD: patch-ak,v 1.3 2005/04/12 01:18:42 rillig Exp $ + +Needed to have a NULL macro in the program that follows these includes. + +--- configure.orig Tue Mar 15 23:06:58 2005 ++++ configure Tue Apr 12 02:30:53 2005 +@@ -10010,6 +10010,7 @@ cat >>conftest.$ac_ext <<_ACEOF + #include <sys/socket.h> + #include <netinet/in.h> + #include <netdb.h> ++ #include <stddef.h> + + + int diff --git a/mail/evolution-data-server/patches/patch-al b/mail/evolution-data-server/patches/patch-al new file mode 100644 index 00000000000..a6e8732df1e --- /dev/null +++ b/mail/evolution-data-server/patches/patch-al @@ -0,0 +1,16 @@ +$NetBSD: patch-al,v 1.1 2005/04/12 01:18:42 rillig Exp $ + +Needed for gcc-2.95. + +--- servers/groupwise/e-gw-connection.c.orig Mon Feb 28 16:10:35 2005 ++++ servers/groupwise/e-gw-connection.c Sun Apr 10 04:25:22 2005 +@@ -1764,8 +1764,8 @@ e_gw_connection_get_categories (EGwConne + EGwConnectionPrivate *priv; + SoupSoapParameter *param, *subparam, *second_level_child; + char *id, *name; +- g_return_val_if_fail (E_IS_GW_CONNECTION (cnc), E_GW_CONNECTION_STATUS_INVALID_OBJECT); + static GStaticMutex connecting = G_STATIC_MUTEX_INIT; ++ g_return_val_if_fail (E_IS_GW_CONNECTION (cnc), E_GW_CONNECTION_STATUS_INVALID_OBJECT); + + priv = cnc->priv; + g_static_mutex_lock (&connecting); diff --git a/mail/evolution-data-server/patches/patch-am b/mail/evolution-data-server/patches/patch-am new file mode 100644 index 00000000000..bbac4fd8523 --- /dev/null +++ b/mail/evolution-data-server/patches/patch-am @@ -0,0 +1,26 @@ +$NetBSD: patch-am,v 1.1 2005/04/12 01:18:42 rillig Exp $ + +Needed for gcc-2.95. + +--- servers/groupwise/e-gw-item.c.orig Mon Feb 28 16:44:17 2005 ++++ servers/groupwise/e-gw-item.c Sun Apr 10 04:26:27 2005 +@@ -2742,8 +2742,8 @@ e_gw_item_set_calendar_item_elements (EG + + /*attachments*/ + if (priv->attach_list) { ++ GSList *al; + soup_soap_message_start_element (msg, "attachments", NULL, NULL) ; +- GSList *al ; + for (al = priv->attach_list ; al != NULL ; al = al->next) { + EGwItemAttachment *attachment = (EGwItemAttachment *)al->data ; + add_attachment_to_soap_message (attachment, msg) ; +@@ -2810,8 +2810,8 @@ e_gw_item_append_to_soap_message (EGwIte + + /*attachments*/ + if (priv->attach_list) { ++ GSList *al; + soup_soap_message_start_element (msg, "attachments", NULL, NULL) ; +- GSList *al ; + for (al = priv->attach_list ; al != NULL ; al = al->next) { + EGwItemAttachment *attachment = (EGwItemAttachment *)al->data ; + add_attachment_to_soap_message (attachment, msg) ; |