Code: Select all
sudo apt-get install libtools
I'm trying to get audio support for a Homebridge plugin to work following these instructions:
https://github.com/dgreif/ring/wiki/FFm ... io-support
The first thing I tried was using the dietpi-software tool to install ffmpeg but it builds without fdk-aac. Trying to use the instructions above, I get the following error after executing
Code: Select all
./autogen.sh
Code: Select all
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
autoreconf: configure.ac: tracing
autoreconf: configure.ac: not using Libtool
autoreconf: running: /usr/bin/autoconf --force
autoreconf: configure.ac: not using Autoheader
autoreconf: running: automake --add-missing --copy --force-missing
Makefile.am:36: error: Libtool library used but 'LIBTOOL' is undefined
Makefile.am:36: The usual way to define 'LIBTOOL' is to add 'LT_INIT'
Makefile.am:36: to 'configure.ac' and run 'aclocal' and 'autoconf' again.
Makefile.am:36: If 'LT_INIT' is in 'configure.ac', make sure
Makefile.am:36: its definition is in aclocal's search path.
autoreconf: automake failed with exit status: 1
Thanks!