hello,
I do not want to use divx, that's why I installed xvid. I installed xvidcore 1.1beta2 from tarball successfully and wanted to watch an avi file.
But xine reports an error message problem loading the following library: divxc32.dll
How can I xine give the order to use xvid? (Is this the problem???)
There is something written in the README about symlinks but I do not understand the examples.
In /usr/local/lib/ there is a libxvidcore.so.4.1.
Can anyone help me?
Code:
Voila, xvidcore is installed on your system, make sure your runtime
linker knows about the xvidcore prefix lib dir where it is
installed. And make also sure that it generates a symlink to its
SONAME. In case it would do not take care of the symlink itself:
# cd ${prefix}/lib
# ls libxvidcore.so.*
ls should list at least one libxvidcore.so.MAJOR.MINOR file
# ln -s libxvidcore.so.MAJOR.MINOR libxvidcore.so.MAJOR
You may also add a .so link to .so.MAJOR, so that applications linked
against .so are in fact linked to .so.MAJOR and thus ensures better
binary compatibility as we take care not changing the MAJOR number
until there is an incompatible ABI change.
# ln -s libxvidcore.so.MAJOR libxvidcore.so