lfs/chapter05/zlib-inst.xml
2003-05-05 20:01:15 +00:00

26 lines
726 B
XML

<sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
<sect2>
<title>Installation of Zlib</title>
<para>Prepare Zlib to be compiled:</para>
<para><screen><userinput>CFLAGS="-O2 -pipe" \
&nbsp;&nbsp;&nbsp;&nbsp;./configure --prefix=/stage1 --shared</userinput></screen></para>
<para>The <emphasis>-fPIC</emphasis> flag helps to assure
quality in the dynamic zlib library.</para>
<para>Some packages expect a static zlib library to be present
on the system. To satisfy those programs, compile both the
shared and static libraries:</para>
<para><screen><userinput>make
make test</userinput></screen></para>
<para>Install the libraries:</para>
<para><screen><userinput>make install</userinput></screen></para>
</sect2>