Hi Greg Thanks for you detailed answer
I was using 1.0 but tried again with 1.0.11 based on your experiences. I made all the changes you outlined but I don't fully understand what the underlying issue was. Does the older version have trouble with type casting with more current compilers? This is the offending line I am trying to resolve now in filename_list.cxx: return scandir(d, list, 0, (int(*)(const void*,const void*))numericsort); In the FLTK archives it mentioned changing the line to this: return scandir(d, list, 0, (int(*)(void*,void*))numericsort); but it did not seem to help. I believe the function this is a return for is prepping arguments for scandir. I have tried searching for the error "/usr/include/dirent.h:256:12: error:" and scandir but I have not located anything I can understand, mostly just snippets from pastebin etc. I am using svn, version 1.6.17 (r1128011) If you could help me understand the underlying type casting issues, I hope I won't have to bother you again. Thanks again for your previous answer-Patrick _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

