If you are using the current Cygwin, the U32 will not be defined during the configuration process. This is a bug in Cygwin. Typedef'ing U32 to unsigned int is critical, because unsigned ints may be 64 bit on 64 bit CPUs, breaking your image code.
On Mar 3, 2007, at 4:56 PM, [EMAIL PROTECTED] wrote: > Author: dejan > Date: 2007-03-03 10:56:53 -0500 (Sat, 03 Mar 2007) > New Revision: 5726 > Log: > U32 type was not defined. > > > Modified: > trunk/src/x11/Image.cxx > > Modified: trunk/src/x11/Image.cxx > =================================================================== > --- trunk/src/x11/Image.cxx 2007-03-02 12:21:07 UTC (rev 5725) > +++ trunk/src/x11/Image.cxx 2007-03-03 15:56:53 UTC (rev 5726) > @@ -47,6 +47,8 @@ > > using namespace fltk; > > +typedef unsigned int U32; > + > /// Converter functions: > static void (*converter[9])(const uchar *from, uchar *to, int w); > > > _______________________________________________ > fltk-commit mailing list > [EMAIL PROTECTED] > http://lists.easysw.com/mailman/listinfo/fltk-commit ---- http://robowerk.com/ _______________________________________________ fltk-dev mailing list [EMAIL PROTECTED] http://lists.easysw.com/mailman/listinfo/fltk-dev
