diff options
author | Laurentiu Palcu <laurentiu.palcu@intel.com> | 2012-07-04 10:28:20 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-09 16:58:55 +0100 |
commit | 9d2e665d71a2c358f4c9e52df961fc13127ebdd4 (patch) | |
tree | c36667b47d364a0c689c75ea36e6dc864616a726 /meta/recipes-graphics | |
parent | 0ae18875766d983eddf6680a4259a26bb53ad1a0 (diff) | |
download | poky-9d2e665d71a2c358f4c9e52df961fc13127ebdd4.tar.gz |
libx11: upgrade to 1.5.0
Removed one backported patch.
(From OE-Core rev: 52d4ff7b35602faa52360a3e7a800891ef60c739)
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r-- | meta/recipes-graphics/xorg-lib/libx11-1.4.4/0001-Add-_XGetRequest-as-substitute-for-GetReq-GetReqExtr.patch | 137 | ||||
-rw-r--r-- | meta/recipes-graphics/xorg-lib/libx11-1.5.0/keysymdef_include.patch (renamed from meta/recipes-graphics/xorg-lib/libx11-1.4.4/keysymdef_include.patch) | 0 | ||||
-rw-r--r-- | meta/recipes-graphics/xorg-lib/libx11-1.5.0/makekeys_crosscompile.patch (renamed from meta/recipes-graphics/xorg-lib/libx11-1.4.4/makekeys_crosscompile.patch) | 0 | ||||
-rw-r--r-- | meta/recipes-graphics/xorg-lib/libx11-1.5.0/x11_disable_makekeys.patch (renamed from meta/recipes-graphics/xorg-lib/libx11-1.4.4/x11_disable_makekeys.patch) | 13 | ||||
-rw-r--r-- | meta/recipes-graphics/xorg-lib/libx11_1.5.0.bb (renamed from meta/recipes-graphics/xorg-lib/libx11_1.4.4.bb) | 7 |
5 files changed, 11 insertions, 146 deletions
diff --git a/meta/recipes-graphics/xorg-lib/libx11-1.4.4/0001-Add-_XGetRequest-as-substitute-for-GetReq-GetReqExtr.patch b/meta/recipes-graphics/xorg-lib/libx11-1.4.4/0001-Add-_XGetRequest-as-substitute-for-GetReq-GetReqExtr.patch deleted file mode 100644 index aedb5c4366..0000000000 --- a/meta/recipes-graphics/xorg-lib/libx11-1.4.4/0001-Add-_XGetRequest-as-substitute-for-GetReq-GetReqExtr.patch +++ /dev/null | |||
@@ -1,137 +0,0 @@ | |||
1 | From 4a060f993bf676cf21ad9784e010f54134da7b40 Mon Sep 17 00:00:00 2001 | ||
2 | From: Peter Hutterer <peter.hutterer@who-t.net> | ||
3 | Date: Mon, 17 Oct 2011 09:45:15 +1000 | ||
4 | Subject: [PATCH] Add _XGetRequest as substitute for GetReq/GetReqExtra | ||
5 | |||
6 | Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> | ||
7 | Reviewed-by: Jamey Sharp <jamey@minilop.net> | ||
8 | --- | ||
9 | include/X11/Xlibint.h | 49 ++++++++++++++++--------------------------------- | ||
10 | src/XlibInt.c | 31 +++++++++++++++++++++++++++++++ | ||
11 | 2 files changed, 47 insertions(+), 33 deletions(-) | ||
12 | |||
13 | Upstream-Status: Backport | ||
14 | |||
15 | diff --git a/include/X11/Xlibint.h b/include/X11/Xlibint.h | ||
16 | index 2ce356d..43d1f2a 100644 | ||
17 | --- a/include/X11/Xlibint.h | ||
18 | +++ b/include/X11/Xlibint.h | ||
19 | @@ -420,6 +420,18 @@ extern LockInfoPtr _Xglobal_lock; | ||
20 | #define WORD64ALIGN | ||
21 | #endif /* WORD64 */ | ||
22 | |||
23 | +/** | ||
24 | + * Return a len-sized request buffer for the request type. This function may | ||
25 | + * flush the output queue. | ||
26 | + * | ||
27 | + * @param dpy The display connection | ||
28 | + * @param type The request type | ||
29 | + * @param len Length of the request in bytes | ||
30 | + * | ||
31 | + * @returns A pointer to the request buffer with a few default values | ||
32 | + * initialized. | ||
33 | + */ | ||
34 | +extern void *_XGetRequest(Display *dpy, CARD8 type, size_t len); | ||
35 | |||
36 | /* | ||
37 | * GetReq - Get the next available X request packet in the buffer and | ||
38 | @@ -432,25 +444,10 @@ extern LockInfoPtr _Xglobal_lock; | ||
39 | |||
40 | #if !defined(UNIXCPP) || defined(ANSICPP) | ||
41 | #define GetReq(name, req) \ | ||
42 | - WORD64ALIGN\ | ||
43 | - if ((dpy->bufptr + SIZEOF(x##name##Req)) > dpy->bufmax)\ | ||
44 | - _XFlush(dpy);\ | ||
45 | - req = (x##name##Req *)(dpy->last_req = dpy->bufptr);\ | ||
46 | - req->reqType = X_##name;\ | ||
47 | - req->length = (SIZEOF(x##name##Req))>>2;\ | ||
48 | - dpy->bufptr += SIZEOF(x##name##Req);\ | ||
49 | - dpy->request++ | ||
50 | - | ||
51 | + req = (x##name##Req *) _XGetRequest(dpy, X_##name, SIZEOF(x##name##Req)) | ||
52 | #else /* non-ANSI C uses empty comment instead of "##" for token concatenation */ | ||
53 | #define GetReq(name, req) \ | ||
54 | - WORD64ALIGN\ | ||
55 | - if ((dpy->bufptr + SIZEOF(x/**/name/**/Req)) > dpy->bufmax)\ | ||
56 | - _XFlush(dpy);\ | ||
57 | - req = (x/**/name/**/Req *)(dpy->last_req = dpy->bufptr);\ | ||
58 | - req->reqType = X_/**/name;\ | ||
59 | - req->length = (SIZEOF(x/**/name/**/Req))>>2;\ | ||
60 | - dpy->bufptr += SIZEOF(x/**/name/**/Req);\ | ||
61 | - dpy->request++ | ||
62 | + req = (x/**/name/**/Req *) _XGetRequest(dpy, X_/**/name, SIZEOF(x/**/name/**/Req)) | ||
63 | #endif | ||
64 | |||
65 | /* GetReqExtra is the same as GetReq, but allocates "n" additional | ||
66 | @@ -458,24 +455,10 @@ extern LockInfoPtr _Xglobal_lock; | ||
67 | |||
68 | #if !defined(UNIXCPP) || defined(ANSICPP) | ||
69 | #define GetReqExtra(name, n, req) \ | ||
70 | - WORD64ALIGN\ | ||
71 | - if ((dpy->bufptr + SIZEOF(x##name##Req) + n) > dpy->bufmax)\ | ||
72 | - _XFlush(dpy);\ | ||
73 | - req = (x##name##Req *)(dpy->last_req = dpy->bufptr);\ | ||
74 | - req->reqType = X_##name;\ | ||
75 | - req->length = (SIZEOF(x##name##Req) + n)>>2;\ | ||
76 | - dpy->bufptr += SIZEOF(x##name##Req) + n;\ | ||
77 | - dpy->request++ | ||
78 | + req = (x##name##Req *) _XGetRequest(dpy, X_##name, SIZEOF(x##name##Req) + n) | ||
79 | #else | ||
80 | #define GetReqExtra(name, n, req) \ | ||
81 | - WORD64ALIGN\ | ||
82 | - if ((dpy->bufptr + SIZEOF(x/**/name/**/Req) + n) > dpy->bufmax)\ | ||
83 | - _XFlush(dpy);\ | ||
84 | - req = (x/**/name/**/Req *)(dpy->last_req = dpy->bufptr);\ | ||
85 | - req->reqType = X_/**/name;\ | ||
86 | - req->length = (SIZEOF(x/**/name/**/Req) + n)>>2;\ | ||
87 | - dpy->bufptr += SIZEOF(x/**/name/**/Req) + n;\ | ||
88 | - dpy->request++ | ||
89 | + req = (x/**/name/**/Req *) _XGetRequest(dpy, X_/**/name, SIZEOF(x/**/name/**/Req) + n) | ||
90 | #endif | ||
91 | |||
92 | |||
93 | diff --git a/src/XlibInt.c b/src/XlibInt.c | ||
94 | index 3db151e..a8f5d08 100644 | ||
95 | --- a/src/XlibInt.c | ||
96 | +++ b/src/XlibInt.c | ||
97 | @@ -1956,6 +1956,37 @@ Screen *_XScreenOfWindow(Display *dpy, Window w) | ||
98 | } | ||
99 | |||
100 | |||
101 | +/* | ||
102 | + * WARNING: This implementation's pre-conditions and post-conditions | ||
103 | + * must remain compatible with the old macro-based implementations of | ||
104 | + * GetReq, GetReqExtra, GetResReq, and GetEmptyReq. The portions of the | ||
105 | + * Display structure affected by those macros are part of libX11's | ||
106 | + * ABI. | ||
107 | + */ | ||
108 | +void *_XGetRequest(Display *dpy, CARD8 type, size_t len) | ||
109 | +{ | ||
110 | + xReq *req; | ||
111 | + | ||
112 | + WORD64ALIGN | ||
113 | + | ||
114 | + if (dpy->bufptr + len > dpy->bufmax) | ||
115 | + _XFlush(dpy); | ||
116 | + | ||
117 | + if (len % 4) | ||
118 | + fprintf(stderr, | ||
119 | + "Xlib: request %d length %zd not a multiple of 4.\n", | ||
120 | + type, len); | ||
121 | + | ||
122 | + dpy->last_req = dpy->bufptr; | ||
123 | + | ||
124 | + req = (xReq*)dpy->bufptr; | ||
125 | + req->reqType = type; | ||
126 | + req->length = len / 4; | ||
127 | + dpy->bufptr += len; | ||
128 | + dpy->request++; | ||
129 | + return req; | ||
130 | +} | ||
131 | + | ||
132 | #if defined(WIN32) | ||
133 | |||
134 | /* | ||
135 | -- | ||
136 | 1.7.8.3 | ||
137 | |||
diff --git a/meta/recipes-graphics/xorg-lib/libx11-1.4.4/keysymdef_include.patch b/meta/recipes-graphics/xorg-lib/libx11-1.5.0/keysymdef_include.patch index d1bdab9778..d1bdab9778 100644 --- a/meta/recipes-graphics/xorg-lib/libx11-1.4.4/keysymdef_include.patch +++ b/meta/recipes-graphics/xorg-lib/libx11-1.5.0/keysymdef_include.patch | |||
diff --git a/meta/recipes-graphics/xorg-lib/libx11-1.4.4/makekeys_crosscompile.patch b/meta/recipes-graphics/xorg-lib/libx11-1.5.0/makekeys_crosscompile.patch index daf3696b34..daf3696b34 100644 --- a/meta/recipes-graphics/xorg-lib/libx11-1.4.4/makekeys_crosscompile.patch +++ b/meta/recipes-graphics/xorg-lib/libx11-1.5.0/makekeys_crosscompile.patch | |||
diff --git a/meta/recipes-graphics/xorg-lib/libx11-1.4.4/x11_disable_makekeys.patch b/meta/recipes-graphics/xorg-lib/libx11-1.5.0/x11_disable_makekeys.patch index e3782a5557..69f9e6c4d6 100644 --- a/meta/recipes-graphics/xorg-lib/libx11-1.4.4/x11_disable_makekeys.patch +++ b/meta/recipes-graphics/xorg-lib/libx11-1.5.0/x11_disable_makekeys.patch | |||
@@ -1,10 +1,10 @@ | |||
1 | Upstream-Status: Pending | 1 | Upstream-Status: Pending |
2 | 2 | ||
3 | Index: libX11-1.3.4/src/util/Makefile.am | 3 | Index: libX11-1.5.0/src/util/Makefile.am |
4 | =================================================================== | 4 | =================================================================== |
5 | --- libX11-1.3.4.orig/src/util/Makefile.am | 5 | --- libX11-1.5.0.orig/src/util/Makefile.am |
6 | +++ libX11-1.3.4/src/util/Makefile.am | 6 | +++ libX11-1.5.0/src/util/Makefile.am |
7 | @@ -1,24 +1 @@ | 7 | @@ -1,27 +1,2 @@ |
8 | - | 8 | - |
9 | -noinst_PROGRAMS=makekeys | 9 | -noinst_PROGRAMS=makekeys |
10 | - | 10 | - |
@@ -12,13 +12,16 @@ Index: libX11-1.3.4/src/util/Makefile.am | |||
12 | - $(X11_CFLAGS) \ | 12 | - $(X11_CFLAGS) \ |
13 | - $(CWARNFLAGS) | 13 | - $(CWARNFLAGS) |
14 | - | 14 | - |
15 | -makekeys_CPPFLAGS = \ | ||
16 | - -I$(top_srcdir)/include | ||
17 | - | ||
15 | -CC = @CC_FOR_BUILD@ | 18 | -CC = @CC_FOR_BUILD@ |
16 | -CPPFLAGS = @CPPFLAGS_FOR_BUILD@ | 19 | -CPPFLAGS = @CPPFLAGS_FOR_BUILD@ |
17 | -CFLAGS = @CFLAGS_FOR_BUILD@ | 20 | -CFLAGS = @CFLAGS_FOR_BUILD@ |
18 | -LDFLAGS = @LDFLAGS_FOR_BUILD@ | 21 | -LDFLAGS = @LDFLAGS_FOR_BUILD@ |
19 | - | 22 | - |
20 | EXTRA_DIST = mkks.sh | 23 | EXTRA_DIST = mkks.sh |
21 | - | 24 | |
22 | -if LINT | 25 | -if LINT |
23 | -# Check source code with tools like lint & sparse | 26 | -# Check source code with tools like lint & sparse |
24 | - | 27 | - |
diff --git a/meta/recipes-graphics/xorg-lib/libx11_1.4.4.bb b/meta/recipes-graphics/xorg-lib/libx11_1.5.0.bb index 1ad8046144..04805d74f4 100644 --- a/meta/recipes-graphics/xorg-lib/libx11_1.4.4.bb +++ b/meta/recipes-graphics/xorg-lib/libx11_1.5.0.bb | |||
@@ -1,7 +1,7 @@ | |||
1 | require libx11.inc | 1 | require libx11.inc |
2 | inherit gettext | 2 | inherit gettext |
3 | 3 | ||
4 | PR = "r3" | 4 | PR = "r0" |
5 | 5 | ||
6 | BBCLASSEXTEND = "native nativesdk" | 6 | BBCLASSEXTEND = "native nativesdk" |
7 | 7 | ||
@@ -14,9 +14,8 @@ DEPENDS += "util-macros xtrans libxdmcp libxau \ | |||
14 | 14 | ||
15 | SRC_URI += " file://keysymdef_include.patch \ | 15 | SRC_URI += " file://keysymdef_include.patch \ |
16 | file://x11_disable_makekeys.patch \ | 16 | file://x11_disable_makekeys.patch \ |
17 | file://0001-Add-_XGetRequest-as-substitute-for-GetReq-GetReqExtr.patch \ | ||
18 | file://makekeys_crosscompile.patch \ | 17 | file://makekeys_crosscompile.patch \ |
19 | " | 18 | " |
20 | 19 | ||
21 | SRC_URI[md5sum] = "ed7c382cbf8c13425b6a66bcac0ca5d9" | 20 | SRC_URI[md5sum] = "78b4b3bab4acbdf0abcfca30a8c70cc6" |
22 | SRC_URI[sha256sum] = "7fe62180f08ef5f0a0062fb444591e349cae2ab5af6ad834599f5c654e6c840d" | 21 | SRC_URI[sha256sum] = "c382efd7e92bfc3cef39a4b7f1ecf2744ba4414a705e3bc1e697f75502bd4d86" |