1 2 #ifndef ARES__VERSION_H 3 #define ARES__VERSION_H 4 5 /* This is the global package copyright */ 6 #define ARES_COPYRIGHT "2004 - 2017 Daniel Stenberg, <daniel@haxx.se>." 7 8 #define ARES_VERSION_MAJOR 1 9 #define ARES_VERSION_MINOR 14 10 #define ARES_VERSION_PATCH 0 11 #define ARES_VERSION ((ARES_VERSION_MAJOR<<16)|\ 12 (ARES_VERSION_MINOR<<8)|\ 13 (ARES_VERSION_PATCH)) 14 #define ARES_VERSION_STR "1.14.0" 15 16 #if (ARES_VERSION >= 0x010700) 17 # define CARES_HAVE_ARES_LIBRARY_INIT 1 18 # define CARES_HAVE_ARES_LIBRARY_CLEANUP 1 19 #else 20 # undef CARES_HAVE_ARES_LIBRARY_INIT 21 # undef CARES_HAVE_ARES_LIBRARY_CLEANUP 22 #endif 23 24 #endif 25