diff options
author | Jon TURNEY <[email protected]> | 2010-05-07 18:59:53 +0100 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-05-07 14:36:13 -0600 |
commit | f350b106171795fec39ed47ef34a451949c84c33 (patch) | |
tree | d3ed18062439bb08f9ac1f0896036e3159cd5569 /src | |
parent | 12d74d6ba1b4dff0ebef68edf09a6f560eae3a65 (diff) |
mesa: fpclassify dummy definition is not needed on cygwin
fpclassify is provided by math.h
Signed-off-by: Jon TURNEY <[email protected]>
Signed-off-by: Brian Paul <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/querymatrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/querymatrix.c b/src/mesa/main/querymatrix.c index 4ecd275ca83..e5c08a64146 100644 --- a/src/mesa/main/querymatrix.c +++ b/src/mesa/main/querymatrix.c @@ -70,7 +70,7 @@ fpclassify(double x) } } -#elif defined(__APPLE__) +#elif defined(__APPLE__) || defined(__CYGWIN__) /* fpclassify is available. */ |