diff options
author | Alexander von Gluck <[email protected]> | 2011-12-27 09:15:36 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-12-27 09:16:56 -0700 |
commit | a3752fa63bf8b16524ef2840866445247044e07d (patch) | |
tree | bc7961c67739a39d755d61c8f91d18cab3d6511c /src/mesa/main/querymatrix.c | |
parent | 2e60c955c27c2bfed9bd73c465c9809968aefeb4 (diff) |
mesa: fpclassify is available on Haiku
Reviewed-by: Brian Paul <[email protected]>
Signed-off-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/querymatrix.c')
-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 eaedf7cd238..2843d5589c9 100644 --- a/src/mesa/main/querymatrix.c +++ b/src/mesa/main/querymatrix.c @@ -73,7 +73,7 @@ fpclassify(double x) #elif defined(__APPLE__) || defined(__CYGWIN__) || defined(__FreeBSD__) || \ defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__) || \ (defined(__sun) && defined(__C99FEATURES__)) || defined(__MINGW32__) || \ - (defined(__sun) && defined(__GNUC__)) || defined(ANDROID) + (defined(__sun) && defined(__GNUC__)) || defined(ANDROID) || defined(__HAIKU__) /* fpclassify is available. */ |