summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-10 14:07:08 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-12-10 14:07:08 +0000
commit7d4e8a36bbcac432c41780f0a753ee5723312124 (patch)
treea1160d56ac8f4935677ee24169b52b25e586aaca /configure
parent7831dacd5d07fe84114e9fe37df63bb854eff168 (diff)
downloadmpv-7d4e8a36bbcac432c41780f0a753ee5723312124.tar.bz2
mpv-7d4e8a36bbcac432c41780f0a753ee5723312124.tar.xz
Support OpenAL headers in OpenAL/ instead of AL/ and OpenAL on MacOSX in general.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21572 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure14
1 files changed, 10 insertions, 4 deletions
diff --git a/configure b/configure
index 804a7e2b01..89756007db 100755
--- a/configure
+++ b/configure
@@ -4929,17 +4929,22 @@ echocheck "OpenAL"
if test "$_openal" = auto ; then
_openal=no
cat > $TMPC << EOF
+#ifdef OPENAL_AL_H
+#include <OpenAL/al.h>
+#else
#include <AL/al.h>
+#endif
int main(void) {
alSourceQueueBuffers(0, 0, 0);
// alGetSourcei(0, AL_SAMPLE_OFFSET, 0);
return 0;
}
EOF
- if cc_check -lopenal ; then
- _libs_mplayer="$_libs_mplayer -lopenal"
- _openal=yes
- fi
+ for I in "-lopenal" "-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
+ test "$_openal" = yes && _libs_mplayer="$_libs_mplayer $I"
fi
if test "$_openal" = yes ; then
_def_openal='#define USE_OPENAL 1'
@@ -7916,6 +7921,7 @@ $_def_esd_latency
$_def_polyp
$_def_jack
$_def_openal
+$_def_openal_h
$_def_sys_asoundlib_h
$_def_alsa_asoundlib_h
$_def_sunaudio