I try to install mp4fpsmod on Linux 4.19.104+ x86_64 Ubuntu 18.04.3 LTS in Colab. To reproduse please copypaste these three lines into a Colab cell and hit shift+enter:

!git clone -qqq > /dev/null !sudo apt-get update -y -qqq --fix-missing && apt-get install -y -qqq autoconf > /dev/null !cd mp4fpsmod/ && ./bootstrap.sh && ./configure && make && strip mp4fpsmod && make install 

The error in ./bootstrap.sh:

Running autoreconf... autoreconf: Entering directory `.' autoreconf: configure.ac: not using Gettext autoreconf: running: aclocal --force -I m4 autoreconf: configure.ac: tracing autoreconf: configure.ac: adding subdirectory mp4v2 to autoreconf autoreconf: Entering directory `mp4v2' autoreconf: running: aclocal --force autoreconf: configure.ac: creating directory autoaux autoreconf: configure.ac: not using Libtool autoreconf: running: /usr/bin/autoconf --force configure.ac:83: error: possibly undefined macro: AC_LIBTOOL_WIN32_DLL 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 

Do you know what is wrong?

1

1 Answer

Install libtool:

!sudo apt-get update -y -qqq --fix-missing && apt-get install -y -qqq autoconf libtool > /dev/null 
3

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy