# HG changeset patch # User Ryan C. Gordon # Date 1160207788 0 # Node ID efdfe292bd8808b863cf37c26ad5fb2642372219 # Parent 1806fd1acba467116d6384e28210f9bd11e643c4 Fixed duplicate include-once blockers. diff -r 1806fd1acba4 -r efdfe292bd88 src/audio/baudio/SDL_beaudio.h --- a/src/audio/baudio/SDL_beaudio.h Sat Oct 07 07:54:13 2006 +0000 +++ b/src/audio/baudio/SDL_beaudio.h Sat Oct 07 07:56:28 2006 +0000 @@ -21,8 +21,8 @@ */ #include "SDL_config.h" -#ifndef _SDL_lowaudio_h -#define _SDL_lowaudio_h +#ifndef _SDL_beaudio_h +#define _SDL_beaudio_h #include "../SDL_sysaudio.h" @@ -34,5 +34,6 @@ BSoundPlayer *audio_obj; }; -#endif /* _SDL_lowaudio_h */ +#endif /* _SDL_beaudio_h */ + /* vi: set ts=4 sw=4 expandtab: */ diff -r 1806fd1acba4 -r efdfe292bd88 src/audio/dmedia/SDL_irixaudio.h --- a/src/audio/dmedia/SDL_irixaudio.h Sat Oct 07 07:54:13 2006 +0000 +++ b/src/audio/dmedia/SDL_irixaudio.h Sat Oct 07 07:56:28 2006 +0000 @@ -21,8 +21,8 @@ */ #include "SDL_config.h" -#ifndef _SDL_lowaudio_h -#define _SDL_lowaudio_h +#ifndef _SDL_irixaudio_h +#define _SDL_irixaudio_h #include @@ -37,5 +37,6 @@ Uint8 *mixbuf; /* The app mixing buffer */ }; -#endif /* _SDL_lowaudio_h */ +#endif /* _SDL_irixaudio_h */ + /* vi: set ts=4 sw=4 expandtab: */ diff -r 1806fd1acba4 -r efdfe292bd88 src/audio/sun/SDL_sunaudio.h --- a/src/audio/sun/SDL_sunaudio.h Sat Oct 07 07:54:13 2006 +0000 +++ b/src/audio/sun/SDL_sunaudio.h Sat Oct 07 07:56:28 2006 +0000 @@ -21,8 +21,8 @@ */ #include "SDL_config.h" -#ifndef _SDL_lowaudio_h -#define _SDL_lowaudio_h +#ifndef _SDL_sunaudio_h +#define _SDL_sunaudio_h #include "../SDL_sysaudio.h" @@ -53,5 +53,6 @@ #define fragsize (this->hidden->fragsize) #define frequency (this->hidden->frequency) -#endif /* _SDL_lowaudio_h */ +#endif /* _SDL_sunaudio_h */ + /* vi: set ts=4 sw=4 expandtab: */ diff -r 1806fd1acba4 -r efdfe292bd88 src/audio/windib/SDL_dibaudio.h --- a/src/audio/windib/SDL_dibaudio.h Sat Oct 07 07:54:13 2006 +0000 +++ b/src/audio/windib/SDL_dibaudio.h Sat Oct 07 07:56:28 2006 +0000 @@ -21,8 +21,8 @@ */ #include "SDL_config.h" -#ifndef _SDL_lowaudio_h -#define _SDL_lowaudio_h +#ifndef _SDL_dibaudio_h +#define _SDL_dibaudio_h #include "../SDL_sysaudio.h" @@ -47,5 +47,6 @@ #define wavebuf (this->hidden->wavebuf) #define next_buffer (this->hidden->next_buffer) -#endif /* _SDL_lowaudio_h */ +#endif /* _SDL_dibaudio_h */ + /* vi: set ts=4 sw=4 expandtab: */ diff -r 1806fd1acba4 -r efdfe292bd88 src/audio/windx5/SDL_dx5audio.h --- a/src/audio/windx5/SDL_dx5audio.h Sat Oct 07 07:54:13 2006 +0000 +++ b/src/audio/windx5/SDL_dx5audio.h Sat Oct 07 07:56:28 2006 +0000 @@ -21,8 +21,8 @@ */ #include "SDL_config.h" -#ifndef _SDL_lowaudio_h -#define _SDL_lowaudio_h +#ifndef _SDL_dx5audio_h +#define _SDL_dx5audio_h #include "directx.h" @@ -53,6 +53,6 @@ #define locked_buf (this->hidden->locked_buf) #define audio_event (this->hidden->audio_event) -#endif /* _SDL_lowaudio_h */ +#endif /* _SDL_dx5audio_h */ /* vi: set ts=4 sw=4 expandtab: */