summaryrefslogtreecommitdiff
path: root/mail/evolution-data-server/patches
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/evolution-data-server/patches
parentc29cd052cd9397a181893ac4d248c8050104d18e (diff)
downloadpkgsrc-d1f44c979c1b6e31216f429f3532d57ed749fb1f.tar.gz
Fix a line-continuation that gcc 2.95 didn't understand.
Diffstat (limited to 'mail/evolution-data-server/patches')
-rw-r--r--mail/evolution-data-server/patches/patch-aa25
1 files changed, 25 insertions, 0 deletions
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;