summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorkristerw <kristerw@pkgsrc.org>2004-10-15 16:27:56 +0000
committerkristerw <kristerw@pkgsrc.org>2004-10-15 16:27:56 +0000
commitd1f44c979c1b6e31216f429f3532d57ed749fb1f (patch)
tree34808a34b7a56cd26f1c7fdf7306b4f6dbd68d8f /mail
parentc29cd052cd9397a181893ac4d248c8050104d18e (diff)
downloadpkgsrc-d1f44c979c1b6e31216f429f3532d57ed749fb1f.tar.gz
Fix a line-continuation that gcc 2.95 didn't understand.
Diffstat (limited to 'mail')
-rw-r--r--mail/evolution-data-server/distinfo3
-rw-r--r--mail/evolution-data-server/patches/patch-aa25
2 files changed, 27 insertions, 1 deletions
diff --git a/mail/evolution-data-server/distinfo b/mail/evolution-data-server/distinfo
index ae77051a286..1771cd82376 100644
--- a/mail/evolution-data-server/distinfo
+++ b/mail/evolution-data-server/distinfo
@@ -1,4 +1,5 @@
-$NetBSD: distinfo,v 1.5 2004/10/04 09:46:50 jmmv Exp $
+$NetBSD: distinfo,v 1.6 2004/10/15 16:27:56 kristerw Exp $
SHA1 (evolution-data-server-1.0.1.tar.bz2) = ab7e868393f87356da2fdceb48a1ce56aa1a47ec
Size (evolution-data-server-1.0.1.tar.bz2) = 4931974 bytes
+SHA1 (patch-aa) = 29dbd7446e9f319628f1217cd9dd96a2cb28d2c1
diff --git a/mail/evolution-data-server/patches/patch-aa b/mail/evolution-data-server/patches/patch-aa
new file mode 100644
index 00000000000..0d2c886a692
--- /dev/null
+++ b/mail/evolution-data-server/patches/patch-aa
@@ -0,0 +1,25 @@
+$NetBSD: patch-aa,v 1.3 2004/10/15 16:27:57 kristerw Exp $
+
+--- calendar/backends/groupwise/e-cal-backend-groupwise.c.orig Fri Oct 15 17:19:56 2004
++++ calendar/backends/groupwise/e-cal-backend-groupwise.c Fri Oct 15 17:20:37 2004
+@@ -512,13 +512,13 @@
+ static ECalBackendSyncStatus
+ e_cal_backend_groupwise_get_static_capabilities (ECalBackendSync *backend, EDataCal *cal, char **capabilities)
+ {
+- *capabilities = g_strdup (CAL_STATIC_CAPABILITY_NO_EMAIL_ALARMS "," \
+- CAL_STATIC_CAPABILITY_ONE_ALARM_ONLY "," \
+- CAL_STATIC_CAPABILITY_REMOVE_ALARMS "," \
+- CAL_STATIC_CAPABILITY_NO_THISANDPRIOR "," \
+- CAL_STATIC_CAPABILITY_NO_THISANDFUTURE "," \
+- CAL_STATIC_CAPABILITY_NO_CONV_TO_ASSIGN_TASK "," \
+- CAL_STATIC_CAPABILITY_NO_CONV_TO_RECUR "," \
++ *capabilities = g_strdup (CAL_STATIC_CAPABILITY_NO_EMAIL_ALARMS ","
++ CAL_STATIC_CAPABILITY_ONE_ALARM_ONLY ","
++ CAL_STATIC_CAPABILITY_REMOVE_ALARMS ","
++ CAL_STATIC_CAPABILITY_NO_THISANDPRIOR ","
++ CAL_STATIC_CAPABILITY_NO_THISANDFUTURE ","
++ CAL_STATIC_CAPABILITY_NO_CONV_TO_ASSIGN_TASK ","
++ CAL_STATIC_CAPABILITY_NO_CONV_TO_RECUR ","
+ CAL_STATIC_CAPABILITY_SAVE_SCHEDULES);
+
+ return GNOME_Evolution_Calendar_Success;