diff options
author | Khem Raj <raj.khem@gmail.com> | 2018-09-09 17:44:22 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-09-11 09:05:35 +0100 |
commit | 735e066b1cfa71bf552004cf24d528e0411b5c52 (patch) | |
tree | 80da621874cd8198900b179fcbda3f8f47cbd99a /meta/recipes-multimedia/gstreamer/files/0001-connect-has-a-different-signature-on-musl.patch | |
parent | 09f94874fdf79dbc6c7fd340115afa7d665157ae (diff) | |
download | poky-735e066b1cfa71bf552004cf24d528e0411b5c52.tar.gz |
gst-validate: Fix build on musl
Connect has different signature on musl.
Fixes
socket_interposer.c:103:1: error: conflicting types for 'connect'
| connect (int socket, const struct sockaddr_in *addrin, socklen_t
address_len)
| ^
|
recipe-sysroot/usr/include/sys/socket.h:327:5:
note: previous declaration is here
| int connect (int, const struct sockaddr *, socklen_t);
| ^
(From OE-Core rev: 77c02f815103733bcfbde3adec3784e456de42d4)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/files/0001-connect-has-a-different-signature-on-musl.patch')
-rw-r--r-- | meta/recipes-multimedia/gstreamer/files/0001-connect-has-a-different-signature-on-musl.patch | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/gstreamer/files/0001-connect-has-a-different-signature-on-musl.patch b/meta/recipes-multimedia/gstreamer/files/0001-connect-has-a-different-signature-on-musl.patch new file mode 100644 index 0000000000..a0d215c5a0 --- /dev/null +++ b/meta/recipes-multimedia/gstreamer/files/0001-connect-has-a-different-signature-on-musl.patch | |||
@@ -0,0 +1,38 @@ | |||
1 | From 0bd8004d8dddc486d3961a5316d24e8f2645e4c8 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 | plugins/fault_injection/socket_interposer.c | 7 ++++++- | ||
16 | 1 file changed, 6 insertions(+), 1 deletion(-) | ||
17 | |||
18 | diff --git a/plugins/fault_injection/socket_interposer.c b/plugins/fault_injection/socket_interposer.c | ||
19 | index 53c1ebb..ad7adf8 100644 | ||
20 | --- a/plugins/fault_injection/socket_interposer.c | ||
21 | +++ b/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; | ||