summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-23 16:34:04 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-23 16:34:04 +0000
commit9e1aa8639ec7919ef3a6b37dae2788aefc92b1e0 (patch)
tree28c426a7060ab6806db1d60545176a71e1c06b41 /configure
parent17dc008bc56dba303a0ce6cce36e669f5bd621ca (diff)
downloadmpv-9e1aa8639ec7919ef3a6b37dae2788aefc92b1e0.tar.bz2
mpv-9e1aa8639ec7919ef3a6b37dae2788aefc92b1e0.tar.xz
sys/soundcard.h isn't needed for ALSA
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3087 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 0 insertions, 2 deletions
diff --git a/configure b/configure
index edced5869e..d866e130d0 100755
--- a/configure
+++ b/configure
@@ -1731,14 +1731,12 @@ if test "$_alsa" = auto || test "$_alsa" = yes; then
_alsa=no
cat > $TMPC << EOF
#include <sys/asoundlib.h>
-#include <sys/soundcard.h>
int main(void) { return (!(SND_LIB_MAJOR==0 && SND_LIB_MINOR==5)); }
EOF
cc_check -lasound $_ld_dl $_ld_pthread && $TMPO && _alsaver='0.5.x'
cat > $TMPC << EOF
#include <sys/asoundlib.h>
-#include <sys/soundcard.h>
int main(void) { return (!(SND_LIB_MAJOR==0 && SND_LIB_MINOR==9)); }
EOF
cc_check -lasound $_ld_dl $_ld_pthread && $TMPO && _alsaver='0.9.x'