diff options
author | Dan Winship <danw@src.gnome.org> | 2002-07-23 02:23:48 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2002-07-23 02:23:48 +0800 |
commit | 4143d8b5a12b0a2ec3a38c7f8f0a6ea6e10d0661 (patch) | |
tree | b832214d4f6f58c3a29e1e13602f7baf79ce8fbb /calendar | |
parent | 4e8818d32013f64366b9e143c2507be64c931101 (diff) | |
download | gsoc2013-evolution-4143d8b5a12b0a2ec3a38c7f8f0a6ea6e10d0661.tar gsoc2013-evolution-4143d8b5a12b0a2ec3a38c7f8f0a6ea6e10d0661.tar.gz gsoc2013-evolution-4143d8b5a12b0a2ec3a38c7f8f0a6ea6e10d0661.tar.bz2 gsoc2013-evolution-4143d8b5a12b0a2ec3a38c7f8f0a6ea6e10d0661.tar.lz gsoc2013-evolution-4143d8b5a12b0a2ec3a38c7f8f0a6ea6e10d0661.tar.xz gsoc2013-evolution-4143d8b5a12b0a2ec3a38c7f8f0a6ea6e10d0661.tar.zst gsoc2013-evolution-4143d8b5a12b0a2ec3a38c7f8f0a6ea6e10d0661.zip |
Split pcs-backend-file out of libpcs and build it as a separate (noinst)
* 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.
svn path=/trunk/; revision=17529
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 8 | ||||
-rw-r--r-- | calendar/pcs/Makefile.am | 7 |
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) |