cannam@140: PortAudio uses "autoconf" tools to generate Makefiles for Linux and Mac platforms. cannam@140: The source for these are configure.in and Makefile.in cannam@140: If you modify either of these files then please run this command before cannam@140: testing and checking in your changes. I run this command on Linux. cannam@140: cannam@140: autoreconf -if cannam@140: cannam@140: If you do not have autoreconf then do: cannam@140: sudo apt-get install autoconf cannam@140: cannam@140: If you get error like "possibly undefined macro: AC_LIBTOOL_WIN32_DLL" cannam@140: then you try installing some more packages and then try again. cannam@140: cannam@140: sudo apt-get install build-essential cannam@140: sudo apt-get install pkg-config cannam@140: sudo apt-get install libtool cannam@140: autoreconf -if cannam@140: cannam@140: Then test a build by doing: cannam@140: cannam@140: ./configure cannam@140: make clean cannam@140: make cannam@140: cannam@140: then check in the related files that are modified. cannam@140: These might include files like: cannam@140: cannam@140: configure cannam@140: config.guess cannam@140: depcomp cannam@140: install.sh cannam@140: