]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/compat.h
Remove unused ProtocolInterface::SendTopic()
[user/henk/code/inspircd.git] / include / compat.h
index 41ae1bbaa601c3fc43c656896c7d9d3438f77040..e7719bcd7c258f8457fd108934c4d31d55214e62 100644 (file)
 #if defined _LIBCPP_VERSION || defined _WIN32
 # define TR1NS std
 # include <unordered_map>
+# include <type_traits>
 #else
 # define TR1NS std::tr1
 # include <tr1/unordered_map>
+# include <tr1/type_traits>
 #endif
 
 /**
@@ -41,7 +43,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
 
@@ -85,7 +86,7 @@
 # if defined __GXX_EXPERIMENTAL_CXX0X__
 #  define HAS_CXX11_VARIADIC_TEMPLATES
 # endif
-#elif _MSC_VER >= 1700
+#elif _MSC_FULL_VER >= 170051025
 # define HAS_CXX11_VARIADIC_TEMPLATES
 #endif
 
@@ -98,7 +99,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