> I checked many of the test executables, none of them depend > on the FLTK libs! are the libs just for development? > if the answer is yes, of course I don't need the cygwin FLTK > libs, I don't plan to develop for X11 soon. > some868one
You have linked static to the libs, so the compiler will have placed "static" copies of any bits it needed inside your executable. So in that case you do not need the DLL's. In general, if your app is small enough, this can be the easy way to go and saves you from having to worry about distributing supporting DLL's or etc to your end users. If you are not using the X11 support on windows, I'd suggest (as Albrecht already did) that you switch to mingw rather than using cygwin, as it is less painful to get configured for your target. 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

