diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2000-03-02 14:52:53 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2000-03-02 14:52:53 +0800 |
commit | da08b761fb9afadf60b4705ec8a310f83f031188 (patch) | |
tree | 6ce27e59d4f7c2f18ab0c67bf72c3eee2900d85e /calendar/icalendar.c | |
parent | 6bddc9bd17ae7dc82a379967efb2eb28814a10e8 (diff) | |
download | gsoc2013-evolution-da08b761fb9afadf60b4705ec8a310f83f031188.tar gsoc2013-evolution-da08b761fb9afadf60b4705ec8a310f83f031188.tar.gz gsoc2013-evolution-da08b761fb9afadf60b4705ec8a310f83f031188.tar.bz2 gsoc2013-evolution-da08b761fb9afadf60b4705ec8a310f83f031188.tar.lz gsoc2013-evolution-da08b761fb9afadf60b4705ec8a310f83f031188.tar.xz gsoc2013-evolution-da08b761fb9afadf60b4705ec8a310f83f031188.tar.zst gsoc2013-evolution-da08b761fb9afadf60b4705ec8a310f83f031188.zip |
At this point the calendar client and personal calendar server files were
2000-03-02 Federico Mena Quintero <federico@helixcode.com>
At this point the calendar client and personal calendar server
files were moved to the idl/, cal-client/, and pcs/ directories.
* idl/Makefile.am: New file.
* cal-client/Makefile.am: New file. Moved the libcal-client stuff
from calendar/Makefile.am to here.
* pcs/Makefile.am: New file. Moved the tlacuache stuff from
calendar/Makefile.am to here.
* Makefile.am (SUBDIRS): Added the idl and cal-client directories.
* calendar.h: Removed the references to cal-backend.h and its
stuff. This file is going away soon!
* icalendar.c: #include <config.h>. Also, we don't need to
include cal-backend.h or gnome.h.
* icalendar.h: Protect from multiple inclusions.
svn path=/trunk/; revision=2011
Diffstat (limited to 'calendar/icalendar.c')
-rw-r--r-- | calendar/icalendar.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/calendar/icalendar.c b/calendar/icalendar.c index 30d91f6858..af4f2ca83b 100644 --- a/calendar/icalendar.c +++ b/calendar/icalendar.c @@ -10,11 +10,10 @@ * */ -#include <gnome.h> +#include <config.h> #include <unistd.h> #include <sys/stat.h> #include "icalendar.h" -#include "cal-backend.h" static time_t icaltime_to_timet (struct icaltimetype* i); static CalendarAlarm* parse_alarm (icalproperty *prop); |