Hi in ver 0.0.9 of jvlc I see that the source in JVLC.java changed to
System.loadLibrary("jvlc");
However if I try to run any programs that loads the library this way I get an execption :
Exception in thread "main" java.lang.UnsatisfiedLinkError: no jvlc in java.library.path
If i change it to :
System.load(System.getProperty( "user.dir" ) + "/libjvlc.so" );
then it will load fine and everything works.
Can someone please help me?
Thanks