09-09-2010, 06:34 AM
hmm after reading a bit on ubuntu forums it seems that often the problem is that Ubuntu ships with outdated libjpeg versions (62). Often the trick is to make a symbolic link called libjpeg.so.8 that links to the version installed on your system. If you don't have the libjpeg installed at all, you can install it with
You can check which version is in your packet repository by doing
If any version of libjpeg is installed, you can try to place a symbolic link. If you have installed version 62, then you would do
The system would then pretend to have version 8 installed, even though you only have version 62. Can be that it works, then - if no version 8 specific features are needed. If it doesn't work, you'll need to get the sources for version 8 and compile it for your system :o/
Hope it works, though
Code:
sudo apt-get install libjpegYou can check which version is in your packet repository by doing
Code:
sudo apt-cache search libjpegIf any version of libjpeg is installed, you can try to place a symbolic link. If you have installed version 62, then you would do
Code:
ln -s /usr/lib/libjpeg.so.62 /usr/lib/libjpeg.so.8The system would then pretend to have version 8 installed, even though you only have version 62. Can be that it works, then - if no version 8 specific features are needed. If it doesn't work, you'll need to get the sources for version 8 and compile it for your system :o/
Hope it works, though
My Xonstats Profile
Latest track on soundcloud: Farewell - to a better Place (piano improvisation)
New to Xonotic? Check out the Newbie Corner!
Latest track on soundcloud: Farewell - to a better Place (piano improvisation)
New to Xonotic? Check out the Newbie Corner!

