Autoreconf 错误:失败,退出状态:1

Autoreconf 错误:失败,退出状态:1

我尝试在 Colab 上安装mp4fpsmodLinux 4.19.104+ x86_64 Ubuntu 18.04.3 LTS若要重现,请将这三行复制粘贴到Colab单元格并命中shift+enter

!git clone -qqq https://github.com/nu774/mp4fpsmod.git > /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

错误在./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

你知道什么地方出了问题吗?

答案1

安装libtool

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

相关内容