comparison src/audio/dsp/SDL_dspaudio.c @ 1361:19418e4422cb

New configure-based build system. Still work in progress, but much improved
author Sam Lantinga <slouken@libsdl.org>
date Thu, 16 Feb 2006 10:11:48 +0000
parents c71e05b4dc2e
children d910939febfa
comparison
equal deleted inserted replaced
1360:70a9cfb4cf1b 1361:19418e4422cb
32 #include <fcntl.h> 32 #include <fcntl.h>
33 #include <signal.h> 33 #include <signal.h>
34 #include <sys/time.h> 34 #include <sys/time.h>
35 #include <sys/ioctl.h> 35 #include <sys/ioctl.h>
36 #include <sys/stat.h> 36 #include <sys/stat.h>
37 #ifdef OSS_USE_SOUNDCARD_H 37
38 #include "SDL_config.h"
39
40 #if SDL_AUDIO_DRIVER_OSS_SOUNDCARD_H
38 /* This is installed on some systems */ 41 /* This is installed on some systems */
39 #include <soundcard.h> 42 #include <soundcard.h>
40 #else 43 #else
41 /* This is recommended by OSS */ 44 /* This is recommended by OSS */
42 #include <sys/soundcard.h> 45 #include <sys/soundcard.h>
43 #endif 46 #endif
44 47
45 #include "SDL_timer.h" 48 #include "SDL_timer.h"
46 #include "SDL_audio.h" 49 #include "SDL_audio.h"
47 #include "SDL_audiomem.h" 50 #include "../SDL_audiomem.h"
48 #include "SDL_audio_c.h" 51 #include "../SDL_audio_c.h"
49 #include "SDL_audiodev_c.h" 52 #include "../SDL_audiodev_c.h"
50 #include "SDL_dspaudio.h" 53 #include "SDL_dspaudio.h"
51 54
52 /* The tag name used by DSP audio */ 55 /* The tag name used by DSP audio */
53 #define DSP_DRIVER_NAME "dsp" 56 #define DSP_DRIVER_NAME "dsp"
54 57