Stefan Dösinger stefan@codeweavers.com writes:
@@ -31,6 +31,14 @@ int isinf(double x) return (!(finite(x) || isnand(x))); }
+#elif defined(HAVE_FLOAT_H) && defined(_MSC_VER) +#include <float.h>
You should use proper configure checks instead of _MSC_VER, like we do for other similar cases.