Re-write the soundcard.h test, so that it does not use a "!" operator.

This part of configure was failing on solaris, with an error message:

  Checking for soundcard.h ... ./configure: !: not found
  no


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8490 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
jkeil 2002-12-17 10:38:48 +00:00
parent 7176de8ea9
commit 7094fe599b
1 changed files with 5 additions and 4 deletions

9
configure vendored
View File

@ -1930,12 +1930,13 @@ int main(void) { return 0; }
EOF
_soundcard=no
cc_check && _soundcard=yes
if ! linux && test "$_ossaudio" = no ; then
# we don't want touse soundcard.h on non-linux if no OSS support enabled!
if linux || test "$_ossaudio" != no ; then
# use soundcard.h on linux, or when OSS support is enabled
echores "$_soundcard"
else
# we don't want to use soundcard.h on non-linux if no OSS support enabled!
echores "$_soundcard, but ignored!"
_soundcard=no
else
echores "$_soundcard"
fi
if test "$_soundcard" = yes ; then
_def_soundcard='#define HAVE_SOUNDCARD_H 1'