aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog8
-rw-r--r--calendar/pcs/Makefile.am7
2 files changed, 13 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 016276784d..af75d5fda3 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,11 @@
+2002-07-22 Dan Winship <danw@ximian.com>
+
+ * pcs/Makefile.am: Split pcs-backend-file out of libpcs and build
+ it as a separate (noinst) library libpcsfile.a. This gets the db3
+ dependencies out of libpcs, and people trying to create a calendar
+ backend shouldn't be calling functions from the existing backends
+ anyway so there's no reason to install them.
+
2002-07-18 Rodrigo Moya <rodrigo@ximian.com>
* importers/icalendar-importer.c (get_uri_from_folder_path): if
diff --git a/calendar/pcs/Makefile.am b/calendar/pcs/Makefile.am
index 0c9800bd4d..0c7590f91a 100644
--- a/calendar/pcs/Makefile.am
+++ b/calendar/pcs/Makefile.am
@@ -31,12 +31,12 @@ $(CORBA_GENERATED): $(idls)
pcsincludedir = $(includedir)/evolution/pcs
privlib_LIBRARIES = libpcs.a
+noinst_LIBRARIES = libpcsfile.a
pcsinclude_HEADERS = \
$(CORBA_GENERATED_H) \
cal.h \
cal-backend.h \
- cal-backend-file.h \
cal-backend-util.h \
cal-common.h \
cal-factory.h \
@@ -48,12 +48,15 @@ libpcs_a_SOURCES = \
$(CORBA_GENERATED_C) \
cal.c \
cal-backend.c \
- cal-backend-file.c \
cal-backend-util.c \
cal-factory.c \
job.c \
query.c
+libpcsfile_a_SOURCES = \
+ cal-backend-file.c \
+ cal-backend-file.h
+
BUILT_SOURCES = $(CORBA_GENERATED)
CLEANFILES = $(BUILT_SOURCES)