diff options
Diffstat (limited to 'meta/recipes-graphics/mesa/mesa-git/uclibc.patch')
-rw-r--r-- | meta/recipes-graphics/mesa/mesa-git/uclibc.patch | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/meta/recipes-graphics/mesa/mesa-git/uclibc.patch b/meta/recipes-graphics/mesa/mesa-git/uclibc.patch deleted file mode 100644 index 0b031f9c35..0000000000 --- a/meta/recipes-graphics/mesa/mesa-git/uclibc.patch +++ /dev/null | |||
@@ -1,57 +0,0 @@ | |||
1 | Upstream-Status: Pending | ||
2 | |||
3 | From 904bd5127bd88f45abf4a376676e0a487cfb018a Mon Sep 17 00:00:00 2001 | ||
4 | From: Martin Jansa <Martin.Jansa@gmail.com> | ||
5 | Date: Thu, 13 Oct 2011 12:46:53 +0200 | ||
6 | Subject: [PATCH] configure: add check HAVE_NEWLOCALE to fix build with uclibc | ||
7 | |||
8 | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||
9 | --- | ||
10 | configure.ac | 3 +++ | ||
11 | src/glsl/strtod.c | 2 +- | ||
12 | src/mesa/main/imports.c | 2 +- | ||
13 | 3 files changed, 5 insertions(+), 2 deletions(-) | ||
14 | |||
15 | diff --git a/configure.ac b/configure.ac | ||
16 | index 49e81ad..468cfd7 100644 | ||
17 | --- a/configure.ac | ||
18 | +++ b/configure.ac | ||
19 | @@ -507,6 +507,9 @@ AC_SUBST([DLOPEN_LIBS]) | ||
20 | dnl See if posix_memalign is available | ||
21 | AC_CHECK_FUNC([posix_memalign], [DEFINES="$DEFINES -DHAVE_POSIX_MEMALIGN"]) | ||
22 | |||
23 | +dnl See if newlocale is available | ||
24 | +AC_CHECK_FUNCS_ONCE(newlocale) | ||
25 | + | ||
26 | dnl SELinux awareness. | ||
27 | AC_ARG_ENABLE([selinux], | ||
28 | [AS_HELP_STRING([--enable-selinux], | ||
29 | diff --git a/src/glsl/strtod.c b/src/glsl/strtod.c | ||
30 | index ff34591..88aa5ef 100644 | ||
31 | --- a/src/glsl/strtod.c | ||
32 | +++ b/src/glsl/strtod.c | ||
33 | @@ -44,7 +44,7 @@ | ||
34 | double | ||
35 | glsl_strtod(const char *s, char **end) | ||
36 | { | ||
37 | -#if defined(_GNU_SOURCE) && !defined(__CYGWIN__) && !defined(__FreeBSD__) | ||
38 | +#if defined(_GNU_SOURCE) && !defined(__CYGWIN__) && !defined(__FreeBSD__) && defined (HAVE_NEWLOCALE) | ||
39 | static locale_t loc = NULL; | ||
40 | if (!loc) { | ||
41 | loc = newlocale(LC_CTYPE_MASK, "C", NULL); | ||
42 | diff --git a/src/mesa/main/imports.c b/src/mesa/main/imports.c | ||
43 | index 345a1c5..493e0fb 100644 | ||
44 | --- a/src/mesa/main/imports.c | ||
45 | +++ b/src/mesa/main/imports.c | ||
46 | @@ -767,7 +767,7 @@ float | ||
47 | _mesa_strtof( const char *s, char **end ) | ||
48 | { | ||
49 | #if defined(_GNU_SOURCE) && !defined(__CYGWIN__) && !defined(__FreeBSD__) && \ | ||
50 | - !defined(ANDROID) | ||
51 | + !defined(ANDROID) && defined (HAVE_NEWLOCALE) | ||
52 | static locale_t loc = NULL; | ||
53 | if (!loc) { | ||
54 | loc = newlocale(LC_CTYPE_MASK, "C", NULL); | ||
55 | -- | ||
56 | 1.7.7 | ||
57 | |||