]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/compat.h
Fix warnings from Doxygen.
[user/henk/code/inspircd.git] / include / compat.h
index 299b32a88bb560758252f7f15f0c640634b605fe..7a95e90505d3e371941966f7e9ccf75074b2dc4b 100644 (file)
  */
 #if defined _LIBCPP_VERSION || defined _WIN32
 # define TR1NS std
+# include <array>
+# include <functional>
 # include <unordered_map>
+# include <type_traits>
 #else
 # define TR1NS std::tr1
+# include <tr1/array>
+# include <tr1/functional>
 # include <tr1/unordered_map>
+# include <tr1/type_traits>
 #endif
 
 /**
@@ -41,7 +47,6 @@
 #if defined __clang__ || defined __GNUC__
 # define CUSTOM_PRINTF(stringpos, firstpos) __attribute__((format(printf, stringpos, firstpos)))
 #else
-# pragma message ("Warning! CUSTOM_PRINTF() does not work on your compiler!")
 # define CUSTOM_PRINTF(stringpos, firstpos)
 #endif
 
@@ -80,7 +85,6 @@
 #elif defined _MSC_VER
 # define DEPRECATED_METHOD(function) __declspec(deprecated) function
 #else
-# pragma message ("Warning! DEPRECATED_METHOD() does not work on your compiler!")
 # define DEPRECATED_METHOD(function) function
 #endif
 
  */
 #if defined _WIN32
 # include "inspircd_win32wrapper.h"
+# include "threadengines/threadengine_win32.h"
 #else
+# define ENTRYPOINT int main(int argc, char** argv)
+# define DllExport __attribute__ ((visibility ("default")))
+# define CoreExport __attribute__ ((visibility ("default")))
 # include <unistd.h>
-# define DllExport
-# define CoreExport
+# include "threadengines/threadengine_pthread.h"
 #endif