diff options
Diffstat (limited to 'meta/recipes-graphics/mesa')
-rw-r--r-- | meta/recipes-graphics/mesa/mesa-gl_10.5.4.bb (renamed from meta/recipes-graphics/mesa/mesa-gl_10.4.4.bb) | 2 | ||||
-rw-r--r-- | meta/recipes-graphics/mesa/mesa/0001-PTHREAD_MUTEX_RECURSIVE_NP-is-specific-to-glibc.patch | 29 | ||||
-rw-r--r-- | meta/recipes-graphics/mesa/mesa/0002-mesa-simplify-detection-of-fpclassify.patch | 53 | ||||
-rw-r--r-- | meta/recipes-graphics/mesa/mesa_10.5.4.bb (renamed from meta/recipes-graphics/mesa/mesa_10.4.4.bb) | 11 | ||||
-rw-r--r-- | meta/recipes-graphics/mesa/mesa_git.bb | 10 |
5 files changed, 12 insertions, 93 deletions
diff --git a/meta/recipes-graphics/mesa/mesa-gl_10.4.4.bb b/meta/recipes-graphics/mesa/mesa-gl_10.5.4.bb index 2acc21dce5..fc2bca9982 100644 --- a/meta/recipes-graphics/mesa/mesa-gl_10.4.4.bb +++ b/meta/recipes-graphics/mesa/mesa-gl_10.5.4.bb | |||
@@ -6,6 +6,8 @@ FILESEXTRAPATHS =. "${FILE_DIRNAME}/mesa:" | |||
6 | 6 | ||
7 | PROVIDES = "virtual/libgl virtual/mesa" | 7 | PROVIDES = "virtual/libgl virtual/mesa" |
8 | 8 | ||
9 | S = "${WORKDIR}/mesa-${PV}" | ||
10 | |||
9 | PACKAGECONFIG ??= "dri ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)}" | 11 | PACKAGECONFIG ??= "dri ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'x11', '', d)}" |
10 | 12 | ||
11 | EXCLUDE_FROM_WORLD = "1" | 13 | EXCLUDE_FROM_WORLD = "1" |
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 @@ | |||
1 | From 46cdd464efbada13478f5e39a50aef85599ff91b Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Sat, 4 Apr 2015 15:50:53 -0700 | ||
4 | Subject: [PATCH 1/2] PTHREAD_MUTEX_RECURSIVE_NP is specific to glibc | ||
5 | |||
6 | use glibc guard around it | ||
7 | |||
8 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
9 | Upstream-Status: Pending | ||
10 | --- | ||
11 | include/c11/threads_posix.h | 2 +- | ||
12 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
13 | |||
14 | diff --git a/include/c11/threads_posix.h b/include/c11/threads_posix.h | ||
15 | index 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 | -- | ||
28 | 2.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 @@ | |||
1 | From c09606093c6b8e47d7cb6745eff192184eaaae07 Mon Sep 17 00:00:00 2001 | ||
2 | From: Felix Janda <felix.janda@posteo.de> | ||
3 | Date: Fri, 23 Jan 2015 17:57:15 +0100 | ||
4 | Subject: [PATCH 2/2] mesa: simplify detection of fpclassify | ||
5 | |||
6 | Fixes compilation with musl libc. | ||
7 | |||
8 | Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> | ||
9 | Upstream-Status: Backport | ||
10 | --- | ||
11 | src/mesa/main/querymatrix.c | 18 +++++++----------- | ||
12 | 1 file changed, 7 insertions(+), 11 deletions(-) | ||
13 | |||
14 | diff --git a/src/mesa/main/querymatrix.c b/src/mesa/main/querymatrix.c | ||
15 | index 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 | -- | ||
52 | 2.1.4 | ||
53 | |||
diff --git a/meta/recipes-graphics/mesa/mesa_10.4.4.bb b/meta/recipes-graphics/mesa/mesa_10.5.4.bb index 7b22bb0d44..150c664ebf 100644 --- a/meta/recipes-graphics/mesa/mesa_10.4.4.bb +++ b/meta/recipes-graphics/mesa/mesa_10.5.4.bb | |||
@@ -1,14 +1,9 @@ | |||
1 | require ${BPN}.inc | 1 | require ${BPN}.inc |
2 | 2 | ||
3 | SRC_URI = "ftp://ftp.freedesktop.org/pub/mesa/${PV}/MesaLib-${PV}.tar.bz2 \ | 3 | SRC_URI = "ftp://ftp.freedesktop.org/pub/mesa/${PV}/mesa-${PV}.tar.xz" |
4 | file://0001-PTHREAD_MUTEX_RECURSIVE_NP-is-specific-to-glibc.patch \ | ||
5 | file://0002-mesa-simplify-detection-of-fpclassify.patch \ | ||
6 | " | ||
7 | 4 | ||
8 | SRC_URI[md5sum] = "62faf98ac79c5587f8e917e187419e6c" | 5 | SRC_URI[md5sum] = "26644437b6447fb3dbae50714a019797" |
9 | SRC_URI[sha256sum] = "f18a967e9c4d80e054b2fdff8c130ce6e6d1f8eecfc42c9f354f8628d8b4df1c" | 6 | SRC_URI[sha256sum] = "b51e723f3a20d842c88a92d809435b229fc4744ca0dbec0317d9d4a3ac4c6803" |
10 | |||
11 | S = "${WORKDIR}/Mesa-${PV}" | ||
12 | 7 | ||
13 | #because we cannot rely on the fact that all apps will use pkgconfig, | 8 | #because we cannot rely on the fact that all apps will use pkgconfig, |
14 | #make eglplatform.h independent of MESA_EGL_NO_X11_HEADER | 9 | #make eglplatform.h independent of MESA_EGL_NO_X11_HEADER |
diff --git a/meta/recipes-graphics/mesa/mesa_git.bb b/meta/recipes-graphics/mesa/mesa_git.bb index a6d2880be9..0260617742 100644 --- a/meta/recipes-graphics/mesa/mesa_git.bb +++ b/meta/recipes-graphics/mesa/mesa_git.bb | |||
@@ -2,13 +2,17 @@ require ${BPN}.inc | |||
2 | 2 | ||
3 | DEFAULT_PREFERENCE = "-1" | 3 | DEFAULT_PREFERENCE = "-1" |
4 | 4 | ||
5 | SRCREV = "62eb27ac8bbd979796f50e253f6c786d7d791242" | 5 | SRCREV = "ea0d1f575c214c09ba3df12644a960e86e031766" |
6 | PV = "10.4.4+git${SRCPV}" | 6 | PV = "10.5.4+git${SRCPV}" |
7 | 7 | ||
8 | SRC_URI = "git://anongit.freedesktop.org/git/mesa/mesa;branch=10.4" | 8 | SRC_URI = "git://anongit.freedesktop.org/git/mesa/mesa;branch=10.5" |
9 | 9 | ||
10 | S = "${WORKDIR}/git" | 10 | S = "${WORKDIR}/git" |
11 | 11 | ||
12 | DEPENDS += "python-mako-native" | ||
13 | |||
14 | inherit pythonnative | ||
15 | |||
12 | #because we cannot rely on the fact that all apps will use pkgconfig, | 16 | #because we cannot rely on the fact that all apps will use pkgconfig, |
13 | #make eglplatform.h independent of MESA_EGL_NO_X11_HEADER | 17 | #make eglplatform.h independent of MESA_EGL_NO_X11_HEADER |
14 | do_install_append() { | 18 | do_install_append() { |