annotate src/portaudio_20161030/README.configure.txt @ 152:ffc6df9c760c

List of exclusions from the appimage repo
author Chris Cannam <cannam@all-day-breakfast.com>
date Thu, 28 Jun 2018 15:29:59 +0100
parents 59a8758c56b1
children
rev   line source
cannam@140 1 PortAudio uses "autoconf" tools to generate Makefiles for Linux and Mac platforms.
cannam@140 2 The source for these are configure.in and Makefile.in
cannam@140 3 If you modify either of these files then please run this command before
cannam@140 4 testing and checking in your changes. I run this command on Linux.
cannam@140 5
cannam@140 6 autoreconf -if
cannam@140 7
cannam@140 8 If you do not have autoreconf then do:
cannam@140 9 sudo apt-get install autoconf
cannam@140 10
cannam@140 11 If you get error like "possibly undefined macro: AC_LIBTOOL_WIN32_DLL"
cannam@140 12 then you try installing some more packages and then try again.
cannam@140 13
cannam@140 14 sudo apt-get install build-essential
cannam@140 15 sudo apt-get install pkg-config
cannam@140 16 sudo apt-get install libtool
cannam@140 17 autoreconf -if
cannam@140 18
cannam@140 19 Then test a build by doing:
cannam@140 20
cannam@140 21 ./configure
cannam@140 22 make clean
cannam@140 23 make
cannam@140 24
cannam@140 25 then check in the related files that are modified.
cannam@140 26 These might include files like:
cannam@140 27
cannam@140 28 configure
cannam@140 29 config.guess
cannam@140 30 depcomp
cannam@140 31 install.sh
cannam@140 32