From: José Fonseca Date: Sat, 14 Aug 2010 12:10:24 +0000 (+0100) Subject: mesa: Recent versions of MSVC define the single precision functions already. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8881b0fe43540c44c1b6ba95d51651fc6b612ffb;p=mesa.git mesa: Recent versions of MSVC define the single precision functions already. --- diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h index 42eba33d258..a439370bc4c 100644 --- a/src/mesa/main/imports.h +++ b/src/mesa/main/imports.h @@ -121,7 +121,8 @@ typedef union { GLfloat f; GLint i; } fi_type; */ /*@{*/ #if (_XOPEN_SOURCE < 600) && !defined(_ISOC99_SOURCE) \ - && (!defined(__STDC_VERSION__) || (__STDC_VERSION__ < 199901L)) + && (!defined(__STDC_VERSION__) || (__STDC_VERSION__ < 199901L)) \ + && (!defined(_MSC_VER) || (_MSC_VER < 1400)) #define acosf(f) ((float) acos(f)) #define asinf(f) ((float) asin(f)) #define atan2f(x,y) ((float) atan2(x,y))