Hello,
I was trying to build 1.4.4 in 32 bit mode on Solaris 11/GCC 4.7.1 and ran into some compiler errors in Foundation/src/NumberFormatter.cpp and Foundation/src/NumberParser.cpp files. These are both in the
#if defined(POCO_HAVE_INT64) && !defined(POCO_LONG_IS_64_BIT)
#endif
section. These have to do with syntax similar to the following:
std::sprintf(buffer, "%"I64_FMT"d", value);
I am not sure which compiler supports string concatenation in that format. I got around it my creating a temporary std::string with the concatenation (probably not the most efficient option), but the sources compile now.





