Сборка vlclib из исходного кода на Windows - PullRequest
0 голосов
/ 06 августа 2020

Я столкнулся с некоторыми проблемами при сборке libvl c из исходников. Я следую инструкциям Win32Compile . Но когда я запускаю ./bootstrap из MSYS2, я получаю следующие ошибки:

# ./bootstrap
NOTE: autopoint (GNU gettext-tools) appears to be missing or out-of-date.
Please install or update GNU gettext tools.
Otherwise, you will not be able to build a source tarball.
==========================================================================

autoreconf: Entering directory `.'
autoreconf: running: true --force
autoreconf: running: aclocal -I m4 --force -I m4
' is already registered with AC_CONFIG_FILES.
../../lib/autoconf/status.m4:288: AC_CONFIG_FILES is expanded from...
/usr/share/aclocal-1.16/cond-if.m4:23: AM_COND_IF is expanded from...
configure.ac:4366: the top level
autom4te: /usr/bin/m4 failed with exit status: 1
aclocal-1.16: error: echo failed with exit status: 1
autoreconf: aclocal failed with exit status: 1

Я установил gettext и mingw-w64-x86_64-gettext. autopoint не может быть найден MSYS2. Как я могу собрать libvl c для Windows? Почему это так сложно? В общем, я бы хотел иметь сценарий, чтобы я мог ссылаться на libvl c при сборке на сервере CI.

...