diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | configure.in | 1 | ||||
-rw-r--r-- | tools/killev.c | 6 |
3 files changed, 11 insertions, 3 deletions
@@ -1,3 +1,10 @@ +2004-03-02 Dan Winship <danw@ximian.com> + + * 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 <fejj@ximian.com> * 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"); |