diff src/audio/SDL_audio.c @ 148:8758b8d42cd9

Audio subsystem no longer assumes sun audio API on UNIX systems
author Sam Lantinga <slouken@libsdl.org>
date Thu, 09 Aug 2001 13:09:47 +0000
parents 43febd46d49d
children e8157fcb3114
line wrap: on
line diff
--- a/src/audio/SDL_audio.c	Thu Aug 09 13:06:32 2001 +0000
+++ b/src/audio/SDL_audio.c	Thu Aug 09 13:09:47 2001 +0000
@@ -50,9 +50,11 @@
 #ifdef ALSA_SUPPORT
 	&ALSA_bootstrap,
 #endif
-#if (defined(unix) && !defined(__CYGWIN32__)) && \
-    !defined(OSS_SUPPORT) && !defined(ALSA_SUPPORT)
-	&AUDIO_bootstrap,
+#ifdef SUNAUDIO_SUPPORT
+	&SUNAUDIO_bootstrap,
+#endif
+#ifdef DMEDIA_SUPPORT
+	&DMEDIA_bootstrap,
 #endif
 #ifdef ARTSC_SUPPORT
 	&ARTSC_bootstrap,