cableguy67 wrote: > > Try this: > > svn co http://svn.easysw.com/public/fltk/fltk/branches/branch-1.1/ fltk-1.1 > > cd fltk-1.1 > > autoconf > > /configure --enable-cygwin --enable-threads --enable-gl --enable-localjpeg > --enable-localzlib --enable-localpng > > make > > make install
Please note: --enable-cygwin implies that the generated program will depend on cygwin1.dll. That might not be what (you or) the OP want(s). The (jpeg) error messages came from compiling libjeg, and if you have installed the cygwin libjpeg, autoconf will find it, and the compiler or linker will generate errors. Thus, my tip is: "./configure --enable-localjpeg --enable-localzlib --enable-localpng" without --enable-cygwin, if you want to generate native windows executables. If you use --enable-cygwin, and you have libjpeg, libpng, and zlib installed on your system, then it might be (I'm not sure) that it would work without "--enable-local*", but you would also generate dependencies on the cygwin dlls for these libraries. If you need, "--enable-threads --enable-gl" you can use these, too, but that shouldn't have anything to do with the error messages shown. Albrecht _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

