Emulator Issues #799
closedR2801 - Reference to non-existant file /Externals/OpenAL/al/al.h
0%
Description
Updated to R2801, tried to compile. 2 errors due to missing file:
/Externals/OpenAL/al/al.h
Actually found the file is at:
/Externals/OpenAL/include/al.h
Here is the contents of the PATCH file that I made to fix this:
Index: Source/Core/AudioCommon/Src/aldlist.cpp¶
--- Source/Core/AudioCommon/Src/aldlist.cpp (revision 2801)
+++ Source/Core/AudioCommon/Src/aldlist.cpp (working copy)
@@ -23,8 +23,8 @@
*/
#include "aldlist.h"
-#include "../../../../Externals/OpenAL/al/al.h"
-#include "../../../../Externals/OpenAL/al/alc.h"
+#include "../../../../Externals/OpenAL/include/al.h"
+#include "../../../../Externals/OpenAL/include/alc.h"
/*
Index: Source/Core/AudioCommon/Src/OpenALStream.h
--- Source/Core/AudioCommon/Src/OpenALStream.h (revision 2801)
+++ Source/Core/AudioCommon/Src/OpenALStream.h (working copy)
@@ -24,8 +24,8 @@
//#include <list>
//using namespace std;
-#include "../../../../Externals/OpenAL/al/al.h"
-#include "../../../../Externals/OpenAL/al/alc.h"
+#include "../../../../Externals/OpenAL/include/al.h"
+#include "../../../../Externals/OpenAL/include/alc.h"
// public use
#define SFX_MAX_SOURCE 1
Updated by adam over 15 years ago
... and I think this exact change just got committed minutes ago :D
Updated by adam over 15 years ago
Hi bkchaw,
Builds fine now after cleaning up - thanks :)