A friend of mine put this other workaround at the bottom of the frontend/xsane.c
for xsane to compile on my machine (I'm also using Gimp 1.0.2, that wich
came with the Suse 6.0) :
----------------------------
#undef g_message
#undef g_debug
#undef g_warning
#undef g_error
void g_message (char *s)
{
printf ("Msg : %s\n", s);
}
void g_debug (char *s)
{
printf ("Dbg : %s\n", s);
}
void g_warning (char *s)
{
printf ("War : %s\n", s);
}
void g_error (char *s)
{
printf ("Error : %s\n", s);
}
------------------------------------------------
Works great.
--
J.-F. STRAETEN
--- Mutt 0.93.1i. Powered by SuSE Linux.
-- Source code, list archive, and docs: http://www.mostang.com/sane/ To unsubscribe: echo unsubscribe sane-devel | mail majordomo@mostang.com