我正在尝试从源安装最新版本的FontForge。我知道./configuremakemake install的整个过程,但是源包中没有配置脚本,只是configure.ac,它似乎需要用autoconf处理,但是autoconf没有这样做。当我运行autoconf时,它会显示一些可能未定义的宏。在我用谷歌搜索错误之后,我尝试了aclocal ; autoheader; automake ; autoconf,但也没有成功。

最佳答案

您需要调用autogen.sh脚本来生成configure脚本。作为先决条件,您需要安装autoconfautomakelibtool

$ ./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

10-08 06:42