diff options
author | kristerw <kristerw@pkgsrc.org> | 2004-10-15 16:27:56 +0000 |
---|---|---|
committer | kristerw <kristerw@pkgsrc.org> | 2004-10-15 16:27:56 +0000 |
commit | 540b75f77c8860cf96327236cfdba570e750340f (patch) | |
tree | 34808a34b7a56cd26f1c7fdf7306b4f6dbd68d8f /mail/evolution-data-server | |
parent | 2a5f97234d77ffa185919c18bce2d9045f9a57c6 (diff) | |
download | pkgsrc-540b75f77c8860cf96327236cfdba570e750340f.tar.gz |
Fix a line-continuation that gcc 2.95 didn't understand.
Diffstat (limited to 'mail/evolution-data-server')
-rw-r--r-- | mail/evolution-data-server/distinfo | 3 | ||||
-rw-r--r-- | mail/evolution-data-server/patches/patch-aa | 25 |
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; |