vlc-android-sdk
vlc-android-sdk copied to clipboard
Impossible to compile due to vlc compile poblems
I tried to compile the vlc lib using your script because it's almost impossible to compie using the instructions in vlc page (https://wiki.videolan.org/AndroidCompile/) The problem is that the same erros happened. Can you give some advice about this? I am using Ubuntu 15 Do I need to downgrade my Ubuntu to 13?
Thanks
These are the errors:
configure.ac:46: installing 'autotools/compile' configure.ac:23: installing 'autotools/config.guess' configure.ac:23: installing 'autotools/config.sub' configure.ac:27: installing 'autotools/install-sh' configure.ac:27: installing 'autotools/missing' parallel-tests: installing 'autotools/test-driver' bin/Makefile.am: installing 'autotools/depcomp' compat/Makefile.am:1: error: Libtool library used but 'LIBTOOL' is undefined compat/Makefile.am:1: The usual way to define 'LIBTOOL' is to add 'LT_INIT' compat/Makefile.am:1: to 'configure.ac' and run 'aclocal' and 'autoconf' again. compat/Makefile.am:1: If 'LT_INIT' is in 'configure.ac', make sure compat/Makefile.am:1: its definition is in aclocal's search path. lib/Makefile.am:31: error: Libtool library used but 'LIBTOOL' is undefined lib/Makefile.am:31: The usual way to define 'LIBTOOL' is to add 'LT_INIT' lib/Makefile.am:31: to 'configure.ac' and run 'aclocal' and 'autoconf' again. lib/Makefile.am:31: If 'LT_INIT' is in 'configure.ac', make sure lib/Makefile.am:31: its definition is in aclocal's search path. modules/Makefile.am:20: error: Libtool library used but 'LIBTOOL' is undefined modules/Makefile.am:20: The usual way to define 'LIBTOOL' is to add 'LT_INIT' modules/Makefile.am:20: to 'configure.ac' and run 'aclocal' and 'autoconf' again. modules/Makefile.am:20: If 'LT_INIT' is in 'configure.ac', make sure modules/Makefile.am:20: its definition is in aclocal's search path. modules/gui/macosx/Makefile.am:18: error: Libtool library used but 'LIBTOOL' is undefined modules/gui/macosx/Makefile.am:18: The usual way to define 'LIBTOOL' is to add 'LT_INIT' modules/gui/macosx/Makefile.am:18: to 'configure.ac' and run 'aclocal' and 'autoconf' again. modules/gui/macosx/Makefile.am:18: If 'LT_INIT' is in 'configure.ac', make sure modules/gui/macosx/Makefile.am:18: its definition is in aclocal's search path. modules/gui/qt/Makefile.am:33: error: Libtool library used but 'LIBTOOL' is undefined modules/gui/qt/Makefile.am:33: The usual way to define 'LIBTOOL' is to add 'LT_INIT' modules/gui/qt/Makefile.am:33: to 'configure.ac' and run 'aclocal' and 'autoconf' again. modules/gui/qt/Makefile.am:33: If 'LT_INIT' is in 'configure.ac', make sure modules/gui/qt/Makefile.am:33: its definition is in aclocal's search path. modules/gui/skins2/Makefile.am:6: error: Libtool library used but 'LIBTOOL' is undefined modules/gui/skins2/Makefile.am:6: The usual way to define 'LIBTOOL' is to add 'LT_INIT' modules/gui/skins2/Makefile.am:6: to 'configure.ac' and run 'aclocal' and 'autoconf' again. modules/gui/skins2/Makefile.am:6: If 'LT_INIT' is in 'configure.ac', make sure modules/gui/skins2/Makefile.am:6: its definition is in aclocal's search path. modules/hw/mmal/Makefile.am:11: error: Libtool library used but 'LIBTOOL' is undefined modules/hw/mmal/Makefile.am:11: The usual way to define 'LIBTOOL' is to add 'LT_INIT' modules/hw/mmal/Makefile.am:11: to 'configure.ac' and run 'aclocal' and 'autoconf' again. modules/hw/mmal/Makefile.am:11: If 'LT_INIT' is in 'configure.ac', make sure modules/hw/mmal/Makefile.am:11: its definition is in aclocal's search path. src/Makefile.am:167: error: Libtool library used but 'LIBTOOL' is undefined src/Makefile.am:167: The usual way to define 'LIBTOOL' is to add 'LT_INIT' src/Makefile.am:167: to 'configure.ac' and run 'aclocal' and 'autoconf' again. src/Makefile.am:167: If 'LT_INIT' is in 'configure.ac', make sure src/Makefile.am:167: its definition is in aclocal's search path. autoreconf: automake failed with exit status: 1 vlc: bootstrap failed :compileVlcArmv7a FAILED
@ssaguiar
execute bellow command
libtoolize
in the same directory from where you have executed the compile.sh command. Faced same problem and its resolved by executing "libtoolize"
Thanks