diff options
author | Chad Versace <[email protected]> | 2011-08-15 13:29:15 -0700 |
---|---|---|
committer | Chad Versace <[email protected]> | 2011-08-16 14:03:48 -0700 |
commit | 3c9f172fe801a8e954a40affc38942b628b81bda (patch) | |
tree | 68c4304d30487950fbd5de5f23d5defe2df1738d /src/mesa/main/querymatrix.c | |
parent | bd064a49f119d126623c0e85702801e4cee62187 (diff) |
mesa: Add Android to list of platforms that define fpclassify()
This is a fix for the Android build.
Signed-off-by: Chad Versace <[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 944ad435f7a..eaedf7cd238 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(__sun) && defined(__GNUC__)) || defined(ANDROID) /* fpclassify is available. */ |