Also accept OpenAL32 as library name for OpenAL, it is used by some Windows-Implementations

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25937 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2008-01-30 21:46:20 +00:00
parent dd44ed5d84
commit ca8decea78
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -5173,7 +5173,7 @@ int main(void) {
return 0;
}
EOF
for I in "-lopenal" "-framework OpenAL" ; do
for I in "-lopenal" "-lopenal32" "-framework OpenAL" ; do
cc_check $I && _openal=yes && break
cc_check -DOPENAL_AL_H=1 $I && _def_openal_h='#define OPENAL_AL_H 1' && _openal=yes && break
done