https://bugs.webkit.org/show_bug.cgi?id=37948
same here with latest ndk and poco 1.4.5, overwise it fails on
Foundation/include/Poco/FPEnvironment_DUMMY.h
to fix a problem
include
inline bool FPEnvironmentImpl::isInfiniteImpl(float value)
{
return std::isinf(value) != 0;
}
inline bool FPEnvironmentImpl::isInfiniteImpl(double value)
{
return std::isinf(value) != 0;
}
inline bool FPEnvironmentImpl::isInfiniteImpl(long double value)
{
return std::isinf((double) value) != 0;
}