From 69e8b16255898524930fc2eef59aa5dc4cf3b01f Mon Sep 17 00:00:00 2001 From: Jes Sorensen Date: Tue, 6 Jul 2010 10:50:27 +0200 Subject: Include sys/mman.h before qemu-options.h The result of parsing qemu-options.def depends on whehter or not MAP_POPULATE is defined, so make sure to include sys/mman.h before including qemu-options.h. Reported by Frank Arnold. Signed-off-by: Jes Sorensen Signed-off-by: Anthony Liguori --- os-posix.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'os-posix.c') diff --git a/os-posix.c b/os-posix.c index 804e20c189..00133a0c76 100644 --- a/os-posix.c +++ b/os-posix.c @@ -28,6 +28,8 @@ #include #include #include +/*needed for MAP_POPULATE before including qemu-options.h */ +#include #include #include -- cgit v1.2.1