Posted: 22 Apr 2016, 04:13
Tested on Ubuntu MATE 16.04 LTS
After upgrading your version of Ubuntu, you may notice something odd; RVGL won't start, and demands libglew. To resolve this issue, you would think of doing sudo apt-get install libglew1.10:i386 first but that doesn't exist.
If you tab-complete, libGLEW 1.10 appears to exist, but it simply won't install. You can, on the other hand install libGLEW1.13:i386, as it should stand to reason the newer libGLEW could be equally as capable of helping to run the game, and after doing the following, the game executes and functions as expected with the little bit of testing I had done;
As for what bugs using libGLEW 1.13 may rear, that will come only with time. But for someone who does upgrade their system and need to get their game running, this is the way to do it.
If you're on Linux Mint, my archive of libs in development, projects and tools should still work.
After upgrading your version of Ubuntu, you may notice something odd; RVGL won't start, and demands libglew. To resolve this issue, you would think of doing sudo apt-get install libglew1.10:i386 first but that doesn't exist.
If you tab-complete, libGLEW 1.10 appears to exist, but it simply won't install. You can, on the other hand install libGLEW1.13:i386, as it should stand to reason the newer libGLEW could be equally as capable of helping to run the game, and after doing the following, the game executes and functions as expected with the little bit of testing I had done;
Code: Select all
sudo apt-get install libglew1.13:i386
cd /usr/lib/i386-linux-gnu
sudo ln -s libGLEW.so.1.13 libGLEW.so.1.10 # You can also do this the long way with the full filepath, cd just saves some effort when typed by hand.
If you're on Linux Mint, my archive of libs in development, projects and tools should still work.