diff options
author | Vinson Lee <[email protected]> | 2010-05-05 00:49:25 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-05-05 00:49:25 -0700 |
commit | 8191e5ae65e9dc05727235a5dd5d96f00702b852 (patch) | |
tree | 306b2e88b8502213d07ec1de4dd27e2ffbbc8d33 /src/mesa/main/querymatrix.c | |
parent | bc751b5be0fa7d49875e0e8c8d3d311319e3f13a (diff) |
mesa: fpclassify dummy definition not needed on Mac OS X.
Diffstat (limited to 'src/mesa/main/querymatrix.c')
-rw-r--r-- | src/mesa/main/querymatrix.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/main/querymatrix.c b/src/mesa/main/querymatrix.c index 47e2934f217..4ecd275ca83 100644 --- a/src/mesa/main/querymatrix.c +++ b/src/mesa/main/querymatrix.c @@ -70,6 +70,10 @@ fpclassify(double x) } } +#elif defined(__APPLE__) + +/* fpclassify is available. */ + #elif !defined(_XOPEN_SOURCE) || _XOPEN_SOURCE < 600 enum {FP_NAN, FP_INFINITE, FP_ZERO, FP_SUBNORMAL, FP_NORMAL} |