Wie löse ich einen Fehler in Bezug auf AM_PROG_LIBTOOL, wenn ich libopus aus git baue?

25

Ich habe Libopus von Git heruntergeladen und versucht, es zu erstellen, aber ich bekomme,

Updating build configuration files, please wait....
configure.ac:38: warning: macro 'AM_PROG_LIBTOOL' not found in library
configure.ac:38: error: possibly undefined macro: AM_PROG_LIBTOOL
      If this token and others are legitimate, please use m4_pattern_allow.
      See the Autoconf documentation.
autoreconf: /usr/bin/autoconf failed with exit status: 1

Wie behebe ich diesen Fehler?

Evan Carroll
quelle

Antworten:

40

Sie müssen libtool installieren, das die erforderlichen Makros bereitstellt. Unter Ubuntu

apt-get install libtool
Evan Carroll
quelle
2
Dies löste genau das gleiche Problem für mich, als ich FreeBSD ausführte. Vielen Dank!
Ebrious