diff options
author | alex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-11-23 16:34:04 +0000 |
---|---|---|
committer | alex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-11-23 16:34:04 +0000 |
commit | 9e1aa8639ec7919ef3a6b37dae2788aefc92b1e0 (patch) | |
tree | 28c426a7060ab6806db1d60545176a71e1c06b41 /configure | |
parent | 17dc008bc56dba303a0ce6cce36e669f5bd621ca (diff) |
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-x | configure | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -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' |