Instale libvlccore-dev
usando o gerenciador de pacotes ou sudo apt-get install libvlccore-dev
. Isso resolverá o problema com ./configure
Estou tentando instalar o vlc-srpos-plugin (um plugin VLC que lembra sua posição de vídeo) no Ubuntu 14.04.
Eu baixei e extrai o libsrpos_plugin - *. tar.gz (para sistemas Linux ou Unix)
As instruções dizem:
- Unix/Linux and similar systems:
Build and install plugin module:
./configure
make
make install
Use configure options to specify VLC include/library/output paths (--with-vlc-*-path options).
Quando executo ./configure
sem opções, fico configurando: error: VLC plugin headers not found
, mas não consigo descobrir quais valores da opção --with-vlc-*-path
usar.
As opções relevantes parecem ter esses nomes:
$ grep "\-\-with\-vlc\-" configure
--with-vlc-include-path location of the VLC SDK headers, defaults to
/usr/include/vlc/plugins
--with-vlc-lib-path location of the vlccore library
--with-vlc-plugin-path location of the VLC plugin modules, defaults to
/usr/include/vlc/plugins
# Check whether --with-vlc-include-path was given.
# Check whether --with-vlc-lib-path was given.
# Check whether --with-vlc-plugin-path was given.
mas que valores devo usar para o Ubuntu 14.04 e o VLC 2.1.4?
$ whereis vlc
vlc: /usr/bin/vlc /usr/lib/vlc /usr/bin/X11/vlc /usr/include/vlc /usr/share/vlc /usr/share/man/man1/vlc.1.gz
Eu instalei libvlc-dev
devido às instruções encontradas em esta questão e aqui , mas o problema existe ainda!
Instale libvlccore-dev
usando o gerenciador de pacotes ou sudo apt-get install libvlccore-dev
. Isso resolverá o problema com ./configure