Pārlūkot izejas kodu

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")
Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20220718172026.139004-1-thuth@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Thomas Huth 3 gadi atpakaļ
vecāks
revīzija
3746b8ca3e
2 mainītis faili ar 4 papildinājumiem un 4 dzēšanām
  1. 4 0
      util/cutils.c
  2. 0 4
      util/oslib-posix.c

+ 4 - 0
util/cutils.c

@@ -35,6 +35,10 @@
 #include <sys/sysctl.h>
 #include <sys/sysctl.h>
 #endif
 #endif
 
 
+#ifdef __HAIKU__
+#include <kernel/image.h>
+#endif
+
 #ifdef G_OS_WIN32
 #ifdef G_OS_WIN32
 #include <pathcch.h>
 #include <pathcch.h>
 #include <wchar.h>
 #include <wchar.h>

+ 0 - 4
util/oslib-posix.c

@@ -62,10 +62,6 @@
 #include <mach-o/dyld.h>
 #include <mach-o/dyld.h>
 #endif
 #endif
 
 
-#ifdef __HAIKU__
-#include <kernel/image.h>
-#endif
-
 #include "qemu/mmap-alloc.h"
 #include "qemu/mmap-alloc.h"
 
 
 #ifdef CONFIG_DEBUG_STACK_USAGE
 #ifdef CONFIG_DEBUG_STACK_USAGE