comparison src/audio/SDL_audio.c @ 94:ae6e6b73333f

Cleaned up the OpenBSD port, thanks to Peter Valchev
author Sam Lantinga <slouken@lokigames.com>
date Sun, 08 Jul 2001 09:00:06 +0000
parents ac6645260d31
children 43febd46d49d
comparison
equal deleted inserted replaced
93:fc774f445e10 94:ae6e6b73333f
38 #include "SDL_audiomem.h" 38 #include "SDL_audiomem.h"
39 #include "SDL_sysaudio.h" 39 #include "SDL_sysaudio.h"
40 40
41 /* Available audio drivers */ 41 /* Available audio drivers */
42 static AudioBootStrap *bootstrap[] = { 42 static AudioBootStrap *bootstrap[] = {
43 #ifdef OBSD_SUPPORT
44 &OBSD_bootstrap,
45 #endif
43 #ifdef OSS_SUPPORT 46 #ifdef OSS_SUPPORT
44 &DSP_bootstrap, 47 &DSP_bootstrap,
45 &DMA_bootstrap, 48 &DMA_bootstrap,
46 #endif 49 #endif
47 #ifdef ALSA_SUPPORT 50 #ifdef ALSA_SUPPORT
48 &ALSA_bootstrap, 51 &ALSA_bootstrap,
49 #endif
50 #ifdef __OpenBSD__
51 &OBSD_bootstrap,
52 #endif 52 #endif
53 #if (defined(unix) && !defined(__CYGWIN32__)) && \ 53 #if (defined(unix) && !defined(__CYGWIN32__)) && \
54 !defined(OSS_SUPPORT) && !defined(ALSA_SUPPORT) 54 !defined(OSS_SUPPORT) && !defined(ALSA_SUPPORT)
55 &AUDIO_bootstrap, 55 &AUDIO_bootstrap,
56 #endif 56 #endif