Changed: #872 include path are not the same for openal on mac (patch by rti)

This commit is contained in:
vl 2010-05-13 19:01:07 +02:00
parent 841daea6da
commit 4950682c80

View file

@ -35,8 +35,13 @@
#include <algorithm> #include <algorithm>
#include <limits> #include <limits>
#include <AL/al.h> #ifdef NL_OS_MAC
#include <AL/alc.h> # include <al.h>
# include <alc.h>
#else
# include <AL/al.h>
# include <AL/alc.h>
#endif
#include <nel/misc/common.h> #include <nel/misc/common.h>
#include <nel/misc/debug.h> #include <nel/misc/debug.h>