Hi choyano, welcome to the forums.
It looks like maybe SUSE uses a different name for its OpenAL library than most other distributions. Since you already installed it successfully, then you must have the library...so the question is where is it. To find it there are a few ways. First you could use the locate command, like this:
That should return something with some kind of .so files. Wherever that file is, you can then symlink it (as root) to libopenal.so.1 and vdrift should run OK. Let's say you found it in /usr/lib/libopenal.so, then you would symlink it like this (as root, use "su" to become root first):
Code:
ln -s /usr/lib/libopenal.so /usr/lib/libopenal.so.1
Now when vdrift looks for libopenal.so.1 it will find the symbolic link and follow it to the correct library file.
It's likely installed in somewhere like /lib, /usr/lib, /usr/local/lib, or something like that. Please post your findings here so we can help other Suse users...