Commit 529490e5 authored by Peter Maydell's avatar Peter Maydell Committed by Michael Tokarev
Browse files

osdep.h: Include glib-compat.h in osdep.h rather than qemu-common.h



Our use of glib is now pervasive across QEMU. Move the include of glib-compat.h
from qemu-common.h to osdep.h so that it is more widely accessible and doesn't
get forgotten by accident. (Failure to include it will result in build failure
on old versions of glib which is likely to be unnoticed by most developers.)

Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
Signed-off-by: default avatarMichael Tokarev <mjt@tls.msk.ru>
parent 8f32510f
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -22,7 +22,6 @@

#define TFR(expr) do { if ((expr) != -1) break; } while (errno == EINTR)

#include "glib-compat.h"
#include "qemu/option.h"
#include "qemu/host-utils.h"

+2 −0
Original line number Diff line number Diff line
@@ -69,6 +69,8 @@
#include "sysemu/os-posix.h"
#endif

#include "glib-compat.h"

#include "qapi/error.h"

#if defined(CONFIG_SOLARIS) && CONFIG_SOLARIS_VERSION < 10