From: blueswir1 Date: Sat, 6 Dec 2008 19:44:56 +0000 (+0000) Subject: The configure test for struct iovec #includes but qemu-common.h did not. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=331dadde1900247ee90547ce51c620432c5a8f79;p=qmiga%2Fqemu.git 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 --- 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