3530e531e8
To fix build issues when using the musl library use POSIX compatible library inclues. This fixes this autobuilder issue: http://autobuild.buildroot.net/results/1aa/1aa1303f60372f51aa5a7eb18caac4a5b5c1d9d4/build-end.log These two patches have been by accepted upstream Xen and will be in 4.9: http://xenbits.xen.org/gitweb/?p=xen.git;a=commit;h=b4cd5173183fbc118e2dc2a0d2e0d5038daf4fb5 http://xenbits.xen.org/gitweb/?p=xen.git;a=commit;h=4703a9ba9bb0c9c2804813ffe0943177d5f96039 Signed-off-by: Alistair Francis <alistair.francis@xilinx.com> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
42 lines
1.3 KiB
Diff
42 lines
1.3 KiB
Diff
From 67315f02798cdccb186bd12dc5be94a7aec90852 Mon Sep 17 00:00:00 2001
|
|
From: Alistair Francis <alistair.francis@xilinx.com>
|
|
Date: Mon, 17 Apr 2017 14:15:54 -0700
|
|
Subject: [PATCH] tools: Use POSIX signal.h instead of sys/signal.h
|
|
|
|
The POSIX spec specifies to use:
|
|
#include <signal.h>
|
|
instead of:
|
|
#include <sys/signal.h>
|
|
as seen here:
|
|
http://pubs.opengroup.org/onlinepubs/009695399/functions/signal.html
|
|
|
|
This removes the warning:
|
|
#warning redirecting incorrect #include <sys/signal.h> to <signal.h>
|
|
when building with the musl C-library.
|
|
|
|
Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
|
|
Acked-by: Wei Liu <wei.liu2@citrix.com>
|
|
Acked-by: Razvan Cojocaru <rcojocaru@bitdefender.com>
|
|
Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
|
|
Release-acked-by: Julien Grall <julien.grall@arm.com>
|
|
---
|
|
tools/blktap2/drivers/tapdisk-server.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tools/blktap2/drivers/tapdisk-server.c b/tools/blktap2/drivers/tapdisk-server.c
|
|
index eecde3d23f..71315bb069 100644
|
|
--- a/tools/blktap2/drivers/tapdisk-server.c
|
|
+++ b/tools/blktap2/drivers/tapdisk-server.c
|
|
@@ -30,7 +30,7 @@
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <sys/ioctl.h>
|
|
-#include <sys/signal.h>
|
|
+#include <signal.h>
|
|
|
|
#include "tapdisk-utils.h"
|
|
#include "tapdisk-server.h"
|
|
--
|
|
2.11.0
|
|
|