diff src/audio/SDL_audio.c @ 35:d3bc792e136d

Added detection of Open Sound System on Solaris x86
author Sam Lantinga <slouken@lokigames.com>
date Wed, 23 May 2001 00:36:17 +0000
parents 75a95f82bc1f
children 3ad7157c6cfa
line wrap: on
line diff
--- a/src/audio/SDL_audio.c	Wed May 23 00:06:08 2001 +0000
+++ b/src/audio/SDL_audio.c	Wed May 23 00:36:17 2001 +0000
@@ -40,11 +40,6 @@
 
 /* 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 @@
 #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