blob: 0357f54789eff25ef04ffed06e8e60e7513e65a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
/*
* InspIRCd -- Internet Relay Chat Daemon
*
* Copyright (C) 2013 Peter Powell <petpow@saberuk.com>
* Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
* Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
*
* This file is part of InspIRCd. InspIRCd is free software: you can
* redistribute it and/or modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation, version 2.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
/**
* Some implementations of the C++11 standard library are incomplete so we use
* the implementation of the same types from C++ Technical Report 1 instead.
*/
#if defined _LIBCPP_VERSION || defined _WIN32
# define TR1NS std
# include <unordered_map>
#else
# define TR1NS std::tr1
# include <tr1/unordered_map>
#endif
/**
* This macro enables the compile-time checking of printf format strings. This
* makes the compiler show a warning if the format of a printf arguments are
* incorrect.
*/
#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
/**
* These macros enable the use of the C++11 override control keywords in
* compilers which support them.
*/
#if __cplusplus >= 201103L
# define HAS_CXX11_FINAL_OVERRIDE
#elif defined __clang__
# if __has_feature(cxx_override_control)
# define HAS_CXX11_FINAL_OVERRIDE
# endif
#elif (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 7)
# if defined __GXX_EXPERIMENTAL_CXX0X__
# define HAS_CXX11_FINAL_OVERRIDE
# endif
#elif _MSC_VER >= 1700
# define HAS_CXX11_FINAL_OVERRIDE
#endif
#if defined HAS_CXX11_FINAL_OVERRIDE
# define CXX11_FINAL final
# define CXX11_OVERRIDE override
#else
# define CXX11_FINAL
# define CXX11_OVERRIDE
#endif
/**
* These macros enable the detection of the C++11 variadic templates in
* compilers which support them.
*/
#if __cplusplus >= 201103L
# define HAS_CXX11_VARIADIC_TEMPLATES
#elif defined __clang__
# if __has_feature(cxx_variadic_templates)
# define HAS_CXX11_VARIADIC_TEMPLATES
# endif
#elif (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)
# if defined __GXX_EXPERIMENTAL_CXX0X__
# define HAS_CXX11_VARIADIC_TEMPLATES
# endif
#elif _MSC_FULL_VER >= 170051025
# define HAS_CXX11_VARIADIC_TEMPLATES
#endif
/**
* This macro allows methods to be marked as deprecated. To use this, wrap the
* method declaration in the header file with the macro.
*/
#if defined __clang__ || defined __GNUC__
# define DEPRECATED_METHOD(function) function __attribute__((deprecated))
#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
/**
* Windows is very different to UNIX so we have to wrap certain features in
* order to build on Windows correctly.
*/
#if defined _WIN32
# include "inspircd_win32wrapper.h"
#else
# include <unistd.h>
# define ENTRYPOINT int main(int argc, char** argv)
# define DllExport __attribute__ ((visibility ("default")))
# define CoreExport __attribute__ ((visibility ("default")))
#endif
|