Quote:
Originally Posted by Antartica
About the dillo2 port: the fixed font is installed (the X server won't start without it), so that error is strange.
|
Thanx for your detailed reply. I will try your patch files.
As to the fixed width font problem, I executed dillo2 in mrxvt, and it printed "bad font: variable" and stopped.
So I found the following code in fltk2's "Font_xlfd.cxx"
Code:
FontSize::FontSize(const char* name, const char* nname) {
this->name = nname ? nname : name;
font = XLoadQueryFont(xdisplay, name);
if (!font) {
warning("bad font: %s", name);
font = XLoadQueryFont(xdisplay, "fixed"); // if fixed fails we crash
}
encoding = 0;
opengl_id = 0;
}
You can see it said that "if fixed fails we crash".