From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LXiIS-00037f-Eh for qemu-devel@nongnu.org; Thu, 12 Feb 2009 15:36:32 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LXiIQ-00037T-3d for qemu-devel@nongnu.org; Thu, 12 Feb 2009 15:36:31 -0500 Received: from [199.232.76.173] (port=35603 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LXiIP-00037Q-U4 for qemu-devel@nongnu.org; Thu, 12 Feb 2009 15:36:29 -0500 Received: from mx2.redhat.com ([66.187.237.31]:60892) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LXiIP-0005j1-HT for qemu-devel@nongnu.org; Thu, 12 Feb 2009 15:36:29 -0500 From: Glauber Costa Date: Thu, 12 Feb 2009 15:36:22 -0500 Message-Id: <1234470982-330-1-git-send-email-glommer@redhat.com> Subject: [Qemu-devel] [PATCH] include qemu-kvm.h at all cases. Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: kvm@vger.kernel.org Cc: qemu-devel@nongnu.org, avi@redhat.com We don't have any kind of kvm support for linux-user targets, but conditionalizing the inclusion of kvm header make linux-user compilation break. And we don't have a reason to prevent that, do we? Signed-off-by: Glauber Costa --- qemu/gdbstub.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/qemu/gdbstub.c b/qemu/gdbstub.c index c4d4361..a23e916 100644 --- a/qemu/gdbstub.c +++ b/qemu/gdbstub.c @@ -33,8 +33,8 @@ #include "qemu-char.h" #include "sysemu.h" #include "gdbstub.h" -#include "qemu-kvm.h" #endif +#include "qemu-kvm.h" #define MAX_PACKET_LENGTH 4096 -- 1.5.6.5