summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorkristerw <kristerw@pkgsrc.org>2004-06-13 15:31:19 +0000
committerkristerw <kristerw@pkgsrc.org>2004-06-13 15:31:19 +0000
commita10a22a178f7ed30ad8a0469bbfd10e2d93df467 (patch)
treecfb8ea00e959ba8092186fad85c428ad9c18fbc0 /mail
parent96f940371744cee3ce8f2a829fac56a218c3ca35 (diff)
downloadpkgsrc-a10a22a178f7ed30ad8a0469bbfd10e2d93df467.tar.gz
Modify some cases od C99 usage, so that this compiles with gcc 2.95 too.
Diffstat (limited to 'mail')
-rw-r--r--mail/evolution-data-server/distinfo3
-rw-r--r--mail/evolution-data-server/patches/patch-aa37
2 files changed, 39 insertions, 1 deletions
diff --git a/mail/evolution-data-server/distinfo b/mail/evolution-data-server/distinfo
index 4144a2d2ca3..6f03e57502f 100644
--- a/mail/evolution-data-server/distinfo
+++ b/mail/evolution-data-server/distinfo
@@ -1,4 +1,5 @@
-$NetBSD: distinfo,v 1.2 2004/06/01 16:59:49 recht Exp $
+$NetBSD: distinfo,v 1.3 2004/06/13 15:31:19 kristerw Exp $
SHA1 (evolution-data-server-0.0.93.tar.bz2) = b0e601e0f0f35cd089e0d0426efe8d093e6158bb
Size (evolution-data-server-0.0.93.tar.bz2) = 5088283 bytes
+SHA1 (patch-aa) = f058914586c30b2f2b01a343fc5f610d4f7c1364
diff --git a/mail/evolution-data-server/patches/patch-aa b/mail/evolution-data-server/patches/patch-aa
new file mode 100644
index 00000000000..a18b0e37161
--- /dev/null
+++ b/mail/evolution-data-server/patches/patch-aa
@@ -0,0 +1,37 @@
+$NetBSD: patch-aa,v 1.1 2004/06/13 15:31:19 kristerw Exp $
+
+--- addressbook/backends/groupwise/e-book-backend-groupwise.c.orig Sun Jun 13 17:00:55 2004
++++ addressbook/backends/groupwise/e-book-backend-groupwise.c Sun Jun 13 17:02:36 2004
+@@ -443,10 +443,9 @@
+ populate_birth_date (EContact *contact, gpointer data)
+ {
+ EGwItem *item;
+-
+- item = E_GW_ITEM (data);
+ char *value ;
+ EContactDate *date;
++ item = E_GW_ITEM (data);
+ value = e_gw_item_get_field_value (item, "birthday");
+ if (value) {
+ date = e_contact_date_from_string (value);
+@@ -527,8 +526,8 @@
+ GList *email_list;
+ EContact *contact;
+ char *email;
+- contact = E_CONTACT (data);
+ int i;
++ contact = E_CONTACT (data);
+
+ email_list = NULL;
+ for (i =0 ; i < 3; i++) {
+@@ -597,9 +596,9 @@
+ populate_full_name (EContact *contact, gpointer data)
+ {
+ EGwItem *item;
+- item = E_GW_ITEM(data);
+ FullName *full_name ;
+ char *full_name_string;
++ item = E_GW_ITEM(data);
+
+ full_name = e_gw_item_get_full_name (item);
+ if (full_name) {