summaryrefslogtreecommitdiff
path: root/src/mesa/main/imports.h
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2010-08-14 13:10:24 +0100
committerJosé Fonseca <jfonseca@vmware.com>2010-08-14 13:10:24 +0100
commit8881b0fe43540c44c1b6ba95d51651fc6b612ffb (patch)
treeb6c93224381a2341b3d27af8360ee155200b352a /src/mesa/main/imports.h
parent2322404b5537b04c111bb985e07826d6b898dbcf (diff)
mesa: Recent versions of MSVC define the single precision functions already.
Diffstat (limited to 'src/mesa/main/imports.h')
-rw-r--r--src/mesa/main/imports.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/imports.h b/src/mesa/main/imports.h
index 42eba33d25..a439370bc4 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))