Since you'll all be using X11R6, you won't have caught this bug in bmtable.c,
causing compilation to fail with X11R5.
There are no parameter names in the function argument list!
line 311:
void fl_set_bmtable_file(FL_OBJECT *, int, int, char const *)
{
fprintf(stderr, "Set bmtable file: Sorry, I need X11 release 6 to do "
"work!\n");
}
Cured with:
void fl_set_bmtable_file(FL_OBJECT *ob, int nx, int ny, char const *filename)
{
fprintf(stderr, "Set bmtable file: Sorry, I need X11 release 6 to do "
"work!\n");
}
Angus
Perhaps I should subscribe to this mailing list after all!
A