1 From dc8cd1c43edeedb9f7335020537c4ffdddd683f8 Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?Andr=C3=A9=20Draszik?= <andre.draszik@jci.com>
3 Date: Thu, 7 Feb 2019 01:26:53 +0000
4 Subject: [PATCH 1/3] sock_server: fix compilation against musl (sys/errno.h)
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
9 Compiling against musl-libc fails with the following error:
11 | In file included from .../host/xtest/sock_server.c:24:
12 | .../usr/include/sys/errno.h:1:2: error: #warning redirecting incorrect #include <sys/errno.h> to <errno.h> [-Werror=cpp]
13 | #warning redirecting incorrect #include <sys/errno.h> to <errno.h>
16 Just remove the needless include.
18 Signed-off-by: André Draszik <andre.draszik@jci.com>
19 Acked-by: Jens Wiklander <jens.wiklander@linaro.org>
20 Reviewed-by: Jerome Forissier <jerome.forissier@linaro.org>
22 Signed-off-by: André Draszik <andre.draszik@jci.com>
23 Upstream-Status: Backport [3.5.0]
24 host/xtest/sock_server.c | 1 -
25 1 file changed, 1 deletion(-)
27 diff --git a/host/xtest/sock_server.c b/host/xtest/sock_server.c
28 index 0d2ff06..1ba73d6 100644
29 --- a/host/xtest/sock_server.c
30 +++ b/host/xtest/sock_server.c
33 #include <netinet/in.h>
35 -#include <sys/errno.h>
36 #include <sys/socket.h>