Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
437afe07
Commit
437afe07
authored
21 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
curl-config now shows asyncdns if built with ares enabled
parent
0ab2dff6
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGES
+5
-0
5 additions, 0 deletions
CHANGES
configure.ac
+3
-1
3 additions, 1 deletion
configure.ac
curl-config.in
+3
-0
3 additions, 0 deletions
curl-config.in
with
11 additions
and
1 deletion
CHANGES
+
5
−
0
View file @
437afe07
...
...
@@ -7,6 +7,11 @@
Changelog
Daniel (8 December)
- Based on a patch from Dominick Meglio, curl-config --feature now outputs
'AsynchDNS' as a feature if libcurl was built with ares. The feature name
is the same that 'curl -V' outputs, for simplicity.
Daniel (3 December)
- Marty Kuhrt made the build up-to-date on VMS, and moved most of the VMS-
specific stuff in the client code to a separate header file.
...
...
This diff is collapsed.
Click to expand it.
configure.ac
+
3
−
1
View file @
437afe07
...
...
@@ -1043,7 +1043,9 @@ AC_HELP_STRING([--disable-ares],[Disable using ares for name lookups]),
fi
AC_DEFINE(USE_ARES, 1, [Define if you want to enable ares support])
dnl substitute HAVE_ARES for curl-config and similar
HAVE_ARES="1"
AC_SUBST(HAVE_ARES)
ares="yes"
;;
esac ],
...
...
This diff is collapsed.
Click to expand it.
curl-config.in
+
3
−
0
View file @
437afe07
...
...
@@ -90,6 +90,9 @@ while test $# -gt 0; do
if
test
"@CURL_DISABLE_DICT@"
=
"1"
;
then
echo
"DICT-disabled"
fi
if
test
"@HAVE_ARES@"
=
"1"
;
then
echo
"AsynchDNS"
fi
;;
--version
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment