diff options
-rw-r--r-- | addressbook/ChangeLog | 5 | ||||
-rw-r--r-- | addressbook/gui/component/addressbook-storage.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index ab78f6059b..e65ea1cb60 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,10 @@ 2001-08-07 Chris Toshok <toshok@ximian.com> + * gui/component/addressbook-storage.c (remove_ldap_folder): ifdef + this HAVE_LDAP. + +2001-08-07 Chris Toshok <toshok@ximian.com> + * gui/search/e-addressbook-search-dialog.c (e_addressbook_search_dialog_init): set the title of the window to "Advanced Search". diff --git a/addressbook/gui/component/addressbook-storage.c b/addressbook/gui/component/addressbook-storage.c index 6364b29b9b..0dc8cd6295 100644 --- a/addressbook/gui/component/addressbook-storage.c +++ b/addressbook/gui/component/addressbook-storage.c @@ -109,6 +109,7 @@ addressbook_storage_setup (EvolutionShellComponent *shell_component, deregister_storage (); } +#ifdef HAVE_LDAP static void remove_ldap_folder (EvolutionStorage *storage, const CORBA_char *path, const CORBA_char *physical_uri, @@ -118,6 +119,7 @@ remove_ldap_folder (EvolutionStorage *storage, addressbook_storage_write_sources(); *result = GNOME_Evolution_Storage_OK; } +#endif static void register_storage (void) |