Changeset 2527
- Timestamp:
- 09/25/07 20:15:48 (1 year ago)
- Files:
-
- plugins/evolution2/src/Makefile.am (modified) (1 diff)
- plugins/evolution2/src/evo2_sync.h (deleted)
- plugins/evolution2/src/evolution2_sync.c (modified) (2 diffs)
- plugins/evolution2/src/evolution2_sync.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/evolution2/src/Makefile.am
r2501 r2527 9 9 10 10 config_DATA = evo2-sync 11 12 opensyncheader_HEADERS = evo2_sync.h13 11 14 12 plugin_LTLIBRARIES = evo2_sync.la plugins/evolution2/src/evolution2_sync.c
r2515 r2527 2 2 * evolution2_sync - A plugin for the opensync framework 3 3 * Copyright (C) 2004-2005 Armin Bauer <armin.bauer@opensync.org> 4 * Copyright (C) 2007 Daniel Friedrich <daniel.friedrich@opensync.org> 4 5 * 5 6 * This library is free software; you can redistribute it and/or … … 289 290 osync_plugin_set_description(plugin, "Address book, calendar and task list of Evolution 2"); 290 291 osync_plugin_set_config_type(plugin, OSYNC_PLUGIN_OPTIONAL_CONFIGURATION); 292 /** 293 * Bug 477227 â libebook isn't designed to be loaded and unloaded 294 * see: http://bugzilla.gnome.org/show_bug.cgi?id=477227 295 * see: http://mail.gnome.org/archives/evolution-hackers/2007-September/msg00027.html 296 * also the other EDS client libraries; so we start the plugin in a own process. 297 */ 298 osync_plugin_set_start_type(plugin, OSYNC_START_TYPE_PROCESS); 291 299 292 300 osync_plugin_set_initialize(plugin, evo2_initialize); plugins/evolution2/src/evolution2_sync.h
r2501 r2527 2 2 #define EVO2_SYNC_H 3 3 4 #include "evo2_sync.h"4 //#include "evo2_sync.h" 5 5 6 6 #include <opensync/opensync.h> … … 23 23 #include <sys/stat.h> 24 24 #include <string.h> 25 26 typedef struct evo2_location { 27 char *name; 28 char *uri; 29 } evo2_location; 25 30 26 31 typedef struct OSyncEvoEnv {
