Core: Fix non pch build (gcc)

This commit is contained in:
Vincent-Michael
2014-07-20 02:54:12 +02:00
parent a59ec8c8e9
commit 0531f52008
10 changed files with 26 additions and 9 deletions

View File

@@ -21,8 +21,15 @@
#include "utf8.h"
#include "SFMT.h"
#include "Errors.h" // for ASSERT
#include <stdarg.h>
#include <boost/thread/tss.hpp>
#if PLATFORM == PLATFORM_UNIX
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#endif
static boost::thread_specific_ptr<SFMTRand> sfmtRand;
static SFMTRand* GetRng()