From ef6740c535ebe1433b6a9a22f282562fb67502c6 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Tue, 2 Mar 2004 16:10:04 +0000 Subject: Define this (the number used in the e-d-s component repo_ids). * configure.in (DATASERVER_API_VERSION): Define this (the number used in the e-d-s component repo_ids). * tools/killev.c (main): Update the repo_ids svn path=/trunk/; revision=24932 --- ChangeLog | 7 +++++++ configure.in | 1 + tools/killev.c | 6 +++--- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0c32072711..ac49849631 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-03-02 Dan Winship + + * configure.in (DATASERVER_API_VERSION): Define this (the number + used in the e-d-s component repo_ids). + + * tools/killev.c (main): Update the repo_ids + 2004-02-26 Jeffrey Stedfast * configure.in: Fixed the ENABLE_SMIME conditional to work. Fixes diff --git a/configure.in b/configure.in index cc96baa722..07e20aeaf1 100644 --- a/configure.in +++ b/configure.in @@ -1103,6 +1103,7 @@ AC_SUBST(EVOLUTION_MAIL_LIBS) dnl -- evolution-data-server IDL and version +AC_DEFINE(DATASERVER_API_VERSION, "1.0", evolution-data-server API version) AC_DEFINE_UNQUOTED(DATASERVER_VERSION, "`pkg-config --modversion evolution-data-server-1.0`", evolution-data-server version) AC_MSG_CHECKING(for evolution-data-server IDL) diff --git a/tools/killev.c b/tools/killev.c index f5f6edaa4e..30c5986177 100644 --- a/tools/killev.c +++ b/tools/killev.c @@ -202,9 +202,9 @@ main (int argc, char **argv) add_matching_repo_id ("IDL:GNOME/Evolution/Shell:" BASE_VERSION); g_hash_table_foreach_remove (components, kill_component, NULL); - add_matching_repo_id ("IDL:GNOME/Evolution/ShellComponent:" BASE_VERSION); - add_matching_repo_id ("IDL:GNOME/Evolution/Calendar/CalFactory:" BASE_VERSION); - add_matching_repo_id ("IDL:GNOME/Evolution/BookFactory:" BASE_VERSION); + add_matching_repo_id ("IDL:GNOME/Evolution/Component:" BASE_VERSION); + add_matching_repo_id ("IDL:GNOME/Evolution/DataServer/CalFactory:" DATASERVER_API_VERSION); + add_matching_repo_id ("IDL:GNOME/Evolution/DataServer/BookFactory:" DATASERVER_API_VERSION); add_matching_repo_id ("IDL:GNOME/Evolution/Importer:" BASE_VERSION); add_matching_repo_id ("IDL:GNOME/Evolution/IntelligentImporter:" BASE_VERSION); add_matching_repo_id ("IDL:GNOME/Spell/Dictionary:0.3"); -- cgit