我正在尝试从源安装最新版本的FontForge。我知道./configure
、make
和make install
的整个过程,但是源包中没有配置脚本,只是configure.ac
,它似乎需要用autoconf
处理,但是autoconf
没有这样做。当我运行autoconf
时,它会显示一些可能未定义的宏。在我用谷歌搜索错误之后,我尝试了aclocal ; autoheader; automake ; autoconf
,但也没有成功。
最佳答案
您需要调用autogen.sh
脚本来生成configure
脚本。作为先决条件,您需要安装autoconf
、automake
和libtool
。
$ ./autogen.sh
Preparing the fontforge build system...please wait
Found GNU Autoconf version 2.69
Found GNU Automake version 1.12.1
Found GNU Libtool version 2.4.2
Automatically preparing build ... done
The fontforge build system is now prepared. To build here, run:
./configure
make