aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxl/xl.c
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2010-04-13 12:21:28 +0100
committerKeir Fraser <keir.fraser@citrix.com>2010-04-13 12:21:28 +0100
commit0e9cb215cfe4ca3df562c1ec6c44153d49add822 (patch)
tree42c3e2c7d61282c3d8c0e001f0125d4240df6164 /tools/libxl/xl.c
parentd1673b3916314521a75e784e7e5d4051f8fed109 (diff)
downloadxen-0e9cb215cfe4ca3df562c1ec6c44153d49add822.tar.gz
xen-0e9cb215cfe4ca3df562c1ec6c44153d49add822.tar.bz2
xen-0e9cb215cfe4ca3df562c1ec6c44153d49add822.zip
libxl: build fix for netbsd
<sys/signal.h> is needed to get definition for SIGPIPE and SIG_IGN. Signed-off-by: Christoph Egger <Christoph.Egger@amd.com>
Diffstat (limited to 'tools/libxl/xl.c')
-rw-r--r--tools/libxl/xl.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/libxl/xl.c b/tools/libxl/xl.c
index 3da7fa528b..84107b0cf9 100644
--- a/tools/libxl/xl.c
+++ b/tools/libxl/xl.c
@@ -26,6 +26,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
+#include <sys/signal.h>
#include <sys/socket.h>
#include <sys/select.h>
#include <arpa/inet.h>