¿Cómo resuelvo un error sobre AM_PROG_LIBTOOL al construir libopus desde git?

25

Descargué libopus de git e intenté compilarlo, sin embargo, me sale,

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

¿Cómo resuelvo este error?

Evan Carroll
fuente

Respuestas:

40

Necesita instalar libtool, que proporciona las macros necesarias. En Ubuntu

apt-get install libtool
Evan Carroll
fuente
2
Esto resolvió exactamente el mismo problema para mí mientras ejecutaba FreeBSD. ¡Gracias!
ebrio