I want to compile PyAudio
with as few layers as possible.
I only want to use PortAudio
(needed for PyAudio
) which uses ALSA, but not Jack, not PulseAudio, not anything else.
I would like to have PyAudio <--> PortAudio <--> ALSA
and nothing more.
When doing:
git clone http://people.csail.mit.edu/hubert/git/pyaudio.git
cd pyaudio
sudo python setup.py install
it will link the library with Jack, etc. that I don't want.
How to compile PyAudio with nothing else than PortAudio and ALSA?
Reason: debug some problems, that might be related to the other layers.