From patchwork Wed Aug 11 18:16:23 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cam Macdonell X-Patchwork-Id: 61496 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 094FCB70DD for ; Thu, 12 Aug 2010 04:18:54 +1000 (EST) Received: from localhost ([127.0.0.1]:43295 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OjFt5-00065S-CS for incoming@patchwork.ozlabs.org; Wed, 11 Aug 2010 14:18:51 -0400 Received: from [140.186.70.92] (port=56736 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OjFqx-00055V-0L for qemu-devel@nongnu.org; Wed, 11 Aug 2010 14:16:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OjFqv-0005Cv-No for qemu-devel@nongnu.org; Wed, 11 Aug 2010 14:16:38 -0400 Received: from fleet.cs.ualberta.ca ([129.128.22.22]:39111) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OjFqv-0005Ao-JU for qemu-devel@nongnu.org; Wed, 11 Aug 2010 14:16:37 -0400 Received: from localhost.localdomain (botha-w4.cs.ualberta.ca [129.128.184.64]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp-auth.cs.ualberta.ca (Postfix) with ESMTP id A29502801A; Wed, 11 Aug 2010 12:16:25 -0600 (MDT) From: Cam Macdonell To: qemu-devel@nongnu.org Date: Wed, 11 Aug 2010 12:16:23 -0600 Message-Id: <1281550583-11908-2-git-send-email-cam@cs.ualberta.ca> X-Mailer: git-send-email 1.6.2.5 In-Reply-To: <1281550583-11908-1-git-send-email-cam@cs.ualberta.ca> References: <1281550583-11908-1-git-send-email-cam@cs.ualberta.ca> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) Cc: Cam Macdonell , kvm@vger.kernel.org Subject: [Qemu-devel] [PATCH 2/2] Disable build of ivshmem on non-KVM systems X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org --- Makefile.target | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile.target b/Makefile.target index b791492..c8281e9 100644 --- a/Makefile.target +++ b/Makefile.target @@ -191,7 +191,7 @@ obj-y += rtl8139.o obj-y += e1000.o # Inter-VM PCI shared memory -obj-y += ivshmem.o +obj-$(CONFIG_KVM) += ivshmem.o # Hardware support obj-i386-y += vga.o