> It has compiled, but instead of getting *.lib or *.dll, they > have compiled as *.a files on windows xp, I thought the > autoconf would sort out the OS. > > What do I do now? :o)
Whether you get a .lib or a .a depends on the toolchain you are using, not on the target OS. All the gcc systems generate .a files, whereas the MSVC tools make .lib. They *are not* compatible (at least, not for C++ files, the archives of .c files more or less *are* compatible). So, now you have your .a files, you need to *also* build your other code using the gcc toolchain, then lik it against the .a's you have made. SELEX Sensors and Airborne Systems Limited 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

