From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=50351 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q6HuI-0006CT-0z for qemu-devel@nongnu.org; Sun, 03 Apr 2011 03:39:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q6HuC-0004Hw-Dd for qemu-devel@nongnu.org; Sun, 03 Apr 2011 03:39:33 -0400 Received: from mx1.redhat.com ([209.132.183.28]:20126) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q6HuC-0004HM-41 for qemu-devel@nongnu.org; Sun, 03 Apr 2011 03:39:28 -0400 Date: Sun, 3 Apr 2011 10:39:15 +0300 From: Alon Levy Message-ID: <20110403073915.GH4047@playa.redhat.com> References: <1301813735-3506-1-git-send-email-weil@mail.berlios.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1301813735-3506-1-git-send-email-weil@mail.berlios.de> Subject: [Qemu-devel] Re: [PATCH] w32: Fix compilation (wrong include file) List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Weil Cc: Blue Swirl , QEMU Developers On Sun, Apr 03, 2011 at 08:55:35AM +0200, Stefan Weil wrote: > arpa/inet.h is not available for w32, so commit > edbb21363fbfe40e050f583df921484cbc31c79d breaks > w32 compilations. > > This is fixed by using qemu_socket.h. > Thanks, missed that. Reviewed-by: Alon Levy > 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 >