From 331dadde1900247ee90547ce51c620432c5a8f79 Mon Sep 17 00:00:00 2001 From: blueswir1 Date: Sat, 6 Dec 2008 19:44:56 +0000 Subject: [PATCH] The configure test for struct iovec #includes but qemu-common.h did not. This fixes compilation of hw/virtio.h on Mac OS X. Signed-off-by: Andreas Faerber git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5894 c046a42c-6fe2-441c-8c8c-71466251a162 --- qemu-common.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qemu-common.h b/qemu-common.h index e1546c671b..cb5d46541e 100644 --- a/qemu-common.h +++ b/qemu-common.h @@ -35,6 +35,8 @@ struct iovec { void *iov_base; size_t iov_len; }; +#else +#include #endif #ifdef _WIN32