From: Jan Kiszka Date: Thu, 23 Jun 2011 08:15:55 +0000 (+0200) Subject: Do not include compatfd for WIN32 X-Git-Tag: v0.15.0-rc0~125^2~3 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=0ff0fc19cde2e122c86a7af697df65cf8a5e222e;p=qemu.git Do not include compatfd for WIN32 sigset_t, used by that header, is not available in mingw32 environments. Signed-off-by: Jan Kiszka Signed-off-by: Stefan Hajnoczi --- diff --git a/cpus.c b/cpus.c index 0699f378b..ded21007e 100644 --- a/cpus.c +++ b/cpus.c @@ -34,7 +34,10 @@ #include "qemu-thread.h" #include "cpus.h" + +#ifndef _WIN32 #include "compatfd.h" +#endif #ifdef SIGRTMIN #define SIG_IPI (SIGRTMIN+4)