diff options
author | jmmv <jmmv> | 2006-04-04 13:51:04 +0000 |
---|---|---|
committer | jmmv <jmmv> | 2006-04-04 13:51:04 +0000 |
commit | 9bb634c97dc6319c732a8e195068b25002854e36 (patch) | |
tree | edfe9932458fefea553a43459a137868696d4963 | |
parent | 4b6052ee3875171f064d697dc85c3f475e5e7062 (diff) | |
download | pkgsrc-9bb634c97dc6319c732a8e195068b25002854e36.tar.gz |
Fix a C99ism so that this builds in NetBSD 1.6.2.
-rw-r--r-- | mail/evolution-data-server/distinfo | 3 | ||||
-rw-r--r-- | mail/evolution-data-server/patches/patch-aa | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/mail/evolution-data-server/distinfo b/mail/evolution-data-server/distinfo index 631770da5a1..c685b66dfd2 100644 --- a/mail/evolution-data-server/distinfo +++ b/mail/evolution-data-server/distinfo @@ -1,8 +1,9 @@ -$NetBSD: distinfo,v 1.24 2006/03/30 21:15:27 jmmv Exp $ +$NetBSD: distinfo,v 1.25 2006/04/04 13:51:04 jmmv Exp $ SHA1 (evolution-data-server-1.6.0.tar.bz2) = d63d0fbbcbc779dbdd281d342bf4610dfcf3308e RMD160 (evolution-data-server-1.6.0.tar.bz2) = 456ee44199be2bf2f420f3639744b64c612d89bc Size (evolution-data-server-1.6.0.tar.bz2) = 7079744 bytes +SHA1 (patch-aa) = 90251e4a1ff7947cab682697c922454271df3841 SHA1 (patch-af) = 781469e82b466a8b7dc403450f13cb715ffd35c9 SHA1 (patch-ak) = 1007b6f14aae625ab151f5182bee9472b561d331 SHA1 (patch-al) = 63c8996365023ee89c3140740780f3148ec88eb9 diff --git a/mail/evolution-data-server/patches/patch-aa b/mail/evolution-data-server/patches/patch-aa new file mode 100644 index 00000000000..7aa04919bee --- /dev/null +++ b/mail/evolution-data-server/patches/patch-aa @@ -0,0 +1,14 @@ +$NetBSD: patch-aa,v 1.5 2006/04/04 13:51:04 jmmv Exp $ + +--- servers/groupwise/e-gw-item.c.orig 2005-12-06 11:05:52.000000000 +0100 ++++ servers/groupwise/e-gw-item.c +@@ -3063,8 +3063,8 @@ e_gw_item_set_calendar_item_elements (EG + + /*attachments*/ + if (priv->attach_list) { +- soup_soap_message_start_element (msg, "attachments", NULL, NULL) ; + GSList *al ; ++ soup_soap_message_start_element (msg, "attachments", NULL, NULL) ; + for (al = priv->attach_list ; al != NULL ; al = al->next) { + EGwItemAttachment *attachment = (EGwItemAttachment *)al->data ; + add_attachment_to_soap_message (attachment, msg) ; |