Changeset ce4cc4c


Ignore:
Timestamp:
10/20/2011 01:45:13 AM (13 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
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
Children:
01caba44
Parents:
5738688
Message:

Update to wget-1.13

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

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • basicnet/netprogs/wget.xml

    r5738688 rce4cc4c  
    55  %general-entities;
    66
    7   <!ENTITY wget-download-http "http://ftp.gnu.org/gnu/wget/wget-&wget-version;.tar.bz2">
    8   <!ENTITY wget-download-ftp  "ftp://ftp.gnu.org/gnu/wget/wget-&wget-version;.tar.bz2">
    9   <!ENTITY wget-md5sum        "308a5476fc096a8a525d07279a6f6aa3">
    10   <!ENTITY wget-size          "1.6 MB">
    11   <!ENTITY wget-buildsize     "16 MB">
    12   <!ENTITY wget-time          "0.2 SBU">
     7  <!ENTITY wget-download-http "http://ftp.gnu.org/gnu/wget/wget-&wget-version;.tar.xz">
     8  <!ENTITY wget-download-ftp  "ftp://ftp.gnu.org/gnu/wget/wget-&wget-version;.tar.xz">
     9  <!ENTITY wget-md5sum        "48c5384123156e7b7501d2f5b5c7189a">
     10  <!ENTITY wget-size          "1.4 MB">
     11  <!ENTITY wget-buildsize     "20 MB">
     12  <!ENTITY wget-time          "0.4 SBU">
    1313]>
    1414
     
    7676    commands:</para>
    7777
    78 <screen><userinput>./configure --prefix=/usr --sysconfdir=/etc &amp;&amp;
     78<screen><userinput>./configure --prefix=/usr     \
     79            --sysconfdir=/etc \
     80            --with-ssl=openssl &amp;&amp;
    7981make</userinput></screen>
    8082
     
    8486
    8587<screen role="root"><userinput>make install</userinput></screen>
    86 
    87     <!-- <para>Finally update the info dir file:</para>
    88 
    89 <screen role="root"><userinput>install-info -info-dir=/usr/share/info /usr/share/info/wget.info</userinput></screen> -->
    9088
    9189  </sect2>
     
    9795    the configuration file from <filename class="directory">/usr/etc</filename> to
    9896    <filename class="directory">/etc</filename>.</para>
     97
     98    <para><parameter>--with-ssl=openssl</parameter>: This allows the program to
     99    work with <xref linkend="openssl"/>.  It can be omitted if <xref linkend="gnutls"/>
     100    is found or the https protocol is not needed. </para>
    99101
    100102  </sect2>
  • general.ent

    r5738688 rce4cc4c  
    105105<!ENTITY gnutls-version               "2.10.2">
    106106<!ENTITY cracklib-version             "2.8.18">
     107<!ENTITY openssh-version              "5.9p1">
    107108<!ENTITY linux-pam-version            "1.1.3">
    108109<!ENTITY shadow-version               "4.1.4.2">
     
    447448<!ENTITY subversion-version           "1.6.15">
    448449<!ENTITY tcpwrappers-version          "7.6">
    449 <!ENTITY wget-version                 "1.12">
     450<!ENTITY wget-version                 "1.13">
    450451<!ENTITY ggz-client-libs-version      "0.0.14.1">
    451452
  • introduction/welcome/changelog.xml

    r5738688 rce4cc4c  
    4646      <itemizedlist>
    4747        <listitem>
    48           <para>[bdubbs] - Updated to openssh-5.9p1.</para>
     48          <para>[bdubbs] - Updated to wget-1.13.</para>
     49        </listitem>
     50        <listitem>
     51          <para>[bdubbs] - Updated to openssh-5.9p1. Modify the sed
     52          that matches -ldes to only modify needed lines.  Move
     53          openssl to Security chapter (Fixes ticket
     54          <ulink url="&blfs-ticket-root;3250">#3250</ulink>).</para>
    4955        </listitem>
    5056        <listitem>
  • postlfs/security/openssh.xml

    r5738688 rce4cc4c  
    116116    the following commands:</para>
    117117
    118 <screen><userinput>sed -i.bak 's/ -ldes//' configure &amp;&amp;
     118<screen><userinput>sed -i.bak '/K5LIBS=/s/ -ldes//' configure &amp;&amp;
    119119./configure --prefix=/usr \
    120120            --sysconfdir=/etc/ssh \
     
    154154    <title>Command Explanations</title>
    155155
    156     <para><command>sed -i.bak 's/ -ldes//' configure</command>:
     156    <para><command>sed -i.bak '/K5LIBS=/s/ -ldes//' configure</command>:
    157157    This command fixes a build crash if you used the
    158158    <option>--with-kerberos5</option> parameter and you built the
Note: See TracChangeset for help on using the changeset viewer.