Hey everyone,

OpenAL works fine on windows. Now I want to try it on linux.

Turns out that my the openal.pas unit calls:

Code:
LoadLibrary( "libopenal.so" );
While libopenal.so doesn't even exist. However, libopenal.so.1 does exist.

What does this mean? I could simply link to "libopenal.so.1" but would this also work on other systems? Can someone explain why the ".1" is there?

Thanks a bunch!