diff options
author | Chad Versace <[email protected]> | 2011-08-15 13:26:21 -0700 |
---|---|---|
committer | Chad Versace <[email protected]> | 2011-08-16 13:43:15 -0700 |
commit | bd064a49f119d126623c0e85702801e4cee62187 (patch) | |
tree | fa9f739eaa3a79e6adcf9b802f9bf3d2fddf30e4 /src/mesa/main/imports.c | |
parent | eb0ff1a1c0f1978d867c748bf2525f717a56bfce (diff) |
mesa: Fix Android build by #ifdef'ing out locale support
Bionic does not support locales. This commit #ifdef's out the locale usage
in _mesa_strtof().
Signed-off-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/mesa/main/imports.c')
-rw-r--r-- | src/mesa/main/imports.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c index 0a572ec225d..8f097195922 100644 --- a/src/mesa/main/imports.c +++ b/src/mesa/main/imports.c @@ -753,7 +753,8 @@ _mesa_strdup( const char *s ) float _mesa_strtof( const char *s, char **end ) { -#if defined(_GNU_SOURCE) && !defined(__CYGWIN__) && !defined(__FreeBSD__) +#if defined(_GNU_SOURCE) && !defined(__CYGWIN__) && !defined(__FreeBSD__) && \ + !defined(ANDROID) static locale_t loc = NULL; if (!loc) { loc = newlocale(LC_CTYPE_MASK, "C", NULL); |