removed main.c from the build.

2003-03-10  Not Zed  <NotZed@Ximian.com>

        * Makefile.am (libevolution_mail_la_SOURCES): removed main.c from
        the build.

        * component-factory.c (component_factory_init): Remove, not used
        anymore, causes linking problems some places.
        (factory): Removed the debug printf.

svn path=/trunk/; revision=20226
This commit is contained in:
Not Zed
2003-03-10 04:27:35 +00:00
committed by Michael Zucci
parent 67974fa1e0
commit bc78d367b0
4 changed files with 9 additions and 35 deletions

View File

@ -1,3 +1,12 @@
2003-03-10 Not Zed <NotZed@Ximian.com>
* Makefile.am (libevolution_mail_la_SOURCES): removed main.c from
the build.
* component-factory.c (component_factory_init): Remove, not used
anymore, causes linking problems some places.
(factory): Removed the debug printf.
2003-03-07 Jeffrey Stedfast <fejj@ximian.com>
All this snot just to fix bug #38925 and an attempt to fix bug

View File

@ -136,7 +136,6 @@ libevolution_mail_la_SOURCES = \
mail-vfolder.h \
message-browser.c \
message-browser.h \
main.c \
message-list.c \
message-list.h \
message-tag-editor.c \

View File

@ -1085,36 +1085,6 @@ create_component (void)
return BONOBO_OBJECT (shell_component);
}
void
component_factory_init (void)
{
BonoboObject *shell_component;
int result;
shell_component = create_component ();
result = bonobo_activation_active_server_register (COMPONENT_ID, bonobo_object_corba_objref (shell_component));
if (result == Bonobo_ACTIVATION_REG_ERROR) {
e_notice (NULL, GTK_MESSAGE_ERROR,
_("Cannot initialize the Evolution mail component."));
exit (1);
} else if (result == Bonobo_ACTIVATION_REG_ALREADY_ACTIVE) {
g_warning ("evolution-mail is already running");
exit (1);
}
if (evolution_mail_config_factory_init () == FALSE) {
e_notice (NULL, GTK_MESSAGE_ERROR,
_("Cannot initialize Evolution's mail config component."));
exit (1);
}
if (evolution_folder_info_factory_init () == FALSE) {
e_notice (NULL, GTK_MESSAGE_ERROR,
_("Cannot initialize Evolution's folder info component."));
exit (1);
}
}
static void
notify_listener (const Bonobo_Listener listener,
GNOME_Evolution_Storage_Result corba_result)
@ -1622,8 +1592,6 @@ factory (BonoboGenericFactory *factory,
const char *component_id,
void *closure)
{
printf("Activating component '%s'\n", component_id);
if (strcmp (component_id, COMPONENT_ID) == 0)
return create_component();
else if (strcmp(component_id, MAIL_CONFIG_IID) == 0)

View File

@ -26,6 +26,4 @@
#define COMPONENT_ID "OAFIID:GNOME_Evolution_Mail_ShellComponent"
#define SUMMARY_FACTORY_ID "OAFIID:GNOME_Evolution_Mail_ExecutiveSummaryComponentFactory"
void component_factory_init (void);
#endif