Changeset 2188f69


Ignore:
Timestamp:
01/28/2009 11:03:31 PM (15 years ago)
Author:
Ag Hatzimanikas <ag@…>
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:
5190248e
Parents:
c5696eea
Message:

Updated to mutt-1.5.19. Thanks to William Immendorf for the patches

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • basicnet/mailnews/mutt.xml

    rc5696eea r2188f69  
    77  <!ENTITY mutt-download-http "&sourceforge-repo;/mutt/mutt-&mutt-version;.tar.gz">
    88  <!ENTITY mutt-download-ftp  "ftp://ftp.mutt.org/mutt/devel/mutt-&mutt-version;.tar.gz">
    9   <!ENTITY mutt-md5sum        "27c30037120189b9f9c0d3e76361b8f8">
    10   <!ENTITY mutt-size          "3.5 MB">
    11   <!ENTITY mutt-buildsize     "25.4 MB">
    12   <!ENTITY mutt-time          "0.4 SBU">
     9  <!ENTITY mutt-md5sum        "73b3747bc7f7c805921e8d24ebac693f">
     10  <!ENTITY mutt-size          "3.4 MB">
     11  <!ENTITY mutt-buildsize     "28.5 MB">
     12  <!ENTITY mutt-time          "0.3 SBU">
    1313]>
    1414
     
    4949      <listitem>
    5050        <para>Estimated build time: &mutt-time;</para>
     51      </listitem>
     52    </itemizedlist>
     53
     54    <bridgehead renderas="sect3">Additional Downloads</bridgehead>
     55    <itemizedlist spacing='compact'>
     56      <listitem>
     57        <para>Required patch: <ulink
     58        url="&patch-root;/mutt-&mutt-version;-imap_hook_fix-1.patch"/></para>
    5159      </listitem>
    5260    </itemizedlist>
     
    6573    <!-- <xref linkend="db"/> -->
    6674    <xref linkend="gdbm"/> or
    67     <ulink url="http://qdbm.sourceforge.net/">QDBM</ulink>, and
     75    <ulink url="http://qdbm.sourceforge.net/">QDBM</ulink> or
     76    <ulink url="http://tokyocabinet.sourceforge.net/index.html">Tokyo Cabinet</ulink>, and
    6877    <ulink url="http://www.gnu.org/software/gdb/gdb.html">GDB</ulink>
    6978    </para>
     
    99108    </note>
    100109
    101     <!-- [ag]
    102     This got fixed with http://dev.mutt.org/hg/mutt/rev/fe615fd5e0de
    103     which closed #2911 in mutt's tracker.
    104     I have no gnutls to test. I will comment out the note for now and keep an
    105     eye for any reports.
    106 
    107     <caution>
    108       <para>If you choose to link <application>Mutt</application> against
    109       <xref linkend="gnutls"/>,
    110       you won't have SSL client certificate support. Specifically the
    111       <envar>ssl_client_cert</envar> configuration variable is recognized
    112       as invalid. That means you will lose the ability to use
    113       <command>mutt</command> via SMTP over TLS or in the case when
    114       a client certification is required for authentication on an IMAP server.
    115       For these reasons it is recommended to link <application>Mutt</application>
    116       against <xref linkend="openssl"/> if you want SSL/TLS support.</para>
    117     </caution> -->
    118 
    119110    <para><application>Mutt</application> requires a group named
    120111    <systemitem class="groupname">mail</systemitem>.  You can
     
    132123    commands:</para>
    133124
    134 <screen><userinput>./configure --prefix=/usr --sysconfdir=/etc \
    135     --with-docdir=/usr/share/doc/mutt-&mutt-version; \
    136     --enable-pop --enable-imap \
    137     --enable-hcache --without-qdbm \
    138     --without-gdbm --with-bdb &amp;&amp;
     125<screen><userinput>patch -Np1 -i ../mutt-&mutt-version;-imap_hook_fix-1.patch &amp;&amp;
     126./configure --prefix=/usr --sysconfdir=/etc \
     127            --with-docdir=/usr/share/doc/mutt-&mutt-version; \
     128            --enable-pop --enable-imap \
     129            --enable-hcache --without-qdbm \
     130            --without-tokyocabinet \
     131            --without-gdbm --with-bdb &amp;&amp;
    139132make</userinput></screen>
    140133
     
    179172    <para><parameter>--without-qdbm</parameter>: This switch disables
    180173    <application>QDBM</application> as the header cache backend.</para>
     174
     175    <para><parameter>--without-tokyocabinet</parameter>: This switch disables
     176    <application>Tokyo Cabinet</application> as the header cache backend.</para>
    181177
    182178    <para><parameter>--without-gdbm</parameter>: This switch disables
  • general.ent

    rc5696eea r2188f69  
    368368<!ENTITY procmail-version             "3.22">
    369369<!ENTITY fetchmail-version            "6.3.9">
    370 <!ENTITY mutt-version                 "1.5.18">
     370<!ENTITY mutt-version                 "1.5.19">
    371371<!ENTITY pine-version                 "4.64">
    372372<!ENTITY tin-version                 "1.8.3">
  • introduction/welcome/changelog.xml

    rc5696eea r2188f69  
    4343
    4444    <listitem>
     45      <para>January 28th, 2009</para>
     46      <itemizedlist>
     47        <listitem>
     48          <para>[ag] - Updated to mutt-1.5.19. Thanks to William Immendorf for
     49          providing the patch.</para>
     50        </listitem>
     51      </itemizedlist>
     52    </listitem>
     53
     54    <listitem>
    4555      <para>January 24th, 2009</para>
    4656      <itemizedlist>
Note: See TracChangeset for help on using the changeset viewer.