summaryrefslogtreecommitdiffstats
path: root/libs
diff options
context:
space:
mode:
authorErik Schilling <ablu.erikschilling@googlemail.com>2013-04-07 00:08:46 +0200
committerErik Schilling <ablu.erikschilling@googlemail.com>2013-04-07 00:08:46 +0200
commitf95135686eda29b8677b53e782c849ac2a7a7e37 (patch)
tree803bdc940677442e22949d966587ee8a3612e07e /libs
parent4b57962ee4c10e48956c2888199605bebdb17b8f (diff)
downloadmanaserv-f95135686eda29b8677b53e782c849ac2a7a7e37.tar.gz
manaserv-f95135686eda29b8677b53e782c849ac2a7a7e37.tar.xz
manaserv-f95135686eda29b8677b53e782c849ac2a7a7e37.zip
Fixed undefined #defines in mingw and c++0x
It looks like mingw does not define all the stuff in c++0x it does without.
Diffstat (limited to 'libs')
-rw-r--r--libs/enet/include/enet/enet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/enet/include/enet/enet.h b/libs/enet/include/enet/enet.h
index 716635b..741e87b 100644
--- a/libs/enet/include/enet/enet.h
+++ b/libs/enet/include/enet/enet.h
@@ -12,7 +12,7 @@ extern "C"
#include <stdlib.h>
-#ifdef WIN32
+#ifdef _WIN32
#include "enet/win32.h"
#else
#include "enet/unix.h"