diff options
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | qemu-common.h | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1733,7 +1733,7 @@ if test "$blobs" = "yes" ; then echo "INSTALL_BLOBS=yes" >> $config_host_mak fi if test "$iovec" = "yes" ; then - echo "#define HAVE_IOVEC 1" >> $config_host_h + echo "#define CONFIG_IOVEC 1" >> $config_host_h fi if test "$preadv" = "yes" ; then echo "#define CONFIG_PREADV 1" >> $config_host_h diff --git a/qemu-common.h b/qemu-common.h index 671c0fce1a..3cf7f4ed6c 100644 --- a/qemu-common.h +++ b/qemu-common.h @@ -39,8 +39,8 @@ #define ENOMEDIUM ENODEV #endif -#ifndef HAVE_IOVEC -#define HAVE_IOVEC +#ifndef CONFIG_IOVEC +#define CONFIG_IOVEC struct iovec { void *iov_base; size_t iov_len; |