glfs/general/genlib/openssl/openssl-exp.xml
Igor Živković f53f1b3c05 updated to openssl-0.9.7d
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@1905 af4574ff-66df-0310-9fd7-8a98e5e911e0
2004-03-20 22:05:15 +00:00

41 lines
1.8 KiB
XML

<sect2>
<title>Command explanations</title>
<para><option>no-rc5 no-idea</option>: When added to the
<command>./config</command> command, this will eliminate the building of those
encryption methods. Patent licenses may be needed for you to utilize either of
those methods in your projects.</para>
<para><command>rm doc/apps/passwd.pod</command>: This command prevents
<application>Open<acronym>SSL</acronym></application> from installing its
passwd man page over an existing man page with the same name.</para>
<para><command>mv doc/crypto/{,openssl_}threads.pod</command>: This
commands prevents <application>Open<acronym>SSL</acronym></application> from
overwriting an existing man page from <application>Perl</application>.</para>
<para><command>sed -i -e 's/-m486/-march=i486/' Configure</command>:
<application>GCC</application> issues a warning on every
compilation because the <command>Configure</command>
command uses deprecated <parameter>-m486</parameter> instead of
<parameter>-march=i486</parameter>.</para>
<para><screen><command>make MANDIR=/usr/share/man
make MANDIR=/usr/share/man install</command></screen> These
commands install <application>OpenSSL</application> with the man pages
in <filename class='directory'>/usr/share/man</filename> instead of the
default which is <filename class='directory'>/etc/ssl/man</filename>.</para>
<para><command>cp -r certs /etc/ssl</command>: The certificates
must be copied manually since the install script
skips this step.</para>
<para><command>rmdir /etc/ssl/lib</command>: This is simply a tidy-up command.
For some reason, the <application>openssl</application> install routine creates
the <filename class='directory'>/etc/ssl/lib</filename> directory even though
the libraries have been installed in
<filename class='directory'>/usr/lib</filename>. We remove it to keep things
nice and tidy!</para>
</sect2>