mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-02-02 13:42:13 +08:00
a5c73e07ee
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@740 af4574ff-66df-0310-9fd7-8a98e5e911e0
23 lines
815 B
XML
23 lines
815 B
XML
<sect2>
|
|
<title>Installation of openssl</title>
|
|
|
|
<para>Install openssl by running the following commands:</para>
|
|
|
|
<note><para>GCC issues a warning on every compilation because the Configure
|
|
command uses -m486 instead of -march=i486. To fix this behavior, use
|
|
linux-ppro, linux-pentium or linux-k6 (depending on your architecture), instead of linux-elf.
|
|
</para></note>
|
|
|
|
<para><screen><userinput>sed 's/^passwd/openssl-passwd/' doc/apps/passwd.pod \
|
|
> doc/apps/openssl-passwd.pod &&
|
|
rm doc/apps/passwd.pod &&
|
|
./Configure linux-elf --openssldir=/etc/ssl --prefix=/usr shared &&</userinput>
|
|
<userinput>make MANDIR=/usr/share/man &&</userinput>
|
|
<userinput>make MANDIR=/usr/share/man install &&</userinput>
|
|
<userinput>rmdir /etc/ssl/lib</userinput></screen>
|
|
</para>
|
|
|
|
|
|
</sect2>
|
|
|