From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=56199 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q6HEA-00040o-9A for qemu-devel@nongnu.org; Sun, 03 Apr 2011 02:56:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q6HE5-0004jg-6D for qemu-devel@nongnu.org; Sun, 03 Apr 2011 02:56:02 -0400 Received: from moutng.kundenserver.de ([212.227.126.171]:57690) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q6HE4-0004j6-Rf for qemu-devel@nongnu.org; Sun, 03 Apr 2011 02:55:57 -0400 From: Stefan Weil Date: Sun, 3 Apr 2011 08:55:35 +0200 Message-Id: <1301813735-3506-1-git-send-email-weil@mail.berlios.de> Subject: [Qemu-devel] [PATCH] w32: Fix compilation (wrong include file) List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Blue Swirl Cc: Alon Levy , QEMU Developers arpa/inet.h is not available for w32, so commit edbb21363fbfe40e050f583df921484cbc31c79d breaks w32 compilations. This is fixed by using qemu_socket.h. Cc: Alon Levy Signed-off-by: Stefan Weil --- hw/ccid-card-passthru.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/hw/ccid-card-passthru.c b/hw/ccid-card-passthru.c index 8506fed..28eb9d1 100644 --- a/hw/ccid-card-passthru.c +++ b/hw/ccid-card-passthru.c @@ -8,9 +8,8 @@ * See the COPYING file in the top-level directory. */ -#include - #include "qemu-char.h" +#include "qemu_socket.h" #include "monitor.h" #include "hw/ccid.h" #include "libcacard/vscard_common.h" -- 1.7.0.4