Josep Berenguer wrote: > Since version fltk-2.0: 5568 not compile. > Results of make of Cigwin in OS Window XP (fltk-2.0 version 5963) > > gifImage.cxx: In member function 'virtual bool fltk::gifImage::fetch()': > gifImage.cxx:105: error: 'U32' undeclared (first use this function) > gifImage.cxx:105: error: expected ';' before "colormap" > gifImage.cxx:109: error: expected ';' before "r" > gifImage.cxx:110: error: expected ';' before "g" > gifImage.cxx:111: error: expected ';' before "b" > gifImage.cxx:112: error: 'r' undeclared (first use this function) > gifImage.cxx:112: error: 'g' undeclared (first use this function) > gifImage.cxx:112: error: 'b' undeclared (first use this function) > gifImage.cxx:181: error: expected ';' before "r" > gifImage.cxx:182: error: expected ';' before "g" > gifImage.cxx:183: error: expected ';' before "b" > gifImage.cxx:314: error: 'to' undeclared (first use this function) > gifImage.cxx:314: error: expected primery-expression before ')' token > make[1]: *** [gifImage.o] Error 1 > make: *** [all] Error 2 > > Please..... > Many thanks.
This has nothing to do with a specific FLTK version, it's a Cygwin/bash problem (did you upgrade your cygwin installation recently ?). Bash doesn't ignore CR by default, you must set the igncr option. Try this: set -o igncr && export SHELLOPTS ./configure This should help. Albrecht _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

