source: basicnet/netlibs/curl.xml@ dca2fac3

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 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 dca2fac3 was dca2fac3, checked in by Randy McMurchy <randy@…>, 20 years ago

Updated to cURL-7.12.2

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

  • Property mode set to 100644
File size: 3.6 KB
Line 
1<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
2 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../../general.ent">
4 %general-entities;
5
6 <!ENTITY curl-download-http "http://curl.haxx.se/download/curl-&curl-version;.tar.bz2">
7 <!ENTITY curl-download-ftp "ftp://ftp.fu-berlin.de/pub/unix/network/curl/curl-&curl-version;.tar.bz2">
8 <!ENTITY curl-size "1.2 MB">
9 <!ENTITY curl-buildsize "21.7 MB">
10 <!ENTITY curl-time "0.38 SBU (additional 2.31 SBU to run test suite)">
11]>
12
13<sect1 id="curl" xreflabel="cURL-&curl-version;">
14<sect1info>
15<othername>$LastChangedBy$</othername>
16<date>$Date$</date>
17</sect1info>
18<?dbhtml filename="curl.html"?>
19<title>cURL-&curl-version;</title>
20
21<sect2>
22<title>Introduction to <application>cURL</application></title>
23
24<para>The <application>cURL</application> package contains
25<command>curl</command> and its support library. This is useful for
26transferring files with <acronym>URL</acronym> syntax. This ability to both
27download and redirect files can be incorporated into other programs to support
28functions like streaming media.</para>
29
30<sect3><title>Package information</title>
31<itemizedlist spacing='compact'>
32<listitem><para>Download (HTTP): <ulink url="&curl-download-http;"/></para></listitem>
33<listitem><para>Download (FTP): <ulink url="&curl-download-ftp;"/></para></listitem>
34<listitem><para>Download size: &curl-size;</para></listitem>
35<listitem><para>Estimated disk space required: &curl-buildsize;</para></listitem>
36<listitem><para>Estimated build time: &curl-time;</para></listitem></itemizedlist>
37</sect3>
38
39<sect3><title><application>cURL</application> dependencies</title>
40<sect4><title>Optional</title>
41<para><xref linkend="pkgconfig"/>,
42<xref linkend="openssl"/>,
43<xref linkend="openldap"/>,
44<xref linkend="mitkrb"/> or <xref linkend="heimdal"/>,
45<ulink url="http://www.pdc.kth.se/kth-krb/">krb4</ulink>,
46<ulink url="http://www.gnu.org/software/libidn/">Libidn</ulink> and
47<ulink url="http://www.vintela.com/resources/topics/spnego/">SPNEGO</ulink>
48</para></sect4>
49</sect3>
50
51</sect2>
52
53<sect2>
54<title>Installation of <application>cURL</application></title>
55
56<para>Install <application>cURL</application> by running the following
57commands:</para>
58
59<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
60make &amp;&amp;
61make install</command></userinput></screen>
62
63</sect2>
64
65<sect2>
66<title>Command explanations</title>
67
68<para><option>--with-gssapi=/usr</option>:
69This parameter adds <application>Kerberos 5</application> support to
70<filename class="libraryfile">libcurl</filename>.</para>
71
72</sect2>
73
74<sect2>
75<title>Contents</title>
76
77<para>The <application>cURL</application> package contains
78<command>curl</command>, <command>curl-config</command> and the
79<filename class="libraryfile">libcurl</filename> libraries.</para>
80
81</sect2>
82
83<sect2><title>Description</title>
84
85<sect3><title>curl</title>
86<para><command>curl</command> is a client that can get documents from or send
87documents to any of the following protocols: <acronym>HTTP</acronym>,
88<acronym>HTTPS</acronym> (needs <xref linkend="openssl"/>),
89<acronym>FTP</acronym>, GOPHER, DICT, TELNET, <acronym>LDAP</acronym> (needs
90<xref linkend="openldap"/>) or FILE.</para></sect3>
91
92<sect3><title>curl-config</title>
93<para><command>curl-config</command> prints information about the last compile,
94like libraries linked to and prefix setting.</para></sect3>
95
96<sect3><title>libcurl</title>
97<para><filename class="libraryfile">libcurl</filename> provides the
98functionality of <command>curl</command> to other programs.</para></sect3>
99
100</sect2>
101
102</sect1>
103
Note: See TracBrowser for help on using the repository browser.