[5/5] libport: Add msvc isnan and isinf implementations

Alexandre Julliard julliard at winehq.org
Mon Aug 23 06:41:56 CDT 2010


Stefan Dösinger <stefan at 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.

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list