Changeset 7ad652c


Ignore:
Timestamp:
02/07/2013 07:03:01 PM (11 years ago)
Author:
Thomas Trepl <thomas@…>
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:
9fee07b6
Parents:
7b823ea2
Message:

Use upstream fixes

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/sysutils/fcron.xml

    r7b823ea2 r7ad652c  
    5858    </itemizedlist>
    5959
     60    <bridgehead renderas="sect3">Additional Downloads</bridgehead>
     61    <itemizedlist spacing="compact">
     62      <listitem>
     63        <para>
     64          Required patch:
     65          <ulink url="&patch-root;/fcron-&fcron-version;-sendmail_upstream-1.patch"/>
     66        </para>
     67      </listitem>
     68    </itemizedlist>
     69
    6070    <bridgehead renderas="sect3">Fcron Dependencies</bridgehead>
    6171
     
    109119useradd -d /dev/null -c "Fcron User" -g fcron -s /bin/false -u 22 fcron</userinput></screen>
    110120
    111     <para><application>Fcron</application> does not handle the <option>--without-sendmail</option>
    112     option correctly. Fix it by running he following commands:</para>
    113    
    114 <screen><userinput>sed -i.bak 's/x"$USE_SENDMAIL" != x ;/x"$USE_SENDMAIL" != x0 ;/' configure &amp;&amp;
    115 sed -i.bak '/clear_forcemail(cl->cl_option);/d' fileconf.c</userinput></screen>
    116 
    117121    <para>Install <application>Fcron</application> by running the following
    118122    commands:</para>
    119123
    120 <screen><userinput>./configure --prefix=/usr --sysconfdir=/etc \
     124<screen><userinput>patch -Np1 -i ../fcron-&fcron-version;-sendmail_upstream-1.patch &amp;&amp;
     125autoconf &amp;&amp;
     126./configure --prefix=/usr --sysconfdir=/etc \
    121127    --localstatedir=/var --without-sendmail --with-boot-install=no \
    122128    --with-dsssl-dir=/usr/share/sgml/docbook/dsssl-stylesheets-&docbook-dsssl-version; &amp;&amp;
     
    134140    <title>Command Explanations</title>
    135141
     142    <para><command>patch -Np1 -i fcron...</command>: The current <application>fcron</application>
     143    does not handle the <parameter>--without-sendmail</parameter> correctly. This patch fixes
     144    the <filename>configure.in</filename> and a few other sources. The <command>autoconf</command>
     145    is required to rebuild <filename>configure</filename> using the fixed input file.</para>
     146   
    136147    <para><parameter>--without-sendmail</parameter>: By default,
    137148    <application>Fcron</application> will attempt to use the
Note: See TracChangeset for help on using the changeset viewer.