29 May
2005
29 May
'05
4:07 p.m.
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