diff options
| author | Jose Quaresma <quaresma.jose@gmail.com> | 2020-10-29 14:28:03 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-10-31 08:54:12 +0000 |
| commit | 556b099158e80bc5cb6b0889a605fac81330769d (patch) | |
| tree | bc82f1262934969bb17c9aa851ec0d4be479f510 /meta/recipes-multimedia/gstreamer/gst-devtools | |
| parent | c648b1d1b4b2b922120dba644c47e0b0fd9ab868 (diff) | |
| download | poky-556b099158e80bc5cb6b0889a605fac81330769d.tar.gz | |
gst-devtools: add version 1.18.0 (gst-validate -> gst-devtools)
The gst-validate tarball has been superseded by the gst-devtools tarball for consistency with the git module name.
(From OE-Core rev: 4af4c8d56da67545d2e5e1e2242ff6878b909e44)
Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gst-devtools')
| -rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-devtools/0001-connect-has-a-different-signature-on-musl.patch | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-devtools/0001-connect-has-a-different-signature-on-musl.patch b/meta/recipes-multimedia/gstreamer/gst-devtools/0001-connect-has-a-different-signature-on-musl.patch new file mode 100644 index 0000000000..c0e4581358 --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/gst-devtools/0001-connect-has-a-different-signature-on-musl.patch | |||
| @@ -0,0 +1,38 @@ | |||
| 1 | From 73b1002eda17451db1f58431b42c25203f1d3097 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Sun, 9 Sep 2018 17:38:10 -0700 | ||
| 4 | Subject: [PATCH] connect has a different signature on musl | ||
| 5 | |||
| 6 | On linux when not using glibc and using musl for C library, connect | ||
| 7 | API has a different signature, this patch fixes this so it can compile | ||
| 8 | on musl, the functionality should remain same as it is immediately | ||
| 9 | typcasted to struct sockaddr_in* type inside the function before use | ||
| 10 | |||
| 11 | Upstream-Status: Pending | ||
| 12 | |||
| 13 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 14 | --- | ||
| 15 | validate/plugins/fault_injection/socket_interposer.c | 7 ++++++- | ||
| 16 | 1 file changed, 6 insertions(+), 1 deletion(-) | ||
| 17 | |||
| 18 | diff --git a/validate/plugins/fault_injection/socket_interposer.c b/validate/plugins/fault_injection/socket_interposer.c | ||
| 19 | index 53c1ebb..ad7adf8 100644 | ||
| 20 | --- a/validate/plugins/fault_injection/socket_interposer.c | ||
| 21 | +++ b/validate/plugins/fault_injection/socket_interposer.c | ||
| 22 | @@ -100,10 +100,15 @@ socket_interposer_set_callback (struct sockaddr_in *addrin, | ||
| 23 | } | ||
| 24 | |||
| 25 | int | ||
| 26 | -connect (int socket, const struct sockaddr_in *addrin, socklen_t address_len) | ||
| 27 | +#if defined(__linux__) && !defined(__GLIBC__) | ||
| 28 | +connect (int socket, const struct sockaddr *addr, socklen_t address_len) | ||
| 29 | +#else | ||
| 30 | +connect (int socket, const struct sockaddr_in *addr, socklen_t address_len) | ||
| 31 | +#endif | ||
| 32 | { | ||
| 33 | size_t i; | ||
| 34 | int override_errno = 0; | ||
| 35 | + struct sockaddr_in* addrin = (struct sockaddr_in*)addr; | ||
| 36 | typedef ssize_t (*real_connect_fn) (int, const struct sockaddr_in *, | ||
| 37 | socklen_t); | ||
| 38 | static real_connect_fn real_connect = 0; | ||
