mirror of
https://github.com/nodejs/node.git
synced 2025-05-19 09:44:08 +00:00

Fixes: https://github.com/iojs/io.js/issues/1676 PR-URL: https://github.com/iojs/io.js/pull/1678 Reviewed-By: Fedor Indutny <fedor@indutny.com> Reviewed-By: Trevor Norris <trev.norris@gmail.com>
25 lines
652 B
C
25 lines
652 B
C
|
|
#ifndef ARES__VERSION_H
|
|
#define ARES__VERSION_H
|
|
|
|
/* This is the global package copyright */
|
|
#define ARES_COPYRIGHT "2004 - 2013 Daniel Stenberg, <daniel@haxx.se>."
|
|
|
|
#define ARES_VERSION_MAJOR 1
|
|
#define ARES_VERSION_MINOR 10
|
|
#define ARES_VERSION_PATCH 1
|
|
#define ARES_VERSION ((ARES_VERSION_MAJOR<<16)|\
|
|
(ARES_VERSION_MINOR<<8)|\
|
|
(ARES_VERSION_PATCH))
|
|
#define ARES_VERSION_STR "1.10.1-DEV"
|
|
|
|
#if (ARES_VERSION >= 0x010700)
|
|
# define CARES_HAVE_ARES_LIBRARY_INIT 1
|
|
# define CARES_HAVE_ARES_LIBRARY_CLEANUP 1
|
|
#else
|
|
# undef CARES_HAVE_ARES_LIBRARY_INIT
|
|
# undef CARES_HAVE_ARES_LIBRARY_CLEANUP
|
|
#endif
|
|
|
|
#endif
|