Home | History | Annotate | Download | only in c-ares
      1 
      2 #ifndef ARES__VERSION_H
      3 #define ARES__VERSION_H
      4 
      5 /* This is the global package copyright */
      6 #define ARES_COPYRIGHT "2004 - 2010 Daniel Stenberg, <daniel (at) haxx.se>."
      7 
      8 #define ARES_VERSION_MAJOR 1
      9 #define ARES_VERSION_MINOR 7
     10 #define ARES_VERSION_PATCH 5
     11 #define ARES_VERSION ((ARES_VERSION_MAJOR<<16)|\
     12                        (ARES_VERSION_MINOR<<8)|\
     13                        (ARES_VERSION_PATCH))
     14 #define ARES_VERSION_STR "1.7.5"
     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