aboutsummaryrefslogtreecommitdiff
path: root/externals/ace/config-win32.h
diff options
context:
space:
mode:
authorXanadu <none@none>2010-07-20 02:49:28 +0200
committerXanadu <none@none>2010-07-20 02:49:28 +0200
commit79622802f397258ee0f34327ba3ae6977ca3e7ff (patch)
tree1868946c234ab9ee256a6b7766a15713eae94235 /externals/ace/config-win32.h
parent7dd2dc91816ab8b3bc3b99a1b1c99c7ea314d5a8 (diff)
parentf906976837502fa5aa81b982b901d1509f5aa0c4 (diff)
Merge. Revision history for source files should be all back now.
--HG-- branch : trunk rename : sql/CMakeLists.txt => sql/tools/CMakeLists.txt rename : src/server/game/Pools/PoolHandler.cpp => src/server/game/Pools/PoolMgr.cpp rename : src/server/game/Pools/PoolHandler.h => src/server/game/Pools/PoolMgr.h rename : src/server/game/PrecompiledHeaders/NixCorePCH.cpp => src/server/game/PrecompiledHeaders/gamePCH.cpp rename : src/server/game/PrecompiledHeaders/NixCorePCH.h => src/server/game/PrecompiledHeaders/gamePCH.h
Diffstat (limited to 'externals/ace/config-win32.h')
-rw-r--r--externals/ace/config-win32.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/externals/ace/config-win32.h b/externals/ace/config-win32.h
new file mode 100644
index 00000000000..af946518cae
--- /dev/null
+++ b/externals/ace/config-win32.h
@@ -0,0 +1,55 @@
+/* -*- C++ -*- */
+//=============================================================================
+/**
+ * @file config-win32.h
+ *
+ * $Id: config-win32.h 85057 2009-04-08 10:59:58Z msmit $
+ *
+ * @brief Microsoft Windows configuration file.
+ *
+ * This file is the ACE configuration file for all of Microsoft Windows
+ * platforms that ACE runs on. Based on preprocessor definitions, it
+ * includes other more specific configuration files.
+ *
+ * @author Darrell Brunsch <brunsch@cs.wustl.edu>
+ */
+//=============================================================================
+
+#ifndef ACE_CONFIG_WIN32_H
+#define ACE_CONFIG_WIN32_H
+#include /**/ "ace/pre.h"
+
+// NOTE: Please do not add anything besides #include's here. Put other stuff
+// (definitions, etc.) in the included headers
+
+// We need to ensure that for Borland vcl.h can be included before
+// windows.h. So we will not include config-win32-common.h from here,
+// but instead let it be included at the appropriate place in
+// config-win32-borland.h.
+#if !defined (__BORLANDC__)
+# include "ace/config-win32-common.h"
+#endif /* !__BORLANDC__ */
+
+// Include the config-win32-* file specific to the compiler
+#if defined (__BORLANDC__)
+# include "ace/config-win32-borland.h"
+#elif defined (_MSC_VER)
+# include "ace/config-win32-msvc.h"
+#elif defined (ghs)
+# include "ace/config-win32-ghs.h"
+#elif defined (ACE_HAS_CEGCC) //need to be prior to MINGW32
+# include "ace/config-win32-cegcc.h"
+#elif defined (__MINGW32__)
+# include "ace/config-win32-mingw.h"
+#elif defined (__DMC__)
+# include "ace/config-win32-dmc.h"
+#else
+# error Compiler is not supported
+#endif
+
+// gethostbyaddr does not handle IPv6-mapped-IPv4 addresses
+#define ACE_HAS_BROKEN_GETHOSTBYADDR_V4MAPPED
+
+#include /**/ "ace/post.h"
+#endif /* ACE_CONFIG_WIN32_H */
+