summaryrefslogtreecommitdiff
path: root/src/third_party/cares/platform/MacOS_aarch64/install/include/ares_version.h
diff options
context:
space:
mode:
authorDev User for Testing <dev-user@macos-1100-arm64-dev.macstadium.build.10gen.cc>2022-09-24 23:22:22 -0400
committerDev User for Testing <dev-user@macos-1100-arm64-dev.macstadium.build.10gen.cc>2022-09-24 23:22:22 -0400
commit165ba5e6a4fe6185cc5e1e4a5bc7c8d76c3c4067 (patch)
tree4b5ecb8b26c93f1d6224d612f531448bac77020b /src/third_party/cares/platform/MacOS_aarch64/install/include/ares_version.h
parent46ab7cb312883057f6b6564f2340a4fd0a417df4 (diff)
downloadmongo-165ba5e6a4fe6185cc5e1e4a5bc7c8d76c3c4067.tar.gz
added arm64SERVER-68365
Diffstat (limited to 'src/third_party/cares/platform/MacOS_aarch64/install/include/ares_version.h')
-rw-r--r--src/third_party/cares/platform/MacOS_aarch64/install/include/ares_version.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/third_party/cares/platform/MacOS_aarch64/install/include/ares_version.h b/src/third_party/cares/platform/MacOS_aarch64/install/include/ares_version.h
new file mode 100644
index 00000000000..4b16a62cc61
--- /dev/null
+++ b/src/third_party/cares/platform/MacOS_aarch64/install/include/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 - 2020 Daniel Stenberg, <daniel@haxx.se>."
+
+#define ARES_VERSION_MAJOR 1
+#define ARES_VERSION_MINOR 17
+#define ARES_VERSION_PATCH 0
+#define ARES_VERSION ((ARES_VERSION_MAJOR<<16)|\
+ (ARES_VERSION_MINOR<<8)|\
+ (ARES_VERSION_PATCH))
+#define ARES_VERSION_STR "1.17.0"
+
+#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