Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 425042 | Differences between
and this patch

Collapse All | Expand All

(-)Mesa-8.0.3.orig/src/gallium/auxiliary/util/u_debug_symbol.c (-1 / +1 lines)
Lines 151-157 Link Here
151
}
151
}
152
#endif
152
#endif
153
153
154
#ifdef __GLIBC__
154
#if defined(__GLIBC__)  && !defined(__UCLIBC__)
155
#include <execinfo.h>
155
#include <execinfo.h>
156
156
157
/* This can only provide dynamic symbols, or binary offsets into a file.
157
/* This can only provide dynamic symbols, or binary offsets into a file.
(-)Mesa-8.0.3.orig/src/glsl/strtod.c (-1 / +1 lines)
Lines 45-51 Link Here
45
glsl_strtod(const char *s, char **end)
45
glsl_strtod(const char *s, char **end)
46
{
46
{
47
#if defined(_GNU_SOURCE) && !defined(__CYGWIN__) && !defined(__FreeBSD__) && \
47
#if defined(_GNU_SOURCE) && !defined(__CYGWIN__) && !defined(__FreeBSD__) && \
48
   !defined(__HAIKU__)
48
   !defined(__HAIKU__) && !defined(__UCLIBC__)
49
   static locale_t loc = NULL;
49
   static locale_t loc = NULL;
50
   if (!loc) {
50
   if (!loc) {
51
      loc = newlocale(LC_CTYPE_MASK, "C", NULL);
51
      loc = newlocale(LC_CTYPE_MASK, "C", NULL);
(-)Mesa-8.0.3.orig/src/mesa/main/imports.c (-1 / +1 lines)
Lines 767-773 Link Here
767
_mesa_strtof( const char *s, char **end )
767
_mesa_strtof( const char *s, char **end )
768
{
768
{
769
#if defined(_GNU_SOURCE) && !defined(__CYGWIN__) && !defined(__FreeBSD__) && \
769
#if defined(_GNU_SOURCE) && !defined(__CYGWIN__) && !defined(__FreeBSD__) && \
770
   !defined(ANDROID) && !defined(__HAIKU__)
770
   !defined(ANDROID) && !defined(__HAIKU__) && !defined(__UCLIBC__)
771
   static locale_t loc = NULL;
771
   static locale_t loc = NULL;
772
   if (!loc) {
772
   if (!loc) {
773
      loc = newlocale(LC_CTYPE_MASK, "C", NULL);
773
      loc = newlocale(LC_CTYPE_MASK, "C", NULL);

Return to bug 425042