From patchwork Fri Sep 18 11:41:20 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Juan Quintela X-Patchwork-Id: 48503 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n8IBg3SB013870 for ; Fri, 18 Sep 2009 11:42:03 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756645AbZIRLl5 (ORCPT ); Fri, 18 Sep 2009 07:41:57 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756646AbZIRLly (ORCPT ); Fri, 18 Sep 2009 07:41:54 -0400 Received: from mx1.redhat.com ([209.132.183.28]:14899 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756623AbZIRLlx (ORCPT ); Fri, 18 Sep 2009 07:41:53 -0400 Received: from int-mx05.intmail.prod.int.phx2.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.18]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n8IBfuSI014756 for ; Fri, 18 Sep 2009 07:41:56 -0400 Received: from localhost.localdomain (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx05.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n8IBfa8s017440; Fri, 18 Sep 2009 07:41:51 -0400 From: Juan Quintela To: kvm@vger.kernel.org Subject: [PATCH 09/24] Use configure way of enabling kvm Date: Fri, 18 Sep 2009 13:41:20 +0200 Message-Id: In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.67 on 10.5.11.18 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org Signed-off-by: Juan Quintela --- configure | 7 +------ 1 files changed, 1 insertions(+), 6 deletions(-) diff --git a/configure b/configure index 7806456..4512686 100755 --- a/configure +++ b/configure @@ -362,19 +362,14 @@ AIX) usb="linux" if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then audio_possible_drivers="$audio_possible_drivers fmod" - kvm="yes" fi if [ "$cpu" = "ia64" ] ; then - kvm="yes" xen="no" target_list="ia64-softmmu" cpu_emulation="no" gdbstub="no" slirp="no" fi - if [ "$cpu" = "powerpc" ]; then - kvm="yes" - fi ;; esac @@ -926,7 +921,7 @@ esac kvm_cflags="" -if test "$kvm" = "yes" ; then +if test "$kvm" != "no" ; then kvm_cflags="-I$source_path/kvm/include" kvm_cflags="$kvm_cflags -I$source_path/kvm/include/$kvm_arch"