libGL.so

Problem:

libGL.so: cannot open shared object file: No such file or directory

In most cases a proper library exists(here libGL.so.1), but it is not found by the application.
Solution (as root):

cd /usr/lib/
ln -s libGL.so.1 libGL.so

UPDATE: better solution might be here