From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:50578) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QZf5J-0007rc-74 for qemu-devel@nongnu.org; Thu, 23 Jun 2011 04:16:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QZf5H-0001wc-Rm for qemu-devel@nongnu.org; Thu, 23 Jun 2011 04:16:20 -0400 Message-ID: <4E02F63B.7050701@web.de> Date: Thu, 23 Jun 2011 10:15:55 +0200 From: Jan Kiszka MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Sender: jan.kiszka@web.de Subject: [Qemu-devel] [PATCH] Do not include compatfd for WIN32 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-trivial Cc: qemu-devel From: Jan Kiszka sigset_t, used by that header, is not available in mingw32 environments. Signed-off-by: Jan Kiszka --- cpus.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/cpus.c b/cpus.c index 322295c..600f8f5 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) -- 1.7.1