I just got the plugin running on my Linux MINT 17 Qiana, which wasn't that easy. I'm happy to share my experiences because I think some of you will run into similar issues:
First I dropped the libhtsp_plugin.so in /usr/lib/vlc/plugins/access. But the plugin was not detected when starting VLC.
To get details what went wrong, I called vlc from the command line with
vlc -vv
Among lots of clutter it told me that there is a missing shared library the plugin is depending on:
[0x1484118] main libvlc warning: cannot load module
`/usr/lib/vlc/plugins/access/libhtsp_plugin.so' (libvlccore.so.8:
cannot open shared object file: No such file or directory)
Too bad, the latest Mint only provides libvlccore.so.7 so I decided to rebuild the plugin to make sure the compiler picks the libs as they are on my system. Here are the steps:
# Download the complete source Workspace as libhtps_plugin_workspace.zip from
http://ci.btbn.de/job/vlc-htsp-plugin/PLATFORM=linux_x64,label=linux/ws/
# Extract the zip and enter the folder.
unzip libhtps_plugin_workspace.zip
cd linux
# There is an old build in it, so first clean everything
make clean
# If your're getting this, then you're missing the VLC development libraries
Package vlc-plugin was not found in the pkg-config search path.
Perhaps you should add the directory containing `vlc-plugin.pc'
to the PKG_CONFIG_PATH environment variable
No package 'vlc-plugin' found
# Install the missing libs:
sudo apt-get install libvlccore-dev
sudo apt-get install libvlc-dev
# Now, run make again
make clean
make
# If successful, copy the new .so to the plugin folder
sudo cp libhtsp_plugin.so /usr/lib/vlc/plugins/access/
# Now restart VLC an see if the error message has disappeared.
vlc -vv
# Setup the the plugin in VLC as described above and have fun!