summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Schmelzer2012-06-21 23:19:07 +0200
committerSebastian Schmelzer2012-06-21 23:19:07 +0200
commit463e9b8856215b44322cf1df5fd207ce1e920772 (patch)
tree432f8dae475dcaecdcd09f41878d0dab1e284485
parentMerge branch 'vendor' (diff)
downloadbuildroot-463e9b8856215b44322cf1df5fd207ce1e920772.tar.gz
buildroot-463e9b8856215b44322cf1df5fd207ce1e920772.tar.xz
buildroot-463e9b8856215b44322cf1df5fd207ce1e920772.zip
add patch for buildroot bug 3133
-rw-r--r--package/x11r7/mesa3d/mesa3d-bug-3133.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/package/x11r7/mesa3d/mesa3d-bug-3133.patch b/package/x11r7/mesa3d/mesa3d-bug-3133.patch
new file mode 100644
index 000000000..60dfda993
--- /dev/null
+++ b/package/x11r7/mesa3d/mesa3d-bug-3133.patch
@@ -0,0 +1,11 @@
+--- a/src/mesa/main/imports.c 2011-02-18 18:26:04.000000000 +0100
++++ bsrc/mesa/main/imports.c 2011-02-18 18:31:05.000000000 +0100
+@@ -915,7 +915,7 @@ _mesa_atoi(const char *s)
+ double
+ _mesa_strtod( const char *s, char **end )
+ {
+-#ifdef _GNU_SOURCE
++#if defined(_GNU_SOURCE) && !defined(__UCLIBC__)
+ static locale_t loc = NULL;
+ if (!loc) {
+ loc = newlocale(LC_CTYPE_MASK, "C", NULL);