diff options
author | Thomas Lauro <frozon@gmail.com> | 2012-07-25 15:56:09 +0200 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2012-09-01 18:19:59 +0300 |
commit | 7a14171be4cdb2d78b9cb361b4fc10137ba3299c (patch) | |
tree | bfdf163977c7cc4e933a5f9c5a8901603a691d4d | |
parent | 5194505407884f6375311f0ab4c5f8783646cb91 (diff) | |
download | minetest-7a14171be4cdb2d78b9cb361b4fc10137ba3299c.tar.gz minetest-7a14171be4cdb2d78b9cb361b4fc10137ba3299c.tar.bz2 minetest-7a14171be4cdb2d78b9cb361b4fc10137ba3299c.zip |
Fix issue with openal mac os x compile
-rw-r--r-- | src/sound_openal.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sound_openal.cpp b/src/sound_openal.cpp index d2f7276a6..c78f6288f 100644 --- a/src/sound_openal.cpp +++ b/src/sound_openal.cpp @@ -30,7 +30,7 @@ with this program; ifnot, write to the Free Software Foundation, Inc., #elif defined(__APPLE__) #include <OpenAL/al.h> #include <OpenAL/alc.h> - #include <OpenAL/alext.h> + //#include <OpenAL/alext.h> #else #include <AL/al.h> #include <AL/alc.h> |