Great! I'll try to compile 0.5.9 tonight and hopefully can update the contrib package.
[div align=\"right\"][a href=\"index.php?act=findpost&pid=138271\"][{POST_SNAPBACK}][/a][/div]
Unfortunately, it doesn't work for me  
But, while debugging grisbi 1.5.9, i've found that import "segmentation fault" happends in import.c when calling a gtk function (see below in bold characters)
void selection_fichiers_import ( void )
{
    GtkWidget *fenetre;
    fenetre = gtk_file_selection_new ( _("Select files to import") );
    gtk_window_set_transient_for ( GTK_WINDOW ( fenetre ),
                                   GTK_WINDOW ( window ));
    gtk_window_set_modal ( GTK_WINDOW ( fenetre ),
                           TRUE );    
gtk_file_selection_set_select_multiple ( GTK_FILE_SELECTION ( fenetre ), TRUE );    file_selection_set_filename ( GTK_FILE_SELECTION ( fenetre ),
                                      dernier_chemin_de_travail ); 
...
If I put this line in comments (/* */), import works 
but multi-selection of files is (of course) no more allowed.
So, it seems to be a gtk problem.
By the way, Meanie, I saw in your feed that you've hacked gtk2.
Can you tell me why ?
Is it for pdaXqtrom ?
Thanks
plcg