mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-24 23:32:12 +08:00
14dc4b7373
Update to libpcap-1.6.1. Update to httpd-2.4.10. cURL-7.37.1: typo. Thanks Denis MUGNIER. SBC-1.2: add switch to configure. git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@13591 af4574ff-66df-0310-9fd7-8a98e5e911e0
249 lines
7.4 KiB
XML
249 lines
7.4 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
|
|
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
|
|
<!ENTITY % general-entities SYSTEM "../../general.ent">
|
|
%general-entities;
|
|
|
|
<!ENTITY curl-download-http "http://curl.haxx.se/download/curl-&curl-version;.tar.bz2">
|
|
<!ENTITY curl-download-ftp " ">
|
|
<!ENTITY curl-md5sum "95c627abcf6494f5abe55effe7cd6a57">
|
|
<!ENTITY curl-size "3.1 MB">
|
|
<!ENTITY curl-buildsize "40 MB (additional 7 MB for tests)">
|
|
<!ENTITY curl-time "0.4 SBU (additional 8.2 SBU for tests)">
|
|
]>
|
|
|
|
<sect1 id="curl" xreflabel="cURL-&curl-version;">
|
|
<?dbhtml filename="curl.html"?>
|
|
|
|
<sect1info>
|
|
<othername>$LastChangedBy$</othername>
|
|
<date>$Date$</date>
|
|
</sect1info>
|
|
|
|
<title>cURL-&curl-version;</title>
|
|
|
|
<indexterm zone="curl">
|
|
<primary sortas="a-cURL">cURL</primary>
|
|
</indexterm>
|
|
|
|
<sect2 role="package">
|
|
<title>Introduction to cURL</title>
|
|
|
|
<para>
|
|
The <application>cURL</application> package contains a utility
|
|
and a library used for transferring files with URL syntax to any of
|
|
the following protocols: FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP,
|
|
TELNET, DICT, LDAP, LDAPS and FILE. Its ability to both download
|
|
and upload files can be incorporated into other programs to support
|
|
functions like streaming media.
|
|
</para>
|
|
|
|
&lfs75_checked;
|
|
|
|
<bridgehead renderas="sect3">Package Information</bridgehead>
|
|
<itemizedlist spacing="compact">
|
|
<listitem>
|
|
<para>
|
|
Download (HTTP): <ulink url="&curl-download-http;"/>
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download (FTP): <ulink url="&curl-download-ftp;"/>
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download MD5 sum: &curl-md5sum;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Download size: &curl-size;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Estimated disk space required: &curl-buildsize;
|
|
</para>
|
|
</listitem>
|
|
<listitem>
|
|
<para>
|
|
Estimated build time: &curl-time;
|
|
</para>
|
|
</listitem>
|
|
</itemizedlist>
|
|
|
|
<bridgehead renderas="sect3">cURL Dependencies</bridgehead>
|
|
|
|
<bridgehead renderas="sect4">Recommended</bridgehead>
|
|
<para role="recommended">
|
|
<xref linkend="cacerts"/> and
|
|
<xref linkend="openssl"/> or <xref linkend="gnutls"/>
|
|
</para>
|
|
|
|
<bridgehead renderas="sect4">Optional</bridgehead>
|
|
<para role="optional">
|
|
<xref linkend="libidn"/>,
|
|
<xref linkend="mitkrb"/>,
|
|
<xref linkend="openldap"/>,
|
|
<ulink url="http://daniel.haxx.se/projects/c-ares/">c-ares</ulink>,
|
|
<ulink url="https://launchpad.net/libmetalink/">libmetalink</ulink>,
|
|
<ulink url="http://www.libssh2.org">libssh2</ulink>, and
|
|
<ulink url="http://www.vintela.com/resources/topics/spnego/">
|
|
SPNEGO</ulink>
|
|
</para>
|
|
|
|
<bridgehead renderas="sect4">Optional for Running the Test Suite</bridgehead>
|
|
<para role="optional">
|
|
<xref linkend="stunnel"/> (for the HTTPS and FTPS tests) and
|
|
<xref linkend="valgrind"/>
|
|
</para>
|
|
|
|
<para condition="html" role="usernotes">User Notes:
|
|
<ulink url="&blfs-wiki;/curl"/>
|
|
</para>
|
|
</sect2>
|
|
|
|
<sect2 role="installation">
|
|
<title>Installation of cURL</title>
|
|
|
|
<para>
|
|
Install <application>cURL</application> by running the following
|
|
commands:
|
|
</para>
|
|
|
|
<screen><userinput>./configure --prefix=/usr \
|
|
--disable-static \
|
|
--enable-threaded-resolver &&
|
|
make</userinput></screen>
|
|
|
|
<para>
|
|
To test the results, issue: <command>make test</command>. Tests need many
|
|
conditions to run successfully, and some may fail. Usually, each failed
|
|
test takes a long time. If you wish to disable some tests, include them
|
|
in the appropriate file and run the tests again:
|
|
</para>
|
|
|
|
<screen><userinput>cat >> tests/data/DISABLED << "EOF"
|
|
<literal>numb1
|
|
...
|
|
numbN
|
|
...</literal>
|
|
EOF</userinput></screen>
|
|
|
|
<para>
|
|
Now, as the <systemitem class="username">root</systemitem>
|
|
user:
|
|
</para>
|
|
|
|
<screen role="root"><userinput>make install &&
|
|
find docs \( -name "Makefile*" -o -name "*.1" -o -name "*.3" \) -exec rm {} \; &&
|
|
install -v -d -m755 /usr/share/doc/curl-&curl-version; &&
|
|
cp -v -R docs/* /usr/share/doc/curl-&curl-version;</userinput></screen>
|
|
</sect2>
|
|
|
|
<sect2 role="commands">
|
|
<title>Command Explanations</title>
|
|
|
|
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
|
|
href="../../xincludes/static-libraries.xml"/>
|
|
|
|
<para>
|
|
<parameter>--enable-threaded-resolver</parameter>: This switch enables
|
|
<application>cURL</application>'s builtin threaded DNS resolver.
|
|
</para>
|
|
|
|
<para>
|
|
<option>--with-gssapi</option>: This parameter adds
|
|
<application>Kerberos 5</application> support to
|
|
<filename class="libraryfile">libcurl</filename>.
|
|
</para>
|
|
|
|
<para>
|
|
<option>--without-ssl --with-gnutls</option>: Use to
|
|
build with <application>GnuTLS</application> support
|
|
instead of <application>OpenSSL</application> for SSL/TLS.
|
|
</para>
|
|
|
|
<para>
|
|
<command>find docs \( -name "Makefile*" -o -name "*.1" -o -name "*.3"
|
|
\) -exec rm {} \;</command>: This command removes
|
|
<filename>Makefiles</filename> and man files from the documentation
|
|
directory that would otherwise be installed by the commands that
|
|
follow.
|
|
</para>
|
|
|
|
</sect2>
|
|
|
|
<sect2 role="content">
|
|
<title>Contents</title>
|
|
|
|
<segmentedlist>
|
|
<segtitle>Installed Programs</segtitle>
|
|
<segtitle>Installed Library</segtitle>
|
|
<segtitle>Installed Directories</segtitle>
|
|
|
|
<seglistitem>
|
|
<seg>
|
|
curl and curl-config
|
|
</seg>
|
|
<seg>
|
|
libcurl.so
|
|
</seg>
|
|
<seg>
|
|
/usr/include/curl and
|
|
/usr/share/doc/curl-&curl-version;
|
|
</seg>
|
|
</seglistitem>
|
|
</segmentedlist>
|
|
|
|
<variablelist>
|
|
<bridgehead renderas="sect3">Short Descriptions</bridgehead>
|
|
<?dbfo list-presentation="list"?>
|
|
<?dbhtml list-presentation="table"?>
|
|
|
|
<varlistentry id="curl-prog">
|
|
<term><command>curl</command></term>
|
|
<listitem>
|
|
<para>
|
|
is a command line tool for transferring files with URL syntax.
|
|
</para>
|
|
<indexterm zone="curl curl-prog">
|
|
<primary sortas="b-curl">curl</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="curl-config">
|
|
<term><command>curl-config</command></term>
|
|
<listitem>
|
|
<para>
|
|
prints information about the last compile, like libraries
|
|
linked to and prefix setting.
|
|
</para>
|
|
<indexterm zone="curl curl-config">
|
|
<primary sortas="b-curl-config">curl-config</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
<varlistentry id="libcurl">
|
|
<term><filename class="libraryfile">libcurl.so</filename></term>
|
|
<listitem>
|
|
<para>
|
|
provides the API functions required by
|
|
<command>curl</command> and other programs.
|
|
</para>
|
|
<indexterm zone="curl libcurl">
|
|
<primary sortas="c-libcurl">libcurl.so</primary>
|
|
</indexterm>
|
|
</listitem>
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</sect2>
|
|
|
|
</sect1>
|