diff options
author | Vincent-Michael <Vincent_Michael@gmx.de> | 2014-08-05 17:16:53 +0200 |
---|---|---|
committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2014-08-05 17:16:53 +0200 |
commit | c8956ca6f2370fcc225f4fec8fdebb30646c6ef3 (patch) | |
tree | d289151f03adbcdbdc940e5ab8e3c60e8e89e4c8 /src/server/shared/Utilities/Util.cpp | |
parent | 7e642220293396bd719cf748f6a345d4cc5f4054 (diff) |
Core: Fix build for shit OS
Closes #12597
Diffstat (limited to 'src/server/shared/Utilities/Util.cpp')
-rw-r--r-- | src/server/shared/Utilities/Util.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/server/shared/Utilities/Util.cpp b/src/server/shared/Utilities/Util.cpp index bf40b8ec352..f2c02510ed4 100644 --- a/src/server/shared/Utilities/Util.cpp +++ b/src/server/shared/Utilities/Util.cpp @@ -18,13 +18,14 @@ #include "Util.h" #include "Common.h" +#include "CompilerDefs.h" #include "utf8.h" #include "SFMT.h" #include "Errors.h" // for ASSERT #include <stdarg.h> #include <boost/thread/tss.hpp> -#if PLATFORM == PLATFORM_UNIX +#if COMPILER == COMPILER_GNU #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> |