2000-08-07 Federico Mena Quintero <federico@helixcode.com> * cal-util/cal-component.c (cal_component_get_as_string): Doh, libical owns the string's memory, so do not free it. * cal-client/client-test.c (create_client): Connect to the destroy signal of the client here. * cal-client/test.ics: New test file, modified from Eric Busboom's test file from RFC 2445. 2000-08-05 Federico Mena Quintero <federico@helixcode.com> * cal-client/client-test.c (dump_component): This was gone for some reason. (main): Load a new test file. 2000-08-04 Federico Mena Quintero <federico@helixcode.com> * cal-util/cal-component.c (cal_component_commit_sequence): New function to commit changes to the SEQUENCE property. (cal_component_get_as_string): Ensure that the sequence has been committed. * cal-client/cal-client.c (cal_client_get_object): Use CalComponent instead of the old iCalObject. (cal_client_update_object): Use iCalObject. Commit the SEQUENCE property before stringifying the object and piping it over to the Wombat. svn path=/trunk/; revision=4585
43 lines
939 B
Makefile
43 lines
939 B
Makefile
INCLUDES = \
|
|
-DG_LOG_DOMAIN=\"wombat-pcs\" \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/calendar \
|
|
-I$(top_srcdir)/libical/src/libical \
|
|
-I$(top_builddir)/libical/src/libical \
|
|
$(BONOBO_VFS_GNOME_CFLAGS) \
|
|
-DGNOMELOCALEDIR=\""$(datadir)/locale"\"
|
|
|
|
CORBA_GENERATED = \
|
|
evolution-calendar.h \
|
|
evolution-calendar-common.c \
|
|
evolution-calendar-skels.c \
|
|
evolution-calendar-stubs.c
|
|
|
|
idls = \
|
|
$(srcdir)/../idl/evolution-calendar.idl
|
|
|
|
idl_flags = `$(GNOME_CONFIG) --cflags idl` -I $(datadir)/idl
|
|
|
|
$(CORBA_GENERATED): $(idls)
|
|
$(ORBIT_IDL) $(idl_flags) $(srcdir)/../idl/evolution-calendar.idl
|
|
|
|
noinst_LIBRARIES = libpcs.a
|
|
|
|
libpcs_a_SOURCES = \
|
|
$(CORBA_GENERATED) \
|
|
cal.c \
|
|
cal.h \
|
|
cal-backend.c \
|
|
cal-backend.h \
|
|
cal-backend-file.c \
|
|
cal-backend-file.h \
|
|
cal-common.h \
|
|
cal-factory.c \
|
|
cal-factory.h \
|
|
job.c \
|
|
job.h
|
|
|
|
|
|
BUILT_SOURCES = $(CORBA_GENERATED)
|
|
CLEANFILES += $(BUILT_SOURCES)
|