source: networking/netlibs/curl.xml@ 63d51c9

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 63d51c9 was b3aacc0, checked in by Randy McMurchy <randy@…>, 11 years ago

Added MD5 sums for the Perl Module tarballs

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

  • Property mode set to 100644
File size: 7.7 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.bz2">
8 <!ENTITY curl-download-ftp " ">
9 <!ENTITY curl-md5sum "7fc605a13d1420b16bd03a2a6b5d7e8e">
10 <!ENTITY curl-size "2.4 MB">
11 <!ENTITY curl-buildsize "33 MB (additional 4 MB for tests)">
12 <!ENTITY curl-time "0.5 SBU (additional 3.5 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
34 <command>curl</command> and its support library
35 <filename class="libraryfile">libcurl</filename>. This is useful for
36 transferring files with URL syntax to any of the following protocols:
37 FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP, TELNET, DICT, LDAP, LDAPS
38 and FILE. This ability to both download and upload files can be
39 incorporated into other programs to support functions like streaming
40 media.
41 </para>
42
43 &lfs72_checked;
44
45 <bridgehead renderas="sect3">Package Information</bridgehead>
46 <itemizedlist spacing="compact">
47 <listitem>
48 <para>
49 Download (HTTP): <ulink url="&curl-download-http;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download (FTP): <ulink url="&curl-download-ftp;"/>
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download MD5 sum: &curl-md5sum;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Download size: &curl-size;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated disk space required: &curl-buildsize;
70 </para>
71 </listitem>
72 <listitem>
73 <para>
74 Estimated build time: &curl-time;
75 </para>
76 </listitem>
77 </itemizedlist>
78
79 <bridgehead renderas="sect3">cURL Dependencies</bridgehead>
80
81 <bridgehead renderas="sect4">Recommended</bridgehead>
82 <para role="recommended">
83 <xref linkend="cacerts"/> and
84 <xref linkend="openssl"/> or <xref linkend="gnutls"/>
85 </para>
86
87 <bridgehead renderas="sect4">Optional</bridgehead>
88 <para role="optional">
89 <ulink url="http://daniel.haxx.se/projects/c-ares/">c-ares</ulink>,
90 <ulink url="http://www.pdc.kth.se/kth-krb/">krb4</ulink>,
91 <xref linkend="libidn"/>,
92 <ulink url="https://launchpad.net/libmetalink/">libmetalink</ulink>,
93 <ulink url="http://www.libssh2.org">libssh2</ulink>,
94 <xref linkend="mitkrb"/>,
95 <xref linkend="openldap"/> and
96 <ulink url="http://www.vintela.com/resources/topics/spnego/">
97 SPNEGO</ulink>
98 </para>
99
100 <bridgehead renderas="sect4">Optional for Running the Test Suite</bridgehead>
101 <para role="optional">
102 <xref linkend="stunnel"/> (for the HTTPS and FTPS tests)
103 </para>
104
105 <para condition="html" role="usernotes">User Notes:
106 <ulink url="&blfs-wiki;/curl"/>
107 </para>
108 </sect2>
109
110 <sect2 role="installation">
111 <title>Installation of cURL</title>
112
113 <para>
114 Install <application>cURL</application> by running the following
115 commands:
116 </para>
117
118<screen><userinput>sed -i '/--static-libs)/{N;s#echo .*#echo #;}' curl-config.in &amp;&amp;
119./configure --prefix=/usr --disable-static --with-ca-path=/etc/ssl/certs &amp;&amp;
120make</userinput></screen>
121
122 <para>
123 To test the results, issue: <command>make check</command>.
124 </para>
125
126 <para>
127 Now, as the <systemitem class="username">root</systemitem>
128 user:
129 </para>
130
131<screen role="root"><userinput>make install &amp;&amp;
132find docs \( -name "Makefile*" -o -name "*.1" -o -name "*.3" \) -exec rm {} \; &amp;&amp;
133install -v -d -m755 /usr/share/doc/curl-&curl-version; &amp;&amp;
134cp -v -R docs/* /usr/share/doc/curl-&curl-version;</userinput></screen>
135 </sect2>
136
137 <sect2 role="commands">
138 <title>Command Explanations</title>
139
140 <para>
141 <command>sed -i '/--static-libs)/{N;s#echo .*#echo #;}'
142 curl-config.in</command>: Since the static libraries have not been installed,
143 this <command>sed</command> removes the static libs line from
144 <command>curl-config</command> as it might otherwise confuse other
145 applications<!--such as pycurl-->.
146 </para>
147
148 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
149 href="../../xincludes/static-libraries.xml"/>
150
151 <para>
152 <parameter>--with-ca-path=/etc/ssl/certs</parameter>: This parameter
153 sets the directory to use as the path to the SSL certificates.
154 If you've not installed <xref linkend="openssl"/> or
155 <xref linkend="gnutls"/> and the <xref linkend="cacerts"/> you can
156 remove this option.
157 </para>
158
159 <para>
160 <option>--with-gssapi</option>: This parameter adds
161 <application>Kerberos 5</application> support to
162 <filename class="libraryfile">libcurl</filename>.
163 </para>
164
165 <para>
166 <option>--without-ssl --with-gnutls</option>: Use to
167 build with <application>GnuTLS</application> support
168 instead of <application>OpenSSL</application> for SSL/TLS.
169 </para>
170
171 <para>
172 <command>find docs \( -name "Makefile*" -o -name "*.1" -o -name "*.3"
173 \) -exec rm {} \;</command>: This command removes
174 <filename>Makefiles</filename> and man files from the documentation
175 directory that would otherwise be installed by the commands that
176 follow.
177 </para>
178
179 </sect2>
180
181 <sect2 role="content">
182 <title>Contents</title>
183
184 <segmentedlist>
185 <segtitle>Installed Programs</segtitle>
186 <segtitle>Installed Library</segtitle>
187 <segtitle>Installed Directories</segtitle>
188
189 <seglistitem>
190 <seg>
191 curl and curl-config
192 </seg>
193 <seg>
194 libcurl.so
195 </seg>
196 <seg>
197 /usr/include/curl and
198 /usr/share/doc/curl-&curl-version;
199 </seg>
200 </seglistitem>
201 </segmentedlist>
202
203 <variablelist>
204 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
205 <?dbfo list-presentation="list"?>
206 <?dbhtml list-presentation="table"?>
207
208 <varlistentry id="curl-prog">
209 <term><command>curl</command></term>
210 <listitem>
211 <para>
212 is a command line tool for transferring files with URL syntax.
213 </para>
214 <indexterm zone="curl curl-prog">
215 <primary sortas="b-curl">curl</primary>
216 </indexterm>
217 </listitem>
218 </varlistentry>
219
220 <varlistentry id="curl-config">
221 <term><command>curl-config</command></term>
222 <listitem>
223 <para>
224 prints information about the last compile, like libraries
225 linked to and prefix setting.
226 </para>
227 <indexterm zone="curl curl-config">
228 <primary sortas="b-curl-config">curl-config</primary>
229 </indexterm>
230 </listitem>
231 </varlistentry>
232
233 <varlistentry id="libcurl">
234 <term><filename class="libraryfile">libcurl.so</filename></term>
235 <listitem>
236 <para>
237 provides the API functions required by
238 <command>curl</command> and other programs.
239 </para>
240 <indexterm zone="curl libcurl">
241 <primary sortas="c-libcurl">libcurl.so</primary>
242 </indexterm>
243 </listitem>
244 </varlistentry>
245
246 </variablelist>
247
248 </sect2>
249
250</sect1>
Note: See TracBrowser for help on using the repository browser.