aboutsummaryrefslogtreecommitdiff
path: root/ares_version.h
diff options
context:
space:
mode:
authorGilad Arnold <garnold@google.com>2015-07-17 00:23:30 -0700
committerGilad Arnold <garnold@google.com>2015-07-17 16:18:06 -0700
commit968bf19396ad404e89420f5d67900fce13f4186c (patch)
treedf6210e63ac2b96d6e638cb288a07776d1373cf5 /ares_version.h
parent9ade30bfaf6d122f95d862c10092b1f817b8f119 (diff)
downloadc-ares-968bf19396ad404e89420f5d67900fce13f4186c.tar.gz
Initial c-ares-1.7.5 distribution.
Includes NOTICE and MODULE_LICENSE_MIT files. Omitted: - m4/ - vc/ - *.pdf - *.[13] - Makefile.{Watcom,dj,m32,msvc,netware} Bug: 22545809
Diffstat (limited to 'ares_version.h')
-rw-r--r--ares_version.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/ares_version.h b/ares_version.h
new file mode 100644
index 0000000..50eb638
--- /dev/null
+++ b/ares_version.h
@@ -0,0 +1,24 @@
+
+#ifndef ARES__VERSION_H
+#define ARES__VERSION_H
+
+/* This is the global package copyright */
+#define ARES_COPYRIGHT "2004 - 2010 Daniel Stenberg, <daniel@haxx.se>."
+
+#define ARES_VERSION_MAJOR 1
+#define ARES_VERSION_MINOR 7
+#define ARES_VERSION_PATCH 5
+#define ARES_VERSION ((ARES_VERSION_MAJOR<<16)|\
+ (ARES_VERSION_MINOR<<8)|\
+ (ARES_VERSION_PATCH))
+#define ARES_VERSION_STR "1.7.5"
+
+#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