Ignore:
Timestamp:
06/12/2004 02:46:15 AM (20 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
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
Children:
773c358
Parents:
246c904
Message:

XML Update -- Chapter 16

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • basicnet/netlibs/curl.xml

    r246c904 ra2d8572  
     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  " ">
     8  <!ENTITY curl-size          "1.4 MB">
     9  <!ENTITY curl-buildsize     "26.6 MB">
     10  <!ENTITY curl-time          "0.43 SBU">
     11]>
     12
    113<sect1 id="curl" xreflabel="cURL-&curl-version;">
    214<?dbhtml filename="curl.html"?>
    315<title>cURL-&curl-version;</title>
    416
    5 &curl-intro;
    6 &curl-inst;
    7 &curl-exp;
    8 &curl-desc;
     17<sect2>
     18<title>Introduction to <application>cURL</application></title>
     19
     20<para>The <application>cURL</application> package contains <command>curl</command> and its
     21support library. This is useful for transferring files with
     22<acronym>URL</acronym> syntax.  This ability to both download and
     23redirect files can be incorporated into other programs to support
     24functions like streaming media.</para>
     25
     26<sect3><title>Package information</title>
     27<itemizedlist spacing='compact'>
     28<listitem><para>Download (HTTP): <ulink url="&curl-download-http;"/></para></listitem>
     29<listitem><para>Download (FTP): <ulink url="&curl-download-ftp;"/></para></listitem>
     30<listitem><para>Download size: &curl-size;</para></listitem>
     31<listitem><para>Estimated Disk space required: &curl-buildsize;</para></listitem>
     32<listitem><para>Estimated build time: &curl-time;</para></listitem></itemizedlist>
     33</sect3>
     34
     35<sect3><title><application>cURL</application> dependencies</title>
     36<sect4><title>Optional</title>
     37<para><xref linkend="openssl"/>, <xref linkend="openldap"/> and <xref
     38linkend="mitkrb"/> or <xref linkend="heimdal"/></para></sect4>
     39</sect3>
     40
     41</sect2>
     42
     43<sect2>
     44<title>Installation of <application>cURL</application></title>
     45
     46<para>Install <application>cURL</application> by running the following commands:</para>
     47
     48<screen><userinput><command>./configure --prefix=/usr &amp;&amp;
     49make &amp;&amp;
     50make install</command></userinput></screen>
     51
     52</sect2>
     53
     54<sect2>
     55<title>Command explanations</title>
     56
     57<para><parameter>--with-gssapi=/usr</parameter>:
     58This parameter adds kerberos 5 support to <filename
     59class="libraryfile">libcurl</filename>.</para>
     60
     61</sect2>
     62
     63<sect2>
     64<title>Contents</title>
     65
     66<para>The <application>cURL</application> package contains <command>curl</command>, <command>curl-config</command> and the
     67<filename class="libraryfile">libcurl</filename> libraries.</para>
     68
     69</sect2>
     70
     71<sect2><title>Description</title>
     72
     73<sect3><title>curl</title>
     74<para><command>curl</command> is a client that can get documents from or send documents to
     75any of the following protocols: <acronym>HTTP</acronym>,
     76<acronym>HTTPS</acronym> (needs <xref linkend="openssl"/>),
     77<acronym>FTP</acronym>, GOPHER, DICT, TELNET, <acronym>LDAP</acronym> (needs <xref
     78linkend="openldap"/>) or FILE.</para></sect3>
     79
     80<sect3><title>curl-config</title>
     81<para><command>curl-config</command> prints information about the last compile, like
     82libraries linked to and prefix setting.</para></sect3>
     83
     84<sect3><title>libcurl</title>
     85<para><filename class="libraryfile">libcurl</filename> provides the functionality of
     86<command>curl</command> to other programs.</para></sect3>
     87
     88</sect2>
    989
    1090</sect1>
Note: See TracChangeset for help on using the changeset viewer.