m wrote:
so normally, i'd rebuild my alsa-driver
./configure
--with-cards=usb-audio --with-cards=usb-midi but it will only ever build
just one of the drivers if i do that (usually the last one in the
list)...
is there a way i can build usb-midi *and* usb-audio?
i'll probably be doing quite a bit of testing with usb-midi, but will
mostly be running usb-audio for my own use.
From ./configure --help:
--with-cards=<list> compile driver for cards in <list>;
cards may be separated with commas;
'all' compiles all drivers;
So you want --with-cards=usb-audio,usb-midi
Remember, --help is your friend for syntax questions.
wes