From 7094fe599b501acf7e7de2e40437038de7177926 Mon Sep 17 00:00:00 2001 From: jkeil Date: Tue, 17 Dec 2002 10:38:48 +0000 Subject: 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 --- configure | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'configure') diff --git a/configure b/configure index 47f188f355..de371f7e0e 100755 --- a/configure +++ b/configure @@ -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' -- cgit v1.2.3