|
42 | 42 | #include "v8.h" // NOLINT(build/include_order)
|
43 | 43 | #include "node_version.h" // NODE_MODULE_VERSION
|
44 | 44 |
|
45 |
| -#if defined(__GNUC__) |
46 |
| -# define NODE_DEPRECATED(message, declarator) \ |
| 45 | +#define IOJS_MAKE_VERSION(major, minor, patch) \ |
| 46 | + ((major) * 0x1000 + (minor) * 0x100 + (patch)) |
| 47 | + |
| 48 | +#ifdef __clang__ |
| 49 | +# define IOJS_CLANG_AT_LEAST(major, minor, patch) \ |
| 50 | + (IOJS_MAKE_VERSION(major, minor, patch) <= \ |
| 51 | + IOJS_MAKE_VERSION(__clang_major__, __clang_minor__, __clang_patchlevel__)) |
| 52 | +#else |
| 53 | +# define IOJS_CLANG_AT_LEAST(major, minor, patch) (0) |
| 54 | +#endif |
| 55 | + |
| 56 | +#ifdef __GNUC__ |
| 57 | +# define IOJS_GNUC_AT_LEAST(major, minor, patch) \ |
| 58 | + (IOJS_MAKE_VERSION(major, minor, patch) <= \ |
| 59 | + IOJS_MAKE_VERSION(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__)) |
| 60 | +#else |
| 61 | +# define IOJS_GNUC_AT_LEAST(major, minor, patch) (0) |
| 62 | +#endif |
| 63 | + |
| 64 | +#if IOJS_CLANG_AT_LEAST(2, 9, 0) || IOJS_GNUC_AT_LEAST(4, 5, 0) |
| 65 | +# define NODE_DEPRECATED(message, declarator) \ |
47 | 66 | __attribute__((deprecated(message))) declarator
|
48 | 67 | #elif defined(_MSC_VER)
|
49 |
| -# define NODE_DEPRECATED(message, declarator) \ |
| 68 | +# define NODE_DEPRECATED(message, declarator) \ |
50 | 69 | __declspec(deprecated) declarator
|
51 | 70 | #else
|
52 |
| -# define NODE_DEPRECATED(message, declarator) \ |
| 71 | +# define NODE_DEPRECATED(message, declarator) \ |
53 | 72 | declarator
|
54 | 73 | #endif
|
55 | 74 |
|
|
0 commit comments