diff options
author | Dan Winship <danw@src.gnome.org> | 2000-07-25 09:38:08 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-07-25 09:38:08 +0800 |
commit | 9a6b1689a74bccedccd6ff45ce90a4124e394d56 (patch) | |
tree | 81482cc809ee741c398b3011638a1a554069e5c0 /mail/main.c | |
parent | c09bf799645c1e54e013f85fd4c9beba6704392a (diff) | |
download | gsoc2013-evolution-9a6b1689a74bccedccd6ff45ce90a4124e394d56.tar gsoc2013-evolution-9a6b1689a74bccedccd6ff45ce90a4124e394d56.tar.gz gsoc2013-evolution-9a6b1689a74bccedccd6ff45ce90a4124e394d56.tar.bz2 gsoc2013-evolution-9a6b1689a74bccedccd6ff45ce90a4124e394d56.tar.lz gsoc2013-evolution-9a6b1689a74bccedccd6ff45ce90a4124e394d56.tar.xz gsoc2013-evolution-9a6b1689a74bccedccd6ff45ce90a4124e394d56.tar.zst gsoc2013-evolution-9a6b1689a74bccedccd6ff45ce90a4124e394d56.zip |
Remove GOAD support.
* component-factory.c, folder-browser-factory.c, test-mail.c:
Remove GOAD support.
* main.c: Remove GOAD support.
(main): More "guess the build mistake" fun, this time for the
failure to initialize Bonobo case.
svn path=/trunk/; revision=4301
Diffstat (limited to 'mail/main.c')
-rw-r--r-- | mail/main.c | 61 |
1 files changed, 15 insertions, 46 deletions
diff --git a/mail/main.c b/mail/main.c index abfd5f9f27..c330f412e5 100644 --- a/mail/main.c +++ b/mail/main.c @@ -13,6 +13,7 @@ #include <bonobo/bonobo-object-directory.h> #include <glade/glade.h> #include <gconf/gconf.h> +#include <liboaf/liboaf.h> #include "e-util/e-gui-utils.h" #include "e-util/e-cursors.h" @@ -20,50 +21,6 @@ #include "component-factory.h" #include "mail.h" -#ifdef USING_OAF - -#include <liboaf/liboaf.h> - -static void -init_corba (int *argc, char *argv []) -{ - od_assert_using_oaf (); - gnome_init_with_popt_table ("evolution-mail-component", VERSION, - *argc, argv, oaf_popt_options, 0, NULL); - oaf_init (*argc, argv); -} - -#else /* USING_OAF */ - -#include <libgnorba/gnorba.h> - -static void -init_corba (int *argc, char *argv []) -{ - CORBA_Environment ev; - - od_assert_using_goad (); - CORBA_exception_init (&ev); - - gnome_CORBA_init_with_popt_table ( - "evolution-mail-component", "1.0", - argc, argv, NULL, 0, NULL, GNORBA_INIT_SERVER_FUNC, &ev); - - CORBA_exception_free (&ev); -} - -#endif /* USING_OAF */ - -static void -init_bonobo (void) -{ - if (bonobo_init (CORBA_OBJECT_NIL, CORBA_OBJECT_NIL, CORBA_OBJECT_NIL) == FALSE){ - e_notice (NULL, GNOME_MESSAGE_BOX_ERROR, - _("Mail Component: I could not initialize Bonobo")); - exit (1); - } -} - int main (int argc, char *argv []) { @@ -73,8 +30,20 @@ main (int argc, char *argv []) #ifdef USE_BROKEN_THREADS g_thread_init( NULL ); #endif - init_corba (&argc, argv); - init_bonobo (); + + od_assert_using_oaf (); + gnome_init_with_popt_table ("evolution-mail-component", VERSION, + argc, argv, oaf_popt_options, 0, NULL); + oaf_init (argc, argv); + + if (bonobo_init (CORBA_OBJECT_NIL, CORBA_OBJECT_NIL, + CORBA_OBJECT_NIL) == FALSE) { + g_error ("Mail component could not initialize Bonobo.\n" + "If there was a warning message about the " + "RootPOA, it probably means\nyou compiled " + "Bonobo against GOAD instead of OAF."); + } + gconf_init (argc, argv, NULL); glade_gnome_init (); |