Bryce Harrington wrote:
On Sun, May 29, 2005 at 05:10:09PM +0200, Franz Haeuslschmid wrote:
Hello,
Hiya Franz
I'm lately trying to compile inkscape using the latest edition of cygwin. However the build process is permanently aborting:
object-edit.cpp:846: error: `isfinite' undeclared in namespace `std'
Any ideas?
Hmm, it sort of sounds like you need the Standard C++ Template Library installed. isfinite is one of its functions. Not sure exactly what you have to do to get that installed under Cygnus, but I'm sure someone's documented it.
FYI, if you look at the code, line 846 of object-edit.cpp refers to 'isFinite', which is defined in isnan.h for WIN32 to be std::isfinite.
Hope this helps, Bryce
Actually, this is probably defined under gcc/cygwin, and you might check to find out what Cygwin's flavor is. If you get it to work, please let us know, and we will add another switch for #ifdef CYGWIN.
Bob