Linux compile fixes

Reapplies a fix from c3e593c20e

Updates libraries (FMOD Studio 1.08.01)

Don't use boost chrono, the standard has chrono!
This commit is contained in:
Lirusaito
2016-05-02 21:17:36 -04:00
parent f0a6ffcabf
commit f14ad54c84
9 changed files with 18 additions and 138 deletions

View File

@@ -31,7 +31,7 @@
#include "llmatrix4a.h"
#include <boost/bind.hpp>
#include <boost/thread/thread.hpp>
#include <thread>
std::list<LLModelLoader*> LLModelLoader::sActiveLoaderList;
@@ -459,7 +459,7 @@ void LLModelLoader::loadModelCallback()
while (!isStopped())
{ //wait until this thread is stopped before deleting self
boost::this_thread::sleep_for(boost::chrono::microseconds(100));
std::this_thread::sleep_for(std::chrono::microseconds(100));
}
//double check if "this" is valid before deleting it, in case it is aborted during running.