source: BOOK/final-system/common/zlib.xml@ c8a83d8

clfs-3.0.0-systemd clfs-3.0.0-sysvinit systemd sysvinit
Last change on this file since c8a83d8 was 4302a8c, checked in by William Harrington <kb0iic@…>, 11 years ago

Use radlink when creating the symblink links for zlib dynamic library.

  • Property mode set to 100644
File size: 2.5 KB
Line 
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
8<sect1 id="ch-system-zlib" role="wrap">
9 <?dbhtml filename="zlib.html"?>
10
11 <title>Zlib-&zlib-version;</title>
12
13 <indexterm zone="ch-system-zlib">
14 <primary sortas="a-Zlib">Zlib</primary>
15 </indexterm>
16
17 <sect2 role="package">
18 <title/>
19
20 <para>The Zlib package contains compression and decompression routines
21 used by some programs.</para>
22
23 </sect2>
24
25 <sect2 role="installation">
26 <title>Installation of Zlib</title>
27
28 <para os="a">Prepare Zlib for compilation:</para>
29
30<screen os="b"><userinput>CC="gcc -isystem /usr/include" \
31CXX="g++ -isystem /usr/include" \
32LDFLAGS="-Wl,-rpath-link,/usr/lib:/lib" \
33 ./configure --prefix=/usr</userinput></screen>
34
35 <para os="c">Compile the package:</para>
36
37<screen os="d"><userinput>make</userinput></screen>
38
39 <para os="e">To test the results, issue:</para>
40
41<screen os="e2" ><userinput remap="test">make check</userinput></screen>
42
43 <para os="f">Install the package:</para>
44
45<screen os="g"><userinput>make install</userinput></screen>
46
47 <para os="h">The previous command installed two <filename
48 class="extension">.so</filename> files into <filename
49 class="directory">/usr/lib</filename>. We will move it into
50 <filename class="directory">/lib</filename> and then relink it
51 to <filename class="directory">/usr/lib</filename>:</para>
52
53<screen os="i"><userinput>mv -v /usr/lib/libz.so.* /lib
54ln -sfv ../../lib/$(readlink /usr/lib/libz.so) /usr/lib/libz.so</userinput></screen>
55
56 </sect2>
57
58 <sect2 id="contents-zlib" role="content">
59 <title>Contents of Zlib</title>
60
61 <segmentedlist>
62 <segtitle>Installed libraries</segtitle>
63
64 <seglistitem>
65 <seg>libz.[a,so]</seg>
66 </seglistitem>
67 </segmentedlist>
68
69 <variablelist>
70 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
71 <?dbfo list-presentation="list"?>
72 <?dbhtml list-presentation="table"?>
73
74 <varlistentry id="libz">
75 <term><filename class="libraryfile">libz</filename></term>
76 <listitem>
77 <para>Contains compression and decompression
78 functions used by some programs</para>
79 <indexterm zone="ch-system-zlib libz">
80 <primary sortas="c-libz">libz</primary>
81 </indexterm>
82 </listitem>
83 </varlistentry>
84
85 </variablelist>
86
87 </sect2>
88
89</sect1>
Note: See TracBrowser for help on using the repository browser.