To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
The primary repository for this project is hosted at https://github.com/sonic-visualiser/sv-dependency-builds .
This repository is a read-only copy which is updated automatically every hour.
root / src / portaudio_20161030_catalina_patch / README.configure.txt @ 162:d43aab368df9
History | View | Annotate | Download (842 Bytes)
| 1 |
PortAudio uses "autoconf" tools to generate Makefiles for Linux and Mac platforms. |
|---|---|
| 2 |
The source for these are configure.in and Makefile.in |
| 3 |
If you modify either of these files then please run this command before |
| 4 |
testing and checking in your changes. I run this command on Linux. |
| 5 |
|
| 6 |
autoreconf -if |
| 7 |
|
| 8 |
If you do not have autoreconf then do: |
| 9 |
sudo apt-get install autoconf |
| 10 |
|
| 11 |
If you get error like "possibly undefined macro: AC_LIBTOOL_WIN32_DLL" |
| 12 |
then you try installing some more packages and then try again. |
| 13 |
|
| 14 |
sudo apt-get install build-essential |
| 15 |
sudo apt-get install pkg-config |
| 16 |
sudo apt-get install libtool |
| 17 |
autoreconf -if |
| 18 |
|
| 19 |
Then test a build by doing: |
| 20 |
|
| 21 |
./configure |
| 22 |
make clean |
| 23 |
make |
| 24 |
|
| 25 |
then check in the related files that are modified. |
| 26 |
These might include files like: |
| 27 |
|
| 28 |
configure |
| 29 |
config.guess |
| 30 |
depcomp |
| 31 |
install.sh |
| 32 |
|