diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-08-11 23:13:09 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-08-11 23:13:09 +0000 |
commit | 3eb4ae031c3c1f44271ad63b537ed181a773d5d5 (patch) | |
tree | 994b803c03a130c7d3c6d6181c2d78da10b5520b | |
parent | 6a4ec3be81f9a06f316ba1474b0efb9fca089820 (diff) |
Set the CURL_VERSION_ASYNCHDNS bit if USE_ARES is defined.
-rw-r--r-- | lib/version.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/version.c b/lib/version.c index 8191f9593..63ed63c41 100644 --- a/lib/version.c +++ b/lib/version.c @@ -183,6 +183,9 @@ static curl_version_info_data version_info = { #ifdef CURLDEBUG | CURL_VERSION_DEBUG #endif +#ifdef USE_ARES + | CURL_VERSION_ASYNCHDNS +#endif , NULL, /* ssl_version */ 0, /* ssl_version_num */ |