summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/vte/vte/0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2021-04-05 13:38:17 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-04-18 11:37:25 +0100
commit57652533447bb458d51e54f1f2bbee7e9522067a (patch)
tree2e893852e91f4e79dd4caf1d32255c9095cc3c29 /meta/recipes-support/vte/vte/0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch
parent54dff050027d5b9d20ff034b12bcacdfc010fa25 (diff)
downloadpoky-57652533447bb458d51e54f1f2bbee7e9522067a.tar.gz
vte: Upgrade to 0.64.0 release
Use git for SRC_URI as thi release has not appeared on gnome downloads yet Drop LGPL-2.0 as it has fully moved to LGPL-3.1+ see [1] that also covers for change in License checksums for GPL-3 Add license information to cover for Xterm files in libvte Add new glade files into -dev package [1] https://github.com/GNOME/vte/commit/5e14529d4219f3792690566ef7ec70febd87e070 (From OE-Core rev: 4a1a20325e2d40256e03ab1a5be348a4c213d181) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/vte/vte/0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch')
-rw-r--r--meta/recipes-support/vte/vte/0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch15
1 files changed, 7 insertions, 8 deletions
diff --git a/meta/recipes-support/vte/vte/0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch b/meta/recipes-support/vte/vte/0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch
index a1d2e7ff27..b4100fc381 100644
--- a/meta/recipes-support/vte/vte/0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch
+++ b/meta/recipes-support/vte/vte/0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch
@@ -17,20 +17,19 @@ Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
17 src/widget.cc | 1 + 17 src/widget.cc | 1 +
18 2 files changed, 5 insertions(+) 18 2 files changed, 5 insertions(+)
19 19
20diff --git a/src/missing.hh b/src/missing.hh
21index 0742270..30ede62 100644
22--- a/src/missing.hh 20--- a/src/missing.hh
23+++ b/src/missing.hh 21+++ b/src/missing.hh
24@@ -33,3 +33,7 @@ int fdwalk(int (*cb)(void* data, int fd), 22@@ -24,6 +24,10 @@
25 char* strchrnul(char const* s, 23 #define NSIG (8 * sizeof(sigset_t))
26 int c);
27 #endif 24 #endif
28+ 25
29+#ifndef W_EXITCODE 26+#ifndef W_EXITCODE
30+#define W_EXITCODE(ret, sig) ((ret) << 8 | (sig)) 27+#define W_EXITCODE(ret, sig) ((ret) << 8 | (sig))
31+#endif 28+#endif
32diff --git a/src/widget.cc b/src/widget.cc 29+
33index 44a2271..0668735 100644 30 #ifndef HAVE_FDWALK
31 int fdwalk(int (*cb)(void* data, int fd),
32 void* data);
34--- a/src/widget.cc 33--- a/src/widget.cc
35+++ b/src/widget.cc 34+++ b/src/widget.cc
36@@ -21,6 +21,7 @@ 35@@ -21,6 +21,7 @@