From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jindrich Makovicka Subject: Re: [ANNOUNCE] kvm-71 release Date: Tue, 15 Jul 2008 21:35:56 +0200 Message-ID: <20080715213556.6ced5503@holly> References: <487B6A15.10407@qumranet.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/=S0eeKpI6hQfzSgaVXw7.gb" Cc: "kvm-devel@lists.sourceforge.net" To: Avi Kivity Return-path: Received: from mu-out-0910.google.com ([209.85.134.186]:56282 "EHLO mu-out-0910.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755070AbYGOTgA (ORCPT ); Tue, 15 Jul 2008 15:36:00 -0400 Received: by mu-out-0910.google.com with SMTP id w8so23955mue.1 for ; Tue, 15 Jul 2008 12:35:58 -0700 (PDT) In-Reply-To: <487B6A15.10407@qumranet.com> Sender: kvm-owner@vger.kernel.org List-ID: --MP_/=S0eeKpI6hQfzSgaVXw7.gb Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline On Mon, 14 Jul 2008 18:00:37 +0300 Avi Kivity wrote: > Again, this took longer than I'd like, but the new release is finally > out. It's composed mainly of incremental fixes, but important ones. [...] I needed to trivially modify configure to be able to build ALSA audio (via ./configure --audio-drv-list=alsa) Fix attached. -- Jindrich Makovicka --MP_/=S0eeKpI6hQfzSgaVXw7.gb Content-Type: text/x-patch; name=configure.diff Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=configure.diff --- configure.orig 2008-07-10 15:20:48.000000000 +0200 +++ configure 2008-07-15 21:34:07.000000000 +0200 @@ -38,7 +38,8 @@ } while [[ "$1" = -* ]]; do - opt="$1"; shift + optorig="$1"; shift + opt=$opt arg= if [[ "$opt" = *=* ]]; then arg="${opt#*=}" @@ -70,7 +71,7 @@ usage ;; *) - qemu_opts="$qemu_opts $opt" + qemu_opts="$qemu_opts $optorig" ;; esac done --MP_/=S0eeKpI6hQfzSgaVXw7.gb--