summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/mesa/mesa
diff options
context:
space:
mode:
authorJussi Kukkonen <jussi.kukkonen@intel.com>2015-04-29 16:33:20 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-04-30 23:04:12 +0100
commitf2db690d8d518f90c362f9874d24f4b4b22fd9d2 (patch)
tree40c70a8c71c1ad46ef1c66e913586deea118b1a2 /meta/recipes-graphics/mesa/mesa
parent44f5b0e449417f21f2559bc2e6906985cae1f802 (diff)
downloadpoky-f2db690d8d518f90c362f9874d24f4b4b22fd9d2.tar.gz
mesa: Upgrade 10.4.4 -> 10.5.4
* Remove patches that are no longer needed * git build depends on python module mako. Inherit pythonnative for this * source directory changed: default S is now correct in mesa recipe, but still needs to be set in mesa-gl (From OE-Core rev: b3035cac6f505fda2bea31da63ab381b104cfd2e) Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/mesa/mesa')
-rw-r--r--meta/recipes-graphics/mesa/mesa/0001-PTHREAD_MUTEX_RECURSIVE_NP-is-specific-to-glibc.patch29
-rw-r--r--meta/recipes-graphics/mesa/mesa/0002-mesa-simplify-detection-of-fpclassify.patch53
2 files changed, 0 insertions, 82 deletions
diff --git a/meta/recipes-graphics/mesa/mesa/0001-PTHREAD_MUTEX_RECURSIVE_NP-is-specific-to-glibc.patch b/meta/recipes-graphics/mesa/mesa/0001-PTHREAD_MUTEX_RECURSIVE_NP-is-specific-to-glibc.patch
deleted file mode 100644
index 52443d8422..0000000000
--- a/meta/recipes-graphics/mesa/mesa/0001-PTHREAD_MUTEX_RECURSIVE_NP-is-specific-to-glibc.patch
+++ /dev/null
@@ -1,29 +0,0 @@
1From 46cdd464efbada13478f5e39a50aef85599ff91b Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Sat, 4 Apr 2015 15:50:53 -0700
4Subject: [PATCH 1/2] PTHREAD_MUTEX_RECURSIVE_NP is specific to glibc
5
6use glibc guard around it
7
8Signed-off-by: Khem Raj <raj.khem@gmail.com>
9Upstream-Status: Pending
10---
11 include/c11/threads_posix.h | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14diff --git a/include/c11/threads_posix.h b/include/c11/threads_posix.h
15index f9c165d..c641de4 100644
16--- a/include/c11/threads_posix.h
17+++ b/include/c11/threads_posix.h
18@@ -178,7 +178,7 @@ mtx_init(mtx_t *mtx, int type)
19 return thrd_error;
20 pthread_mutexattr_init(&attr);
21 if ((type & mtx_recursive) != 0) {
22-#if defined(__linux__) || defined(__linux)
23+#if defined __GLIBC__ && (defined(__linux__) || defined(__linux))
24 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE_NP);
25 #else
26 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
27--
282.1.4
29
diff --git a/meta/recipes-graphics/mesa/mesa/0002-mesa-simplify-detection-of-fpclassify.patch b/meta/recipes-graphics/mesa/mesa/0002-mesa-simplify-detection-of-fpclassify.patch
deleted file mode 100644
index dd7a188a2f..0000000000
--- a/meta/recipes-graphics/mesa/mesa/0002-mesa-simplify-detection-of-fpclassify.patch
+++ /dev/null
@@ -1,53 +0,0 @@
1From c09606093c6b8e47d7cb6745eff192184eaaae07 Mon Sep 17 00:00:00 2001
2From: Felix Janda <felix.janda@posteo.de>
3Date: Fri, 23 Jan 2015 17:57:15 +0100
4Subject: [PATCH 2/2] mesa: simplify detection of fpclassify
5
6Fixes compilation with musl libc.
7
8Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
9Upstream-Status: Backport
10---
11 src/mesa/main/querymatrix.c | 18 +++++++-----------
12 1 file changed, 7 insertions(+), 11 deletions(-)
13
14diff --git a/src/mesa/main/querymatrix.c b/src/mesa/main/querymatrix.c
15index eb36c76..ef85175 100644
16--- a/src/mesa/main/querymatrix.c
17+++ b/src/mesa/main/querymatrix.c
18@@ -37,8 +37,12 @@
19 #define INT_TO_FIXED(x) ((GLfixed) ((x) << 16))
20 #define FLOAT_TO_FIXED(x) ((GLfixed) ((x) * 65536.0))
21
22-#if defined(_MSC_VER)
23-#if _MSC_VER < 1800 /* Not required on VS2013 and above. */
24+#if defined(fpclassify)
25+/* ISO C99 says that fpclassify is a macro. Assume that any implementation
26+ * of fpclassify, whether it's in a C99 compiler or not, will be a macro.
27+ */
28+#elif defined(_MSC_VER)
29+/* Not required on VS2013 and above. */
30 /* Oddly, the fpclassify() function doesn't exist in such a form
31 * on MSVC. This is an implementation using slightly different
32 * lower-level Windows functions.
33@@ -71,16 +75,8 @@ fpclassify(double x)
34 return FP_NAN;
35 }
36 }
37-#endif /* _MSC_VER < 1800 */
38-
39-#elif defined(__APPLE__) || defined(__CYGWIN__) || defined(__FreeBSD__) || \
40- defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__) || \
41- (defined(__sun) && defined(__C99FEATURES__)) || defined(__MINGW32__) || \
42- (defined(__sun) && defined(__GNUC__)) || defined(ANDROID) || defined(__HAIKU__)
43-
44-/* fpclassify is available. */
45
46-#elif !defined(_XOPEN_SOURCE) || _XOPEN_SOURCE < 600
47+#else
48
49 enum {FP_NAN, FP_INFINITE, FP_ZERO, FP_SUBNORMAL, FP_NORMAL}
50 fpclassify(double x)
51--
522.1.4
53