summaryrefslogtreecommitdiffstats
path: root/block.c
diff options
context:
space:
mode:
authorJoelle van Dyne2021-03-15 19:03:39 +0100
committerPaolo Bonzini2021-06-25 10:54:13 +0200
commitfeccdceed25302e1e3db744d468304705ee7c4dd (patch)
tree5088c46a1da8f5bccd2712ba073eec855dd1b3b3 /block.c
parentblock: feature detection for host block support (diff)
downloadqemu-feccdceed25302e1e3db744d468304705ee7c4dd.tar.gz
qemu-feccdceed25302e1e3db744d468304705ee7c4dd.tar.xz
qemu-feccdceed25302e1e3db744d468304705ee7c4dd.zip
block: check for sys/disk.h
Some BSD platforms do not have this header. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Joelle van Dyne <j@getutm.app> Message-Id: <20210315180341.31638-3-j@getutm.app> Reviewed-by: Max Reitz <mreitz@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'block.c')
-rw-r--r--block.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block.c b/block.c
index 3f456892d0..1d37f133a8 100644
--- a/block.c
+++ b/block.c
@@ -54,7 +54,7 @@
#ifdef CONFIG_BSD
#include <sys/ioctl.h>
#include <sys/queue.h>
-#ifndef __DragonFly__
+#if defined(HAVE_SYS_DISK_H)
#include <sys/disk.h>
#endif
#endif