source: networking/netlibs/curl.xml@ aaa73cfd

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since aaa73cfd was aaa73cfd, checked in by Bruce Dubbs <bdubbs@…>, 9 years ago

Update to curl-7.45.0.
Update to icu4c-56_1.
Update to liblinear-2.1.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@16537 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 8.3 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY curl-download-http "http://curl.haxx.se/download/curl-&curl-version;.tar.lzma">
8 <!ENTITY curl-download-ftp " ">
9 <!ENTITY curl-md5sum "c9a0a77f71fdc6b0f925bc3e79eb77f6">
10 <!ENTITY curl-size "2.7 MB">
11 <!ENTITY curl-buildsize "36 MB (additional 16 MB for tests)">
12 <!ENTITY curl-time "0.3 SBU (additional 10.3 SBU for tests)">
13]>
14
15<sect1 id="curl" xreflabel="cURL-&curl-version;">
16 <?dbhtml filename="curl.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>cURL-&curl-version;</title>
24
25 <indexterm zone="curl">
26 <primary sortas="a-cURL">cURL</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to cURL</title>
31
32 <para>
33 The <application>cURL</application> package contains a utility
34 and a library used for transferring files with URL syntax to any of
35 the following protocols: FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP,
36 TELNET, DICT, LDAP, LDAPS and FILE. Its ability to both download
37 and upload files can be incorporated into other programs to support
38 functions like streaming media.
39 </para>
40
41 &lfs78_checked;
42
43 <bridgehead renderas="sect3">Package Information</bridgehead>
44 <itemizedlist spacing="compact">
45 <listitem>
46 <para>
47 Download (HTTP): <ulink url="&curl-download-http;"/>
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download (FTP): <ulink url="&curl-download-ftp;"/>
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Download MD5 sum: &curl-md5sum;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Download size: &curl-size;
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Estimated disk space required: &curl-buildsize;
68 </para>
69 </listitem>
70 <listitem>
71 <para>
72 Estimated build time: &curl-time;
73 </para>
74 </listitem>
75 </itemizedlist>
76
77 <bridgehead renderas="sect3">cURL Dependencies</bridgehead>
78
79 <bridgehead renderas="sect4">Recommended</bridgehead>
80 <para role="recommended">
81 <xref linkend="cacerts"/> and
82 <xref linkend="openssl"/> or <xref linkend="gnutls"/>
83 </para>
84
85 <bridgehead renderas="sect4">Optional</bridgehead>
86 <para role="optional">
87 <xref linkend="libidn"/>,
88 <xref linkend="mitkrb"/>,
89 <xref linkend="openldap"/>,
90 <xref linkend="samba"/>,
91 <ulink url="http://daniel.haxx.se/projects/c-ares/">c-ares</ulink>,
92 <ulink url="https://launchpad.net/libmetalink/">libmetalink</ulink>,
93 <ulink url="http://www.libssh2.org">libssh2</ulink>, and
94 <ulink url="http://spnego.sourceforge.net/">
95 SPNEGO</ulink>
96 </para>
97
98 <bridgehead renderas="sect4">Optional for Running the Test Suite</bridgehead>
99 <para role="optional">
100 <xref linkend="stunnel"/> (for the HTTPS and FTPS tests) and
101 <xref linkend="valgrind"/>
102 </para>
103
104 <para condition="html" role="usernotes">User Notes:
105 <ulink url="&blfs-wiki;/curl"/>
106 </para>
107 </sect2>
108
109 <sect2 role="installation">
110 <title>Installation of cURL</title>
111
112 <para>
113 Install <application>cURL</application> by running the following
114 commands:
115 </para>
116
117<screen><userinput>./configure --prefix=/usr \
118 --disable-static \
119 --enable-threaded-resolver &amp;&amp;
120make</userinput></screen>
121
122<!-- <para>
123 Running the test suite is optional. About 2% of the tests fail. Increase
124 in test time by each failed test is about 10%. Tests SBU above was
125 obtained disabling failing tests, with:
126 </para>
127
128<screen><userinput>cat &gt;&gt; tests/data/DISABLED &lt;&lt; "EOF"
129<literal>564
130700
131701
132703
133706
134707
135708
136709
137710
138711
139712</literal>
140EOF</userinput></screen>
141
142I had the following fail:
143 300 301 303 304 306 309 310 311 312 325
144 400 401 403 406 407 408 409 560 1112 2034
1452035 2037 2038 2041 2042
146
147 - Bruce 20151016
148
149Tests may be using capabilites removed from recent ssh due to
150security issues.
151
152
153 <para>
154 and running <command>make test</command>.
155 </para>-->
156
157 <para>
158 To run the test suite, issue: <command>make test</command>. Some
159 tests (up to 2%) may fail due to timing issues, kernel configuration,
160 or other issues.
161 </para>
162
163 <para>
164 Now, as the <systemitem class="username">root</systemitem>
165 user:
166 </para>
167
168<screen role="root"><userinput>make install &amp;&amp;
169
170find docs \( -name Makefile\* \
171 -o -name \*.1 \
172 -o -name \*.3 \) \
173 -exec rm {} \; &amp;&amp;
174install -v -d -m755 /usr/share/doc/curl-&curl-version; &amp;&amp;
175cp -v -R docs/* /usr/share/doc/curl-&curl-version;</userinput></screen>
176
177 <para>
178 Simple tests to the new installed <command>curl</command>:
179 <command>curl --trace-ascii debugdump.txt http://www.example.com/</command>
180 and
181 <command>curl --trace-ascii d.txt --trace-time http://example.com/</command>.
182 Inspect the locally created trace files <filename>debugdump.txt</filename>
183 and <filename>d.txt</filename>, which contain version downloaded
184 files information, etc. One file has the time for each action logged.
185 </para>
186 </sect2>
187
188 <sect2 role="commands">
189 <title>Command Explanations</title>
190
191 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
192 href="../../xincludes/static-libraries.xml"/>
193
194 <para>
195 <parameter>--enable-threaded-resolver</parameter>: This switch enables
196 <application>cURL</application>'s builtin threaded DNS resolver.
197 </para>
198
199 <para>
200 <option>--with-gssapi</option>: This parameter adds
201 <application>Kerberos 5</application> support to
202 <filename class="libraryfile">libcurl</filename>.
203 </para>
204
205 <para>
206 <option>--without-ssl --with-gnutls</option>: Use to
207 build with <application>GnuTLS</application> support
208 instead of <application>OpenSSL</application> for SSL/TLS.
209 </para>
210
211 <para>
212 <command>find docs ... -exec rm {} \;</command>: This command removes
213 <filename>Makefiles</filename> and man files from the documentation
214 directory that would otherwise be installed by the commands that follow.
215 </para>
216
217 </sect2>
218
219 <sect2 role="content">
220 <title>Contents</title>
221
222 <segmentedlist>
223 <segtitle>Installed Programs</segtitle>
224 <segtitle>Installed Library</segtitle>
225 <segtitle>Installed Directories</segtitle>
226
227 <seglistitem>
228 <seg>
229 curl and curl-config
230 </seg>
231 <seg>
232 libcurl.so
233 </seg>
234 <seg>
235 /usr/include/curl and
236 /usr/share/doc/curl-&curl-version;
237 </seg>
238 </seglistitem>
239 </segmentedlist>
240
241 <variablelist>
242 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
243 <?dbfo list-presentation="list"?>
244 <?dbhtml list-presentation="table"?>
245
246 <varlistentry id="curl-prog">
247 <term><command>curl</command></term>
248 <listitem>
249 <para>
250 is a command line tool for transferring files with URL syntax.
251 </para>
252 <indexterm zone="curl curl-prog">
253 <primary sortas="b-curl">curl</primary>
254 </indexterm>
255 </listitem>
256 </varlistentry>
257
258 <varlistentry id="curl-config">
259 <term><command>curl-config</command></term>
260 <listitem>
261 <para>
262 prints information about the last compile, like libraries
263 linked to and prefix setting.
264 </para>
265 <indexterm zone="curl curl-config">
266 <primary sortas="b-curl-config">curl-config</primary>
267 </indexterm>
268 </listitem>
269 </varlistentry>
270
271 <varlistentry id="libcurl">
272 <term><filename class="libraryfile">libcurl.so</filename></term>
273 <listitem>
274 <para>
275 provides the API functions required by
276 <command>curl</command> and other programs.
277 </para>
278 <indexterm zone="curl libcurl">
279 <primary sortas="c-libcurl">libcurl.so</primary>
280 </indexterm>
281 </listitem>
282 </varlistentry>
283
284 </variablelist>
285
286 </sect2>
287
288</sect1>
Note: See TracBrowser for help on using the repository browser.