zlib.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-system-zlib" role="wrap">
  8. <?dbhtml filename="zlib.html"?>
  9. <sect1info condition="script">
  10. <productname>zlib</productname>
  11. <productnumber>&zlib-version;</productnumber>
  12. <address>&zlib-url;</address>
  13. </sect1info>
  14. <title>Zlib-&zlib-version;</title>
  15. <indexterm zone="ch-system-zlib">
  16. <primary sortas="a-Zlib">Zlib</primary>
  17. </indexterm>
  18. <sect2 role="package">
  19. <title/>
  20. <para>The Zlib package contains compression and decompression routines used by
  21. some programs.</para>
  22. <segmentedlist>
  23. <segtitle>&buildtime;</segtitle>
  24. <segtitle>&diskspace;</segtitle>
  25. <seglistitem>
  26. <seg>&zlib-ch6-sbu;</seg>
  27. <seg>&zlib-ch6-du;</seg>
  28. </seglistitem>
  29. </segmentedlist>
  30. </sect2>
  31. <sect2 role="installation">
  32. <title>Installation of Zlib</title>
  33. <para>Prepare Zlib for compilation:</para>
  34. <screen><userinput remap="configure">./configure --prefix=/usr</userinput></screen>
  35. <para>Compile the package:</para>
  36. <screen><userinput remap="make">make</userinput></screen>
  37. <para>To test the results, issue:</para>
  38. <screen><userinput remap="test">make check</userinput></screen>
  39. <para>Install the package:</para>
  40. <screen><userinput remap="install">make install</userinput></screen>
  41. <para>The shared library needs to be moved to
  42. <filename class="directory">/lib</filename>, and as a result the
  43. <filename class="extension">.so</filename> file in
  44. <filename class="directory">/usr/lib</filename> will need to be recreated:</para>
  45. <screen><userinput remap="install">mv -v /usr/lib/libz.so.* /lib
  46. ln -sfv ../../lib/$(readlink /usr/lib/libz.so) /usr/lib/libz.so</userinput></screen>
  47. </sect2>
  48. <!-- ~~~~~~~~~~~~~~~~~~~~ ABI 32 ~~~~~~~~~~~~~~~~~~~~ -->
  49. <sect2 arch="ml_32,ml_all" role="installation">
  50. <title>Installation of Zlib - 32-bit</title>
  51. <para>Clean previous build:</para>
  52. <screen><userinput remap="pre">make distclean</userinput></screen>
  53. <para>Prepare Zlib for compilation:</para>
  54. <!-- configure doesn't know option - -host=i686-pc-linux-gnu -->
  55. <screen><userinput remap="configure">CC="gcc -m32 -march=i686" \
  56. ./configure --prefix=/usr \
  57. --libdir=/usr/lib32</userinput></screen>
  58. <para>Compile the package:</para>
  59. <screen><userinput remap="make">make</userinput></screen>
  60. <para>Install the package:</para>
  61. <screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
  62. cp -Rv DESTDIR/usr/lib32/* /usr/lib32
  63. rm -rf DESTDIR</userinput></screen>
  64. </sect2>
  65. <!-- ~~~~~~~~~~~~~~~~~~~~ ABI x32 ~~~~~~~~~~~~~~~~~~~~ -->
  66. <sect2 arch="ml_x32,ml_all" role="installation">
  67. <title>Installation of Zlib - x32-bit</title>
  68. <screen><userinput remap="pre">make distclean</userinput></screen>
  69. <para>Prepare Zlib for compilation:</para>
  70. <screen><userinput remap="configure">CC="gcc -mx32" \
  71. ./configure --prefix=/usr \
  72. --libdir=/usr/libx32</userinput></screen>
  73. <para>Compile the package:</para>
  74. <screen><userinput remap="make">make</userinput></screen>
  75. <para>Install the package:</para>
  76. <screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
  77. cp -Rv DESTDIR/usr/libx32/* /usr/libx32
  78. rm -rf DESTDIR</userinput></screen>
  79. </sect2>
  80. <sect2 id="contents-zlib" role="content">
  81. <title>Contents of Zlib</title>
  82. <segmentedlist>
  83. <segtitle>Installed libraries</segtitle>
  84. <seglistitem>
  85. <seg>libz.{a,so}</seg>
  86. </seglistitem>
  87. </segmentedlist>
  88. <variablelist>
  89. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  90. <?dbfo list-presentation="list"?>
  91. <?dbhtml list-presentation="table"?>
  92. <varlistentry id="libz">
  93. <term><filename class="libraryfile">libz</filename></term>
  94. <listitem>
  95. <para>Contains compression and decompression functions used by
  96. some programs</para>
  97. <indexterm zone="ch-system-zlib libz">
  98. <primary sortas="c-libz">libz</primary>
  99. </indexterm>
  100. </listitem>
  101. </varlistentry>
  102. </variablelist>
  103. </sect2>
  104. </sect1>