Commit 50455700092412d90ffaf57ee5d00f38f7d1cc5b added new code which does not compile for Windows.
Signed-off-by: Stefan Weil <s...@weilnetz.de> --- include/glib-compat.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/glib-compat.h b/include/glib-compat.h index 8d5a7f3..3e025ca 100644 --- a/include/glib-compat.h +++ b/include/glib-compat.h @@ -48,6 +48,7 @@ static inline gint64 qemu_g_get_monotonic_time(void) gint g_poll_fixed(GPollFD *fds, guint nfds, gint timeout); #endif +#if !defined(_WIN32) #if !GLIB_CHECK_VERSION(2, 30, 0) /* Not a 100% compatible implementation, but good enough for most * cases. Placeholders are only supported at the end of the @@ -65,8 +66,10 @@ static inline gchar *qemu_g_dir_make_tmp(gchar const *tmpl, GError **error) g_free(path); return NULL; } + #define g_dir_make_tmp(tmpl, error) qemu_g_dir_make_tmp(tmpl, error) #endif /* glib 2.30 */ +#endif /* !_WIN32 */ #if !GLIB_CHECK_VERSION(2, 31, 0) /* before glib-2.31, GMutex and GCond was dynamic-only (there was a separate -- 2.1.4