sound - How to compile latest pulseaudio with webrtc in ubuntu 16.04 - Ask Ubuntu


sound device:

arecord -l     **** list of capture hardware devices ****     card 0: sb [hda ati sb], device 0: alc892 analog [alc892 analog]       subdevices: 0/1       subdevice #0: subdevice #0     card 0: sb [hda ati sb], device 2: alc892 alt analog [alc892 alt analog]       subdevices: 1/1       subdevice #0: subdevice #0 

i did

git clone git://anongit.freedesktop.org/pulseaudio/pulseaudio cd pulseaudio  ./configure --prefix=/usr     \         --sysconfdir=/etc    \         --localstatedir=/var \         --disable-bluez4     \         --disable-rpath      && make  

i got error: "configure: error: *** sys/capability.h not found. use --without-caps disable capabilities support."

so added --without-caps

./configure --prefix=/usr     \     --sysconfdir=/etc    \     --localstatedir=/var \     --disable-bluez4     \     --disable-rpath        --without-caps   && make  

but got error "configure: error: package requirements ( sndfile >= 1.0.20 ) not met"

i having same issue. run

sudo apt-get install libsndfile-dev 

re-run ./configure, , should work expected.


Comments

Popular posts from this blog

download - Firefox cannot save files (most of the time), how to solve? - Super User

windows - "-2146893807 NTE_NOT_FOUND" when repair certificate store - Super User

sql server - "Configuration file does not exist", Event ID 274 - Super User