aboutsummaryrefslogtreecommitdiffstats
path: root/version_info.c
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2008-08-07 21:41:48 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2008-08-07 21:41:48 +0000
commit89c9a89b085ffdb035bffb77e4d90f85f5e40dae (patch)
tree5f4f4243098a27485a7cfafb8b317bb0eed0f83e /version_info.c
parent0af22846cef676e618e61d013929eda3b214b939 (diff)
Add support for the c-ares asynchronous DNS resolution library to the
Windows build. Add support for async IPv6 lookups. Update the ADNS code slightly. This is not supported (yet) on the UNIX side. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25953 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'version_info.c')
-rw-r--r--version_info.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/version_info.c b/version_info.c
index 2a20c69b36..459190b62e 100644
--- a/version_info.c
+++ b/version_info.c
@@ -216,6 +216,14 @@ get_epan_compiled_version_info(GString *str)
g_string_append(str, "without SMI");
#endif /* _SMI_H */
+ /* c-ares */
+ g_string_append(str, ", ");
+#ifdef HAVE_C_ARES
+ g_string_append(str, "with c-ares");
+#else
+ g_string_append(str, "without c-ares");
+#endif /* HAVE_C_ARES */
+
/* ADNS */
g_string_append(str, ", ");
#ifdef HAVE_GNU_ADNS