diff options
author | Jussi Kukkonen <jussi.kukkonen@intel.com> | 2016-10-21 13:22:11 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-10-28 16:15:21 +0100 |
commit | 19a2a59bc7afd412ab379d3611db0cd749d42fcb (patch) | |
tree | 7d0a2a0d78a51512c2d4c592ac4390e497838ba5 /meta/recipes-graphics | |
parent | 00a4f5f2b1fb235e6b8d794ed1e5982ac1aaa798 (diff) | |
download | poky-19a2a59bc7afd412ab379d3611db0cd749d42fcb.tar.gz |
libx11: Upgrade 1.6.3 -> 1.6.4
Maintenance release. libx11-xcb no longer links against libx11.
Remove backported patch.
(From OE-Core rev: cdba336f92e054d2edee81e16b507003d8a2032f)
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
3 files changed, 10 insertions, 83 deletions
diff --git a/meta/recipes-graphics/xorg-lib/libx11/libX11-Add-missing-NULL-check.patch b/meta/recipes-graphics/xorg-lib/libx11/libX11-Add-missing-NULL-check.patch deleted file mode 100644 index f2abf7c7a9..0000000000 --- a/meta/recipes-graphics/xorg-lib/libx11/libX11-Add-missing-NULL-check.patch +++ /dev/null | |||
@@ -1,72 +0,0 @@ | |||
1 | From 4d85d5f3bd8afac893738fd88e19d8cb5cf998ff Mon Sep 17 00:00:00 2001 | ||
2 | From: Drew Moseley <drew_moseley@mentor.com> | ||
3 | Date: Sun, 27 Jul 2014 13:10:07 -0400 | ||
4 | Subject: [PATCH] libX11: Add missing NULL check on im and im->methods | ||
5 | |||
6 | Upstream-Status: Backport (c827edcd1c4a7f920aa25208083b5b58d60d2b44) | ||
7 | Signed-off-by: Drew Moseley <drew_moseley@mentor.com> | ||
8 | |||
9 | --- | ||
10 | src/xlibi18n/ICWrap.c | 5 +++-- | ||
11 | 1 file changed, 3 insertions(+), 2 deletions(-) | ||
12 | |||
13 | diff -ru libX11-1.6.2-orig/src/xlibi18n/ICWrap.c libX11-1.6.2/src/xlibi18n/ICWrap.c | ||
14 | --- libX11-1.6.2-orig/src/xlibi18n/ICWrap.c 2014-07-27 13:38:29.586666449 -0400 | ||
15 | +++ libX11-1.6.2/src/xlibi18n/ICWrap.c 2014-07-27 13:41:39.671609030 -0400 | ||
16 | @@ -169,7 +169,7 @@ | ||
17 | va_list var; | ||
18 | int total_count; | ||
19 | XIMArg *args; | ||
20 | - char *ret; | ||
21 | + char *ret = NULL; | ||
22 | |||
23 | /* | ||
24 | * so count the stuff dangling here | ||
25 | @@ -185,7 +185,8 @@ | ||
26 | _XIMVaToNestedList(var, total_count, &args); | ||
27 | va_end(var); | ||
28 | |||
29 | - ret = (*im->methods->set_values) (im, args); | ||
30 | + if (im && im->methods) | ||
31 | + ret = (*im->methods->set_values) (im, args); | ||
32 | Xfree(args); | ||
33 | return ret; | ||
34 | } | ||
35 | @@ -196,7 +197,7 @@ | ||
36 | va_list var; | ||
37 | int total_count; | ||
38 | XIMArg *args; | ||
39 | - char *ret; | ||
40 | + char *ret = NULL; | ||
41 | |||
42 | /* | ||
43 | * so count the stuff dangling here | ||
44 | @@ -212,7 +213,8 @@ | ||
45 | _XIMVaToNestedList(var, total_count, &args); | ||
46 | va_end(var); | ||
47 | |||
48 | - ret = (*im->methods->get_values) (im, args); | ||
49 | + if (im && im->methods) | ||
50 | + ret = (*im->methods->get_values) (im, args); | ||
51 | Xfree(args); | ||
52 | return ret; | ||
53 | } | ||
54 | @@ -228,7 +230,7 @@ | ||
55 | va_list var; | ||
56 | int total_count; | ||
57 | XIMArg *args; | ||
58 | - XIC ic; | ||
59 | + XIC ic = NULL; | ||
60 | |||
61 | /* | ||
62 | * so count the stuff dangling here | ||
63 | @@ -244,7 +246,8 @@ | ||
64 | _XIMVaToNestedList(var, total_count, &args); | ||
65 | va_end(var); | ||
66 | |||
67 | - ic = (XIC) (*im->methods->create_ic) (im, args); | ||
68 | + if (im && im->methods) | ||
69 | + ic = (XIC) (*im->methods->create_ic) (im, args); | ||
70 | Xfree(args); | ||
71 | if (ic) { | ||
72 | ic->core.next = im->core.ic_chain; | ||
diff --git a/meta/recipes-graphics/xorg-lib/libx11_1.6.3.bb b/meta/recipes-graphics/xorg-lib/libx11_1.6.3.bb deleted file mode 100644 index 8e531c7456..0000000000 --- a/meta/recipes-graphics/xorg-lib/libx11_1.6.3.bb +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | require libx11.inc | ||
2 | inherit gettext | ||
3 | |||
4 | BBCLASSEXTEND = "native nativesdk" | ||
5 | |||
6 | SRC_URI += "file://disable_tests.patch \ | ||
7 | file://libX11-Add-missing-NULL-check.patch \ | ||
8 | " | ||
9 | |||
10 | SRC_URI[md5sum] = "2e36b73f8a42143142dda8129f02e4e0" | ||
11 | SRC_URI[sha256sum] = "cf31a7c39f2f52e8ebd0db95640384e63451f9b014eed2bb7f5de03e8adc8111" | ||
diff --git a/meta/recipes-graphics/xorg-lib/libx11_1.6.4.bb b/meta/recipes-graphics/xorg-lib/libx11_1.6.4.bb new file mode 100644 index 0000000000..caa95fb48a --- /dev/null +++ b/meta/recipes-graphics/xorg-lib/libx11_1.6.4.bb | |||
@@ -0,0 +1,10 @@ | |||
1 | require libx11.inc | ||
2 | inherit gettext | ||
3 | |||
4 | BBCLASSEXTEND = "native nativesdk" | ||
5 | |||
6 | SRC_URI += "file://disable_tests.patch \ | ||
7 | " | ||
8 | |||
9 | SRC_URI[md5sum] = "6d54227082f3aa2c596f0b3a3fbb9175" | ||
10 | SRC_URI[sha256sum] = "b7c748be3aa16ec2cbd81edc847e9b6ee03f88143ab270fb59f58a044d34e441" | ||