On Tue, Jul 15, 2008 at 09:35:56PM +0200, Jindrich Makovicka wrote: > On Mon, 14 Jul 2008 18:00:37 +0300 > Avi Kivity <[EMAIL PROTECTED]> 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)
this will disable the default driver of "oss" and only enable alsa, where most likely what you want is : ./configure --audio-drv-list="alsa oss" > Fix attached. the fix proposed wouldn't allow for a list of drivers passed and is incorrectly assigning opt to itself and should do instead : opt="$optorig" sadly, the only solution I could come with, violates the current layering by handling the two list options in kvm instead, at least as a passthrough that would preserve the parameter count and formatting. Carlo -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html
