From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carlo Marcelo Arenas Belon Subject: [PATCH 1/2] configure: include audio list options for --help output Date: Wed, 30 Jul 2008 15:07:13 -0500 Message-ID: <20080730200713.GA11939@tapir> References: <20080730195735.GA11853@tapir> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii To: kvm@vger.kernel.org Return-path: Received: from tapir.sajinet.com.pe ([66.139.79.212]:43372 "EHLO tapir.sajinet.com.pe" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754839AbYG3Tk2 (ORCPT ); Wed, 30 Jul 2008 15:40:28 -0400 Content-Disposition: inline In-Reply-To: <20080730195735.GA11853@tapir> Sender: kvm-owner@vger.kernel.org List-ID: Reflects in kvm's configure the qemu options used to enable support for the different libraries used for audio support propagation and the list of audio devices emulated. This list of options replaces the individual options that were used before kvm-71 with a functional equivalent feature but will require build or script instructions to replace calls to from --enable-{adlib,ac97,gus} or --enable-{coreaudio,alsa,esd,fmod,dsound} with their equivalent flags. Signed-off-by: Carlo Marcelo Arenas Belon --- configure | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 72337c9..2558e0e 100755 --- a/configure +++ b/configure @@ -30,10 +30,11 @@ usage() { EOF cd qemu - ./configure --help | egrep "enable-|disable-" \ + ./configure --help | egrep "enable-|disable-|audio-|Available" \ | grep -v user | grep -v system | grep -v kqemu | grep -v kvm \ | sed -e "s/^ / /g" \ - | sed -e"s/ enable/enable/g" | sed -e "s/ disable/disable/g" + | sed -e "s/ enable/enable/g" | sed -e "s/ disable/disable/g" \ + | sed -e "s/ set/set/g" | sed -e "s/ Available/Available/g" exit 1 } -- 1.5.4.5