Changeset b15d4fc


Ignore:
Timestamp:
09/02/2005 11:58:00 PM (19 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.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:
582cdc09
Parents:
db9754e
Message:

Added commands to the Heimdal instructions to preserve and restore some overwritten interface headers and libraries; also listed the dependencies in a more accurate manner

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

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    rdb9754e rb15d4fc  
    4646      <itemizedlist>
    4747        <listitem>
     48          <para>[randy] - Added commands to the Heimdal instructions to
     49          preserve and restore some overwritten interface headers and
     50          libraries. Also listed the dependencies in a more accurate
     51          manner.</para>
     52        </listitem>
     53        <listitem>
    4854          <para>[randy] - Updated to MySQL-4.1.14.</para>
    4955        </listitem>
  • postlfs/security/heimdal.xml

    rdb9754e rb15d4fc  
    7878    <bridgehead renderas="sect3">Heimdal Dependencies</bridgehead>
    7979
    80     <bridgehead renderas="sect4">Required</bridgehead>
    81     <para><xref linkend="openssl"/> and
    82     <xref linkend="db"/></para>
     80    <bridgehead renderas="sect4">Required to Build the Server-Side Tools</bridgehead>
     81    <para><xref linkend="db"/> (recommended) or <xref linkend="gdbm"/></para>
     82
     83    <bridgehead renderas="sect4">Recommended</bridgehead>
     84    <para><xref linkend="openssl"/></para>
    8385
    8486    <bridgehead renderas="sect4">Optional</bridgehead>
     
    137139    <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
    138140
    139 <screen role="root"><userinput>make install &amp;&amp;
     141<screen role="root"><userinput>mv -v /usr/include/fnmatch.h /usr/include/fnmatch.h.glibc &amp;&amp;
     142mv -v /usr/include/glob.h /usr/include/glob.h.glibc &amp;&amp;
     143mv -v /usr/include/ss/ss.h /usr/include/ss/ss.h.e2fsprogs &amp;&amp;
     144mv -v /usr/lib/libss.a /usr/lib/libss.a.e2fsprogs &amp;&amp;
     145mv -v /usr/lib/libss.so /usr/lib/libss.so.e2fsprogs &amp;&amp;
     146make install &amp;&amp;
     147mv -v /usr/include/fnmatch.h /usr/include/fnmatch.h.heimdal &amp;&amp;
     148mv -v /usr/include/fnmatch.h.glibc /usr/include/fnmatch.h &amp;&amp;
     149mv -v /usr/include/glob.h /usr/include/glob.h.heimdal &amp;&amp;
     150mv -v /usr/include/glob.h.glibc /usr/include/glob.h &amp;&amp;
    140151install -v -m755 -d /usr/share/doc/heimdal-&heimdal-version;/standardisation &amp;&amp;
    141152install -v -m644 doc/{init-creds,layman.asc} \
     
    164175    <title>Command Explanations</title>
    165176
     177    <para><command>mv -v /usr/include/...</command> and
     178    <command>mv -v /usr/lib/libss.*</command>: The
     179    <application>Heimdal</application> installation will overwrite two
     180    interface headers from the <application>Glibc</application> package and an
     181    interface header, static library and library symbolic link from the
     182    <application>E2fsprogs</application> package. These commands move the
     183    original files out of the way before the installation, and then restore
     184    the original <application>Glibc</application> headers after the
     185    installation. The two <application>Heimdal</application> headers are renamed
     186    and preserved on the system. Testing has shown that the system is stable
     187    using the <application>Heimdal</application> version of the
     188    <filename>libss</filename> library and interface header.</para>
     189
    166190    <para><parameter>--libexecdir=/usr/sbin</parameter>: This switch
    167191    puts the daemon programs into
Note: See TracChangeset for help on using the changeset viewer.