> Anybody know what I'm doing wrong? No idea - not enough context... an example of the link line you are using in your build might help?
My guess would be that you are linking things in the wrong order... Note that many linkers (the gcc ones for example) are sensitive to the order in which things are linked (the user of a function must be listed before the lib that provides that function, in general.) If your build was succesful, then the "fltk-config" script will have been created and you can use that to determine what linker options you should be using. Try this in your Msys shell: cd into the fltk build dir ./fltk-config --ldstaticflags And that will tell wyou what libs and paths you need to set, and in what order. You can also do: fltk-config --use-gl --use-images --ldstaticflags If you need GL and image support... And many other neat little tricks... http://www.fltk.org/articles.php?L599 SELEX Galileo Ltd Registered Office: Sigma House, Christopher Martin Road, Basildon, Essex SS14 3EL A company registered in England & Wales. Company no. 02426132 ******************************************************************** This email and any attachments are confidential to the intended recipient and may also be privileged. If you are not the intended recipient please delete it from your system and notify the sender. You should not copy it or use it for any purpose nor disclose or distribute its contents to any other person. ******************************************************************** _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

