diff options
author | Vinson Lee <vlee@vmware.com> | 2010-07-23 16:24:35 -0700 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-07-23 16:24:35 -0700 |
commit | 658fc7539d6befaa48e69496097d383048af9173 (patch) | |
tree | fa744aaf1ff46b44556bd84307f08e4ac6725f52 /src/mesa/main/imports.c | |
parent | 1874cb7e82a566079219a571d6a30a74581c611e (diff) | |
download | external_mesa3d-658fc7539d6befaa48e69496097d383048af9173.zip external_mesa3d-658fc7539d6befaa48e69496097d383048af9173.tar.gz external_mesa3d-658fc7539d6befaa48e69496097d383048af9173.tar.bz2 |
mesa: Fix Cygwin build with llvm enabled.
On Cygwin locale_t in not available but 'llvm-config --cppflags' adds
the compiler flag -D_GNU_SOURCE to the build.
Diffstat (limited to 'src/mesa/main/imports.c')
-rw-r--r-- | src/mesa/main/imports.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c index 25080db..c399351 100644 --- a/src/mesa/main/imports.c +++ b/src/mesa/main/imports.c @@ -756,7 +756,7 @@ _mesa_strdup( const char *s ) float _mesa_strtof( const char *s, char **end ) { -#ifdef _GNU_SOURCE +#if defined(_GNU_SOURCE) && !defined(__CYGWIN__) static locale_t loc = NULL; if (!loc) { loc = newlocale(LC_CTYPE_MASK, "C", NULL); |