diff options
author | Jussi Kukkonen <jussi.kukkonen@intel.com> | 2016-05-12 10:20:33 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-13 13:41:26 +0100 |
commit | 5f6e5e45d565ead19e7072826167b098181871b6 (patch) | |
tree | 685bf9dba659614431996e9c42b166529152cfd0 /meta/recipes-graphics/xorg-lib | |
parent | c2ceef39735bd8d20cb97df0d6da60d46696057f (diff) | |
download | poky-5f6e5e45d565ead19e7072826167b098181871b6.tar.gz |
pixman: Upgrade 0.32.8 -> 0.34.0
Remove two patches that are no longer needed.
(From OE-Core rev: 7b8a99c2715583b48d1d3a1d9004c0607b99ddd1)
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/xorg-lib')
-rw-r--r-- | meta/recipes-graphics/xorg-lib/pixman/0001-v3-test-add-a-check-for-FE_DIVBYZERO.patch | 65 | ||||
-rw-r--r-- | meta/recipes-graphics/xorg-lib/pixman/mips-export-revert.patch | 22 | ||||
-rw-r--r-- | meta/recipes-graphics/xorg-lib/pixman_0.34.0.bb (renamed from meta/recipes-graphics/xorg-lib/pixman_0.32.8.bb) | 6 |
3 files changed, 2 insertions, 91 deletions
diff --git a/meta/recipes-graphics/xorg-lib/pixman/0001-v3-test-add-a-check-for-FE_DIVBYZERO.patch b/meta/recipes-graphics/xorg-lib/pixman/0001-v3-test-add-a-check-for-FE_DIVBYZERO.patch deleted file mode 100644 index 6b7c1e62a2..0000000000 --- a/meta/recipes-graphics/xorg-lib/pixman/0001-v3-test-add-a-check-for-FE_DIVBYZERO.patch +++ /dev/null | |||
@@ -1,65 +0,0 @@ | |||
1 | From fcd5eb9bd0e8674a6f4987a8fce7dc1ba8f9320c Mon Sep 17 00:00:00 2001 | ||
2 | From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | ||
3 | Date: Thu, 17 Sep 2015 03:08:36 +0200 | ||
4 | Subject: [PATCH] [v3] test: add a check for FE_DIVBYZERO | ||
5 | |||
6 | Some architectures, such as Microblaze and Nios2, currently do not | ||
7 | implement FE_DIVBYZERO, even though they have <fenv.h> and | ||
8 | feenableexcept(). This commit adds a configure.ac check to verify | ||
9 | whether FE_DIVBYZERO is defined or not, and if not, disables the | ||
10 | problematic code in test/utils.c. | ||
11 | |||
12 | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | ||
13 | Signed-off-by: Marek Vasut <marex@denx.de> | ||
14 | Upstream-Status: Backport [commit 4297e9058] | ||
15 | --- | ||
16 | Changes v1 -> v2: | ||
17 | |||
18 | * Use the ac_cv_have_decl_FE_DIVBYZERO variable, which is | ||
19 | automatically set by AC_CHECK_DECL, to decide whether or not | ||
20 | HAVE_FEDIVBYZERO should be defined. | ||
21 | |||
22 | Changes v2 -> v3: | ||
23 | |||
24 | * Use action-if-yes of AC_CHECK_DECL as suggested in | ||
25 | http://lists.freedesktop.org/archives/pixman/2014-February/003176.html | ||
26 | --- | ||
27 | configure.ac | 5 +++++ | ||
28 | test/utils.c | 2 ++ | ||
29 | 2 files changed, 7 insertions(+) | ||
30 | |||
31 | diff --git a/configure.ac b/configure.ac | ||
32 | index f93cc30..424bfd3 100644 | ||
33 | --- a/configure.ac | ||
34 | +++ b/configure.ac | ||
35 | @@ -891,6 +891,11 @@ if test x$have_feenableexcept = xyes; then | ||
36 | AC_DEFINE(HAVE_FEENABLEEXCEPT, 1, [Whether we have feenableexcept()]) | ||
37 | fi | ||
38 | |||
39 | +AC_CHECK_DECL([FE_DIVBYZERO], | ||
40 | + [AC_DEFINE(HAVE_FEDIVBYZERO, 1, [Whether we have FE_DIVBYZERO])], | ||
41 | + [], | ||
42 | + [[#include <fenv.h>]]) | ||
43 | + | ||
44 | AC_CHECK_FUNC(gettimeofday, have_gettimeofday=yes, have_gettimeofday=no) | ||
45 | AC_CHECK_HEADER(sys/time.h, have_sys_time_h=yes, have_sys_time_h=no) | ||
46 | if test x$have_gettimeofday = xyes && test x$have_sys_time_h = xyes; then | ||
47 | diff --git a/test/utils.c b/test/utils.c | ||
48 | index 222d4d5..8657966 100644 | ||
49 | --- a/test/utils.c | ||
50 | +++ b/test/utils.c | ||
51 | @@ -966,9 +966,11 @@ enable_divbyzero_exceptions (void) | ||
52 | { | ||
53 | #ifdef HAVE_FENV_H | ||
54 | #ifdef HAVE_FEENABLEEXCEPT | ||
55 | +#ifdef HAVE_FEDIVBYZERO | ||
56 | feenableexcept (FE_DIVBYZERO); | ||
57 | +#endif | ||
58 | #endif | ||
59 | #endif | ||
60 | } | ||
61 | |||
62 | void | ||
63 | -- | ||
64 | 2.1.4 | ||
65 | |||
diff --git a/meta/recipes-graphics/xorg-lib/pixman/mips-export-revert.patch b/meta/recipes-graphics/xorg-lib/pixman/mips-export-revert.patch deleted file mode 100644 index 14a5fd209b..0000000000 --- a/meta/recipes-graphics/xorg-lib/pixman/mips-export-revert.patch +++ /dev/null | |||
@@ -1,22 +0,0 @@ | |||
1 | Revert a commit in pixman 0.32.6 which breaks compliation on MIPS machines with | ||
2 | errors such as: | ||
3 | |||
4 | pixman-0.32.6/pixman/pixman-mips-dspr2-asm.S:4267: | ||
5 | Error: invalid operands `mflo $14,$ac3' | ||
6 | |||
7 | Upstream-Status: Pending | ||
8 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
9 | |||
10 | --- b/pixman/pixman-mips-dspr2-asm.h | ||
11 | +++ a/pixman/pixman-mips-dspr2-asm.h | ||
12 | @@ -72,10 +72,7 @@ | ||
13 | #define LEAF_MIPS32R2(symbol) \ | ||
14 | .globl symbol; \ | ||
15 | .align 2; \ | ||
16 | -#ifdef __ELF__ | ||
17 | - .hidden symbol; \ | ||
18 | .type symbol, @function; \ | ||
19 | -#endif | ||
20 | .ent symbol, 0; \ | ||
21 | symbol: .frame sp, 0, ra; \ | ||
22 | .set push; \ | ||
diff --git a/meta/recipes-graphics/xorg-lib/pixman_0.32.8.bb b/meta/recipes-graphics/xorg-lib/pixman_0.34.0.bb index 553ce369b7..87da5c2abc 100644 --- a/meta/recipes-graphics/xorg-lib/pixman_0.32.8.bb +++ b/meta/recipes-graphics/xorg-lib/pixman_0.34.0.bb | |||
@@ -31,12 +31,10 @@ EXTRA_OECONF_class-nativesdk = "--disable-gtk" | |||
31 | 31 | ||
32 | SRC_URI += "\ | 32 | SRC_URI += "\ |
33 | file://0001-ARM-qemu-related-workarounds-in-cpu-features-detecti.patch \ | 33 | file://0001-ARM-qemu-related-workarounds-in-cpu-features-detecti.patch \ |
34 | file://mips-export-revert.patch \ | ||
35 | file://asm_include.patch \ | 34 | file://asm_include.patch \ |
36 | file://0001-v3-test-add-a-check-for-FE_DIVBYZERO.patch \ | ||
37 | " | 35 | " |
38 | 36 | ||
39 | SRC_URI[md5sum] = "18d6b62abdb7bc0f8e6b0ddf48986b2c" | 37 | SRC_URI[md5sum] = "002a4fcb644ddfcb4b0e4191576a0d59" |
40 | SRC_URI[sha256sum] = "5c63dbb3523fc4d86ed4186677815918a941b7cb390d5eec4f55cb5d66b59fb1" | 38 | SRC_URI[sha256sum] = "39ba3438f3d17c464b0cb8be006dacbca0ab5aee97ebde69fec7ecdbf85794a0" |
41 | 39 | ||
42 | REQUIRED_DISTRO_FEATURES = "" | 40 | REQUIRED_DISTRO_FEATURES = "" |