1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-06 03:57:56 +02:00
This commit is contained in:
Jfreegman 2014-07-31 15:13:10 -04:00
commit b243f7aa62
2 changed files with 4 additions and 6 deletions

View File

@ -26,6 +26,7 @@
#ifdef __APPLE__ #ifdef __APPLE__
#include <sys/types.h> #include <sys/types.h>
#include <sys/dir.h> #include <sys/dir.h>
#include <sys/syslimits.h>
#else #else
#include <dirent.h> #include <dirent.h>
#endif /* ifdef __APPLE__ */ #endif /* ifdef __APPLE__ */

View File

@ -37,9 +37,6 @@
#ifdef __APPLE__ #ifdef __APPLE__
#include <OpenAL/al.h> #include <OpenAL/al.h>
#include <OpenAL/alc.h> #include <OpenAL/alc.h>
#ifdef _SOUND_NOTIFY
#include <OpenAL/alut.h> /* Is this good? */
#endif
#else #else
#include <AL/al.h> #include <AL/al.h>
#include <AL/alc.h> #include <AL/alc.h>
@ -47,9 +44,9 @@
#ifndef ALC_ALL_DEVICES_SPECIFIER #ifndef ALC_ALL_DEVICES_SPECIFIER
#include <AL/alext.h> #include <AL/alext.h>
#endif #endif
#ifdef _SOUND_NOTIFY #endif
#include <AL/alut.h> /* freealut packet */ #ifdef _SOUND_NOTIFY
#endif #include <AL/alut.h> /* freealut packet */
#endif #endif
#endif /* _AUDIO */ #endif /* _AUDIO */