DO NOT REPLY TO THIS MESSAGE. INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.
[STR New] Link: http://www.fltk.org/str.php?L2222 Version: 1.3-current Actually, now I've written it, that conditional compilation check looks wrong. SOmethng more like: #if (__GLIBC__ > 2) || ((__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 10)) stop = strchr((char *)font, ','); #else stop = strchr((const char *)font, ','); #endif might be better. The prior version would fail once we get to glibc-3.0, obviously, and that would be a Bad Thing. I'm assuming that glibc-3.x will still have the new format and will not revert to the old format, of course... -- Ian Link: http://www.fltk.org/str.php?L2222 Version: 1.3-current _______________________________________________ fltk-bugs mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk-bugs
