OpenAL on Linux (was Re: [PATCH] Croquet.sh on Ubuntu Breezy)

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

OpenAL on Linux (was Re: [PATCH] Croquet.sh on Ubuntu Breezy)

Conrad Parker
Hi,

similarly to what Bert Freudenberg suggested to find the OpenGL library
on Linux, the following finds the normal (non -dev) OpenAL library:

OpenALUnix>>openALLibraryName
        ^ SmalltalkImage current osVersion = 'linux'
                ifTrue: ['libopenal.so.0']
                ifFalse: ['openal']

If this is used, then there is no need to override OpenAL>>initialize
in OpenALUnix.

(details at http://bugs.impara.de/view.php?id=3427)

Conrad.