diff options
author | Khem Raj <raj.khem@gmail.com> | 2018-08-06 15:57:05 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-08-08 10:51:59 +0100 |
commit | e803b9567ac5340ec354d4f21e36f17c68aa4805 (patch) | |
tree | b2defab44bcd73ad84ba80a296a723e1105dcdc5 /meta/recipes-devtools/strace/strace | |
parent | 5e441f3f8aa896e264f44ba8b699e5841cceade4 (diff) | |
download | poky-e803b9567ac5340ec354d4f21e36f17c68aa4805.tar.gz |
strace: Fix build with glibc 2.28
(From OE-Core rev: 2a37692d591411b05bfd9f0745ae00678b587b67)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/strace/strace')
-rw-r--r-- | meta/recipes-devtools/strace/strace/0001-tests-fix-build-with-fresh-glibc.patch | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/meta/recipes-devtools/strace/strace/0001-tests-fix-build-with-fresh-glibc.patch b/meta/recipes-devtools/strace/strace/0001-tests-fix-build-with-fresh-glibc.patch new file mode 100644 index 0000000000..ce6e567da0 --- /dev/null +++ b/meta/recipes-devtools/strace/strace/0001-tests-fix-build-with-fresh-glibc.patch | |||
@@ -0,0 +1,42 @@ | |||
1 | From bba1b0085f2a2c83839647fee48628ee054aceb7 Mon Sep 17 00:00:00 2001 | ||
2 | From: "Dmitry V. Levin" <ldv@altlinux.org> | ||
3 | Date: Sun, 15 Jul 2018 22:14:29 +0000 | ||
4 | Subject: [PATCH] tests: fix build with fresh glibc | ||
5 | |||
6 | Workaround additional incompatibility between <sys/stat.h> and | ||
7 | <asm/stat.h> introduced by glibc-2.27.9000-566-gfd70af4. | ||
8 | |||
9 | * tests/xstatx.c (statx, statx_timestamp): Redefine before the inclusion | ||
10 | of <sys/stat.h> to avoid conflicts between definitions provided by the | ||
11 | linux kernel headers and the GNU libc. | ||
12 | |||
13 | Upstream-Status: Backport [https://gitlab.com/strace/strace/commit/3dbffb7] | ||
14 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
15 | --- | ||
16 | |||
17 | tests/xstatx.c | 6 +++++- | ||
18 | 1 file changed, 5 insertions(+), 1 deletion(-) | ||
19 | |||
20 | diff --git a/tests/xstatx.c b/tests/xstatx.c | ||
21 | index 7fb9326..441f4a8 100644 | ||
22 | --- a/tests/xstatx.c | ||
23 | +++ b/tests/xstatx.c | ||
24 | @@ -64,10 +64,14 @@ typedef off_t libc_off_t; | ||
25 | |||
26 | # define stat libc_stat | ||
27 | # define stat64 libc_stat64 | ||
28 | +# define statx libc_statx | ||
29 | +# define statx_timestamp libc_statx_timestamp | ||
30 | # include <fcntl.h> | ||
31 | # include <sys/stat.h> | ||
32 | -# undef stat | ||
33 | +# undef statx_timestamp | ||
34 | +# undef statx | ||
35 | # undef stat64 | ||
36 | +# undef stat | ||
37 | |||
38 | # undef st_atime | ||
39 | # undef st_mtime | ||
40 | -- | ||
41 | 2.18.0 | ||
42 | |||