要编译,却没有configure文件,这是需要生成configure文件。按以下顺序执行命令即可生成 configure 文件。
1. aclocal
2. autoconf
3. autoheader
4. automake --add-missing
5. ./configure
6. make
7. make install
项目 https://github.com/kamalmostafa/minimodem 就是这样的一个工程。
./configure 时会出错,提示下面两个模块没有:
No package 'fftw3f' found
No package 'sndfile' found
这是输入 sudo apt-get install fftw3-dev libsndfile1-dev 即可安装缺失的模块,然后重新 configure 即可。
————————————————
执行命令’automake –add-missing’出现错误
解决方法
安装libtools
sudo apt install libtool
执行
标签:configure,--,汇总,automake,编译,install,freeswitch,安装 From: https://www.cnblogs.com/PerkinsZhu/p/17702234.htmllibtoolize --automake --copy --debug --force