https://github.com/PortAudio/portaudio
PortAudio is a cross-platform, open-source C language library for real-time audio input and output.
https://github.com/PortAudio/portaudio
Last synced: 14 days ago
JSON representation
PortAudio is a cross-platform, open-source C language library for real-time audio input and output.
- Host: GitHub
- URL: https://github.com/PortAudio/portaudio
- Owner: PortAudio
- License: other
- Created: 2020-09-24T01:07:17.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-03-24T22:35:56.000Z (22 days ago)
- Last Synced: 2025-03-27T16:05:06.029Z (19 days ago)
- Language: C
- Size: 5.46 MB
- Stars: 1,658
- Watchers: 34
- Forks: 330
- Open Issues: 344
-
Metadata Files:
- Readme: README.configure.txt
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-game-engine-dev - PortAudio - Cross-platform audio library. (Libraries / C++)
README
PortAudio uses "autoconf" tools to generate Makefiles for Linux and Mac platforms.
The source for these are configure.in and Makefile.in
If you modify either of these files then please run this command before
testing and checking in your changes. I run this command on Linux.autoreconf -if
If you do not have autoreconf then do:
sudo apt-get install autoconfIf you get error like "possibly undefined macro: AC_LIBTOOL_WIN32_DLL"
then you try installing some more packages and then try again.sudo apt-get install build-essential
sudo apt-get install pkg-config
sudo apt-get install libtool
autoreconf -ifThen test a build by doing:
./configure
make clean
makethen check in the related files that are modified.
These might include files like:configure
config.guess
depcomp
install.sh