• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Compiling OTC error

jackl90

Member
Joined
Jul 25, 2017
Messages
249
Reaction score
12
Code:
1>c:\users\server\desktop\otclient-master\src\framework\sound\declarations.h(30): fatal error C1083: Cannot open include file: 'AL/al.h': No such file or directory (compiling source file ..\src\framework\core\graphicalapplication.cpp)
1>module.cpp
1>Unknown compiler version - please run the configure tests and report the results
1>modulemanager.cpp
1>Unknown compiler version - please run the configure tests and report the results
1>resourcemanager.cpp
1>Unknown compiler version - please run the configure tests and report the results
1>scheduledevent.cpp
1>Unknown compiler version - please run the configure tests and report the results
1>timer.cpp
1>Unknown compiler version - please run the configure tests and report the results
1>Done building project "otclient.vcxproj" -- FAILED.
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

Using visual studio 2017, release win32
 
Code:
1>c:\users\server\desktop\otclient-master\src\framework\sound\declarations.h(30): fatal error C1083: Cannot open include file: 'AL/al.h': No such file or directory (compiling source file ..\src\framework\core\graphicalapplication.cpp)
1>module.cpp
1>Unknown compiler version - please run the configure tests and report the results
1>modulemanager.cpp
1>Unknown compiler version - please run the configure tests and report the results
1>resourcemanager.cpp
1>Unknown compiler version - please run the configure tests and report the results
1>scheduledevent.cpp
1>Unknown compiler version - please run the configure tests and report the results
1>timer.cpp
1>Unknown compiler version - please run the configure tests and report the results
1>Done building project "otclient.vcxproj" -- FAILED.
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

Using visual studio 2017, release win32
Change these lines:
To this:
C++:
#include <al.h>
#include <alc.h>
 
Back
Top