Ignore:
Timestamp:
06/20/2020 03:59:53 PM (4 years ago)
Author:
Douglas R. Reno <renodr@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, 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
Children:
80ba8900
Parents:
988f1c9
Message:

Update to rsync-3.2.0

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • networking/netprogs/rsync.xml

    r988f1c9 rf0f68c1  
    77  <!ENTITY rsync-download-http "https://www.samba.org/ftp/rsync/src/rsync-&rsync-version;.tar.gz">
    88  <!ENTITY rsync-download-ftp  " ">
    9   <!ENTITY rsync-md5sum        "1581a588fde9d89f6bc6201e8129afaf">
    10   <!ENTITY rsync-size          "884 KB">
    11   <!ENTITY rsync-buildsize     "11 MB (with tests - additional 45 MB for HTML API documentation)">
    12   <!ENTITY rsync-time          "0.5 SBU (with tests)">
     9  <!ENTITY rsync-md5sum        "768700bc8a555f5fdbc97dac8ebfbdd3">
     10  <!ENTITY rsync-size          "1.0 MB">
     11  <!ENTITY rsync-buildsize     "12 MB (with tests - additional 46 MB for HTML API documentation)">
     12  <!ENTITY rsync-time          "0.7 SBU (with tests)">
    1313]>
    1414
     
    7474    <bridgehead renderas="sect3">rsync Dependencies</bridgehead>
    7575
     76    <!-- This does now use OpenSSL and zstd from LFS. -->
    7677    <bridgehead renderas="sect4">Recommended</bridgehead>
    7778    <para role="recommended">
    7879      <xref linkend="popt"/>
     80    </para>
     81
     82    <bridgehead renderas="sect4">Optional</bridgehead>
     83    <para role="optional">
     84      <xref linkend="doxygen"/>,
     85      <ulink url="https://lz4.github.io/lz4/">lz4</ulink>, and
     86      <ulink url="https://cyan4973.github.io/xxHash/">xxhash</ulink>
    7987    </para>
    8088
     
    105113    </para>
    106114
    107 <screen><userinput>./configure --prefix=/usr --without-included-zlib &amp;&amp;
     115<screen><userinput>./configure --prefix=/usr    \
     116            --disable-lz4    \
     117            --disable-xxhash \
     118            --without-included-zlib &amp;&amp;
    108119make</userinput></screen>
    109120
     
    140151
    141152    <para>
     153      <parameter>--disable-lz4</parameter>: This switch disables LZ4 compression
     154      support. Note that it uses the superior 'zstd' algorithm when this switch
     155      is in use, and zstd is provided in LFS.
     156    </para>
     157
     158    <para>
     159      <parameter>--disable-xxhash</parameter>: This switch disables advanced
     160      xxhash checksum support. Remove this switch if you have installed
     161      <ulink url="https://cyan4973.github.io/xxHash/">xxhash</ulink>.
     162    </para>
     163
     164    <para>
    142165      <parameter>--without-included-zlib</parameter>: This switch enables
    143       compilation with system-installed zlib library.
     166      compilation with the system-installed zlib library.
    144167    </para>
    145168
     
    196219        You can find additional configuration information and general
    197220        documentation about <command>rsync</command> at
    198         <ulink url="http://rsync.samba.org/documentation.html"/>.
     221        <ulink url="https://rsync.samba.org/documentation.html"/>.
    199222      </para>
    200223
     
    206229
    207230      <para>
    208         Note that you only want to start the
     231        Note that you only need to start the
    209232        <application>rsync</application> server if you want to provide an
    210233        <application>rsync</application> archive on your local machine.
     
    270293
    271294      <seglistitem>
    272         <seg>rsync</seg>
     295        <seg>rsync and rsync-ssl</seg>
    273296        <seg>None</seg>
    274297        <seg>Optionally, /usr/share/doc/rsync-&rsync-version;</seg>
     
    298321      </varlistentry>
    299322
     323      <varlistentry id="rsync-ssl">
     324        <term><command>rsync-ssl</command></term>
     325        <listitem>
     326          <para>
     327            is a helper script used when connecting to an rsync daemon that
     328            has SSL support built in.
     329          </para>
     330          <indexterm zone="rsync rsync-ssl">
     331            <primary sortas="b-rsync-ssl">rsync-ssl</primary>
     332          </indexterm>
     333        </listitem>
     334      </varlistentry>
     335
    300336    </variablelist>
    301337
Note: See TracChangeset for help on using the changeset viewer.