Hi All,

After struggling for more than a week to build Evo from trunk, I finally
got Evo built successfully (had to do ugly sym linking to build it
though) but now Evo won't start for me.

$ evolution-2.10
Generating profiling data in `eprofile.4829'

(evolution-2.10:4829): e-utils-WARNING **: can't load plugin 
'/opt/gnome2/lib/evolution/2.10/plugins/liborg-gnome-groupwise-features.so: 
undefined symbol: _'

I was stumped by that error, and started looking at the code after
wearing my debugging cap. I found that junk-settings.c was the culprit
(`nm .libs/*.o`) Looking at the recent changes to junk-settings.c, I
could revert one of the changes to get things working again. Attached is
the patch that I used to get things working again.

I could be wrong here, but It Works For Me (TM). :)

Thanks,
Srinidhi.
-- 
ASCII ribbon campaign ( )            B S Srinidhi
 - against HTML email  X             http://www.srinidhi-is.in
             & vCards / \            Bangalore

Index: junk-settings.c
===================================================================
--- junk-settings.c	(revision 33172)
+++ junk-settings.c	(working copy)
@@ -421,7 +421,7 @@
 	gtk_widget_show (GTK_WIDGET (js->entry_list));
 
 	js->cell = gtk_cell_renderer_text_new ();
-	js->column = gtk_tree_view_column_new_with_attributes (_("Email"), js->cell, "text", 0, NULL);
+	js->column = gtk_tree_view_column_new_with_attributes ("Email", js->cell, "text", 0, NULL);
 	gtk_tree_view_append_column (GTK_TREE_VIEW (js->entry_list),
 			GTK_TREE_VIEW_COLUMN (js->column));
 
_______________________________________________
Evolution-list mailing list
Evolution-list@gnome.org
http://mail.gnome.org/mailman/listinfo/evolution-list

Reply via email to