-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy path_libs.html
166 lines (143 loc) · 2.87 KB
/
_libs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
#include "_doctype.html"
<HTML>
<HEAD> <TITLE>cURL - External Dependencies</TITLE>
#include "css.t"
</HEAD>
#define CURL_DOCS
#define PROJ_DOCS
#define DOCS_LIBS
#define CURL_URL docs/libs.html
#include "docs/_menu.html"
#include "setup.t"
WHERE3(Docs, "/docs/", Project Documentation, "/docs/projdocs.html", Dependencies)
TITLE(Dependencies)
<div class="relatedbox">
<b>Related:</b>
<br><a href="/libcurl/relatedlibs.html">Related Libs</a>
<br><a href="/libcurl/competitors.html">libcurl competitors</a>
</div>
<p>
Curl depends on external libraries for some features
(and <a href="/libcurl/">libcurl</a> for all features). You can build curl
without them, but curl gets a lot better if you have a few of these
libraries:
<p>
<table cellpadding="4" cellspacing="0">
<tr class="tabletop"><th>Library</th><th>Used for...</th></tr>
<tr class="even">
<td>
<a href="https://www.openssl.org">OpenSSL</a>
</td>
<td>
TLS (https) support
</td>
</tr>
<tr class="odd">
<td>
<a href="http://www.gzip.org/zlib/">zlib</a>
</td>
<td>
The automatic "deflate" decompression
</td>
</tr>
<tr class="even">
<td>
<a href="http://www.openldap.org">OpenLDAP</a>
</td>
<td>
LDAP support
</td>
</tr>
<tr class="odd">
<td>
<a href="https://tls.mbed.org">mbed TLS</a>
</td>
<td>
TLS (https) support
</td>
</tr>
<tr class="even">
<td>
<a href="https://www.h5l.org">heimdal</a>
</td>
<td>
Support for GSS-API can be provided by the heimdal package and is used to
for provide the Kerberos and SPNEGO authentication in libcurl.
</td>
</tr>
<tr class="odd">
<td>
<a href="http://web.mit.edu/kerberos/">MIT Kerberos</a>
</td>
<td>
The MIT Kerberos package is also a GSS-API library which can be used to
provide support for the Kerberos and SPNEGO authentication in libcurl.
</td>
</tr>
<tr class="even">
<td>
<a href="https://nghttp2.org/">nghttp2</a>
</td>
<td>
For http2 support.
</td>
</tr>
<tr class="odd">
<td>
<a href="https://daniel.haxx.se/projects/c-ares/">c-ares</a>
</td>
<td>
For asynchronous name resolves.
</td>
</tr>
<tr class="even">
<td>
<a href="https://www.gnu.org/software/libidn/">libidn</a>
</td>
<td>
For performing the proper IDNA encodings for international domain names to work.
</td>
</tr>
<tr class="odd">
<td>
<a href="http://www.gnutls.org">GnuTLS</a>
</td>
<td>
TLS (https) support.
</td>
</tr>
<tr class="even">
<td> <a
href="https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS">NSS</a> </td>
<td>
TLS (https) support.
</td>
</tr>
<tr class="odd">
<td>
<a href="https://www.wolfssl.com/">wolfSSL</a>
</td>
<td>
TLS (https) support.
</td>
</tr>
<tr class="even">
<td>
<a href="http://www.libssh2.org/">libssh2</a>
</td>
<td>
For SCP and SFTP support.
</td>
</tr>
<tr class="odd">
<td>
<a href="https://launchpad.net/libmetalink">libmetalink</a>
</td>
<td>
For Metalink support.
</td>
</tr>
</table>
#include "_footer.html"
</BODY>
</HTML>