pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mail/evolution-data-server Modify some cases od C99 us...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/6ea66bc71192
branches:  trunk
changeset: 476544:6ea66bc71192
user:      kristerw <kristerw%pkgsrc.org@localhost>
date:      Sun Jun 13 15:31:19 2004 +0000

description:
Modify some cases od C99 usage, so that this compiles with gcc 2.95 too.

diffstat:

 mail/evolution-data-server/distinfo         |   3 +-
 mail/evolution-data-server/patches/patch-aa |  37 +++++++++++++++++++++++++++++
 2 files changed, 39 insertions(+), 1 deletions(-)

diffs (51 lines):

diff -r 7374b1bce7d4 -r 6ea66bc71192 mail/evolution-data-server/distinfo
--- a/mail/evolution-data-server/distinfo       Sun Jun 13 14:11:42 2004 +0000
+++ b/mail/evolution-data-server/distinfo       Sun Jun 13 15:31:19 2004 +0000
@@ -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 -r 7374b1bce7d4 -r 6ea66bc71192 mail/evolution-data-server/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/mail/evolution-data-server/patches/patch-aa       Sun Jun 13 15:31:19 2004 +0000
@@ -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) {



Home | Main Index | Thread Index | Old Index