aboutsummaryrefslogtreecommitdiffstats
path: root/wombat/wombat.c
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2003-10-23 04:49:45 +0800
committerChris Toshok <toshok@src.gnome.org>2003-10-23 04:49:45 +0800
commitf7cbb839adf3fd47aa07ca2080063acd6fff6978 (patch)
tree03f31b00e9fbf1dd4338fc1744df13d9f6c5b9f9 /wombat/wombat.c
parent998e8acf8d1acdffe0b91baad1ce200029d519aa (diff)
downloadgsoc2013-evolution-f7cbb839adf3fd47aa07ca2080063acd6fff6978.tar
gsoc2013-evolution-f7cbb839adf3fd47aa07ca2080063acd6fff6978.tar.gz
gsoc2013-evolution-f7cbb839adf3fd47aa07ca2080063acd6fff6978.tar.bz2
gsoc2013-evolution-f7cbb839adf3fd47aa07ca2080063acd6fff6978.tar.lz
gsoc2013-evolution-f7cbb839adf3fd47aa07ca2080063acd6fff6978.tar.xz
gsoc2013-evolution-f7cbb839adf3fd47aa07ca2080063acd6fff6978.tar.zst
gsoc2013-evolution-f7cbb839adf3fd47aa07ca2080063acd6fff6978.zip
add vcf to supported_protocols.
2003-10-21 Chris Toshok <toshok@ximian.com> * GNOME_Evolution_WombatLDAP.server.in.in: add vcf to supported_protocols. * GNOME_Evolution_WombatNOLDAP.server.in.in: same. * wombat.c (setup_pas): register the vcf backend. * Makefile.am (evolution_wombat_LDADD): replace the conditional libpasldap stuff and the references to all the libpas* backends with libpas.la. svn path=/trunk/; revision=22999
Diffstat (limited to 'wombat/wombat.c')
-rw-r--r--wombat/wombat.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/wombat/wombat.c b/wombat/wombat.c
index 4dc6c6b60e..c11c8fe78f 100644
--- a/wombat/wombat.c
+++ b/wombat/wombat.c
@@ -29,6 +29,10 @@
#include "pas/pas-book-factory.h"
#include "pas/pas-backend-file.h"
+#include "pas/pas-backend-vcf.h"
+#ifdef HAVE_LDAP
+#include "pas/pas-backend-ldap.h"
+#endif
#include "calendar/pcs/cal-factory.h"
#include "calendar/pcs/cal-backend-file-events.h"
@@ -36,10 +40,6 @@
#include "wombat-interface-check.h"
-#ifdef HAVE_LDAP
-#include "pas/pas-backend-ldap.h"
-#endif
-
#define CAL_FACTORY_OAF_ID "OAFIID:GNOME_Evolution_Wombat_CalendarFactory"
#define PAS_BOOK_FACTORY_OAF_ID "OAFIID:GNOME_Evolution_Wombat_ServerFactory"
@@ -104,6 +104,9 @@ setup_pas (void)
pas_book_factory_register_backend (
pas_book_factory, "file", pas_backend_file_new);
+ pas_book_factory_register_backend (
+ pas_book_factory, "vcf", pas_backend_vcf_new);
+
#ifdef HAVE_LDAP
pas_book_factory_register_backend (
pas_book_factory, "ldap", pas_backend_ldap_new);