Added detection of Open Sound System on Solaris x86

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%4036
This commit is contained in:
Sam Lantinga 2001-05-23 00:36:17 +00:00
parent 0445aeab47
commit 09112109c3
6 changed files with 14 additions and 52 deletions

View file

@ -40,11 +40,6 @@ static char rcsid =
/* Available audio drivers */
static AudioBootStrap *bootstrap[] = {
#if defined(unix) && \
!defined(linux) && !defined(__FreeBSD__) && !defined(__CYGWIN32__) \
&& !defined(__bsdi__)
&AUDIO_bootstrap,
#endif
#ifdef OSS_SUPPORT
&DSP_bootstrap,
&DMA_bootstrap,
@ -52,6 +47,10 @@ static AudioBootStrap *bootstrap[] = {
#ifdef ALSA_SUPPORT
&ALSA_bootstrap,
#endif
#if (defined(unix) && !defined(__CYGWIN32__)) && \
!defined(OSS_SUPPORT) && !defined(ALSA_SUPPORT)
&AUDIO_bootstrap,
#endif
#ifdef ARTSC_SUPPORT
&ARTSC_bootstrap,
#endif