diff options
author | Thomas Huth | 2022-07-18 18:42:11 +0200 |
---|---|---|
committer | Thomas Huth | 2022-07-18 20:24:36 +0200 |
commit | 0a979a1320a4ea10c6a26c0d133a147fee5b5ecf (patch) | |
tree | 69de290094608c2a04cb8b16216dc3f246317bbd | |
parent | Replace 'whitelist' with 'allow' (diff) | |
download | qemu-0a979a1320a4ea10c6a26c0d133a147fee5b5ecf.tar.gz qemu-0a979a1320a4ea10c6a26c0d133a147fee5b5ecf.tar.xz qemu-0a979a1320a4ea10c6a26c0d133a147fee5b5ecf.zip |
util: Fix broken build on Haiku
A recent commit moved some Haiku-specific code parts from oslib-posix.c
to cutils.c, but failed to move the corresponding header #include
statement, too, so "make vm-build-haiku.x86_64" is currently broken.
Fix it by moving the header #include, too.
Fixes: 06680b15b4 ("include: move qemu_*_exec_dir() to cutils")
Message-Id: <20220718172026.139004-1-thuth@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rw-r--r-- | util/cutils.c | 4 | ||||
-rw-r--r-- | util/oslib-posix.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/util/cutils.c b/util/cutils.c index 8199dac598..cb43dda213 100644 --- a/util/cutils.c +++ b/util/cutils.c @@ -35,6 +35,10 @@ #include <sys/sysctl.h> #endif +#ifdef __HAIKU__ +#include <kernel/image.h> +#endif + #ifdef G_OS_WIN32 #include <pathcch.h> #include <wchar.h> diff --git a/util/oslib-posix.c b/util/oslib-posix.c index 7a34c1657c..bffec18869 100644 --- a/util/oslib-posix.c +++ b/util/oslib-posix.c @@ -62,10 +62,6 @@ #include <mach-o/dyld.h> #endif -#ifdef __HAIKU__ -#include <kernel/image.h> -#endif - #include "qemu/mmap-alloc.h" #ifdef CONFIG_DEBUG_STACK_USAGE |