Added a sed command and its explanation to the OpenSSH instructions that was inadvertently removed

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@8285 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Randy McMurchy 2010-03-05 17:11:05 +00:00
parent 8159f350cf
commit ae7796d435
3 changed files with 20 additions and 2 deletions

View File

@ -3,13 +3,13 @@ $LastChangedBy$
$Date$
-->
<!ENTITY day "02"> <!-- Always 2 digits -->
<!ENTITY day "05"> <!-- Always 2 digits -->
<!ENTITY month "03"> <!-- Always 2 digits -->
<!ENTITY year "2010">
<!ENTITY copyrightdate "2001-&year;">
<!ENTITY copyholder "The BLFS Development Team">
<!ENTITY version "svn-&year;&month;&day;">
<!ENTITY releasedate "March &day;nd, &year;">
<!ENTITY releasedate "March &day;th, &year;">
<!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
<!ENTITY blfs-version "svn"> <!-- svn|[release #] -->
<!ENTITY lfs-version "development"> <!-- version|testing|unstable|development] -->

View File

@ -41,6 +41,16 @@
-->
<listitem>
<para>March 5th, 2010</para>
<itemizedlist>
<listitem>
<para>[randy] - Added a sed command and its explanation to the
OpenSSH instructions that was inadvertently removed.</para>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<para>March 2nd, 2010</para>
<itemizedlist>

View File

@ -99,6 +99,8 @@
<screen><userinput>patch -Np1 -i ../openssl-&openssl-version;-fix_manpages-1.patch &amp;&amp;
tar -vxf ../BLFS-ca-bundle-&ca-bundle-version;.tar.bz2 &amp;&amp;
sed -i.bak 's/ -ldes//' configure
./config --prefix=/usr \
--openssldir=/etc/ssl \
shared \
@ -143,6 +145,12 @@ done &gt; /etc/ssl/ca-bundle.crt</userinput></screen>
<application>OpenSSL</application> no longer includes any root certificates.
This package adds root certificates as provided by mozilla.org.</para>
<para><command>sed -i.bak 's/ -ldes/lkrb5/' configure</command>:
This command fixes a build crash if you used the
<option>--with-kerberos5</option> parameter and you built the
<application>Heimdal</application> package in accordance with the BLFS
instructions. The command is harmless in all other instances.</para>
<para><parameter>shared</parameter>: This parameter forces the creation of
shared libraries along with the static libraries.</para>