update for camel provider changes.

svn path=/trunk/; revision=2694
This commit is contained in:
Dan Winship
2000-04-30 16:29:00 +00:00
parent f028bd6aeb
commit e43958d242
5 changed files with 0 additions and 26 deletions

View File

@ -56,7 +56,6 @@ endif
noinst_PROGRAMS = \
test1 \
test2 \
test7 \
test10 \
test11 \
test13 \

View File

@ -49,7 +49,6 @@ int main (int argc, char **argv)
exit (1);
}
e_setup_base_dir ();
camel_provider_scan ();
session = camel_session_new (auth_callback);
ex = camel_exception_new ();

View File

@ -83,7 +83,6 @@ main (int argc, char**argv)
gtk_init (&argc, &argv);
camel_init ();
ex = camel_exception_new ();
camel_provider_register_as_module ("../camel/providers/mbox/.libs/libcamelmbox.so");
session = camel_session_new (auth_callback);
store = camel_session_get_store (session, store_url, ex);

View File

@ -78,7 +78,6 @@ main (int argc, char**argv)
gtk_init (&argc, &argv);
camel_init ();
ex = camel_exception_new ();
camel_provider_register_as_module ("../camel/providers/mbox/.libs/libcamelmbox.so.0");
sd = g_malloc0(sizeof(*sd));
sd->ex = ex;

View File

@ -1,22 +0,0 @@
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* test provider stuff */
#include "camel.h"
int
main (int argc, char**argv)
{
const CamelProvider *new_provider;
gtk_init (&argc, &argv);
camel_init ();
new_provider = camel_provider_register_as_module ("../camel/providers/MH/.libs/libcamelmh.so");
return 1;
}