source: BOOK/final-system/common/libtool.xml @ 3373dd11

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 3373dd11 was 3373dd11, checked in by Jim Gifford <clfs@…>, 18 years ago

r668@server (orig r666): manuel | 2005-11-08 15:25:13 -0800
Removing SBUs and DUs. Chapter final-system, round 6.

  • Property mode set to 100644
File size: 3.4 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3  "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4  <!ENTITY % general-entities SYSTEM "../../general.ent">
5  <!ENTITY % patches-entities SYSTEM "../../patches.ent">
6  %general-entities;
7  %patches-entities;
8]>
9
10<sect1 id="ch-system-libtool" role="wrap">
11  <?dbhtml filename="libtool.html"?>
12
13  <title>Libtool-&libtool-version;</title>
14
15  <indexterm zone="ch-system-libtool">
16    <primary sortas="a-Libtool">Libtool</primary>
17  </indexterm>
18
19  <sect2 role="package">
20    <title/>
21
22    <para>The Libtool package contains the GNU generic library support script.
23    It wraps the complexity of using shared libraries in a consistent, portable
24    interface.</para>
25
26    <segmentedlist>
27      <segtitle>&dependencies;</segtitle>
28
29      <seglistitem>
30        <seg>Bash, Binutils, Coreutils, Diffutils, GCC, Glibc, Grep,
31        Make, and Sed</seg>
32      </seglistitem>
33    </segmentedlist>
34
35  </sect2>
36
37  <sect2 role="installation">
38    <title>Installation of Libtool</title>
39
40    <para os="a">Prepare Libtool for compilation:</para>
41
42<screen><userinput>./configure --prefix=/usr</userinput></screen>
43
44    <para os="b">Compile the package:</para>
45
46<screen os="c"><userinput>make</userinput></screen>
47
48    <para os="d">To test the results, issue:
49    <userinput>make check</userinput>.</para>
50
51    <para os="e">Install the package:</para>
52
53<screen os="f"><userinput>make install</userinput></screen>
54
55    <para os="g">Correct the ownership of the <filename
56    class="libraryfile">libltdl</filename> data files:</para>
57
58<screen os="h"><userinput>chown -R root:root /usr/share/libtool/libltdl</userinput></screen>
59
60  </sect2>
61
62  <sect2 id="contents-libtool" role="content">
63    <title>Contents of Libtool</title>
64
65    <segmentedlist>
66      <segtitle>Installed programs</segtitle>
67      <segtitle>Installed libraries</segtitle>
68
69      <seglistitem>
70        <seg>libtool and libtoolize</seg>
71        <seg>libltdl.[a,so]</seg>
72      </seglistitem>
73    </segmentedlist>
74
75    <variablelist>
76      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
77      <?dbfo list-presentation="list"?>
78      <?dbhtml list-presentation="table"?>
79
80      <varlistentry id="libtool">
81        <term><command>libtool</command></term>
82        <listitem>
83          <para>Provides generalized library-building support services</para>
84          <indexterm zone="ch-system-libtool libtool">
85            <primary sortas="b-libtool">libtool</primary>
86          </indexterm>
87        </listitem>
88      </varlistentry>
89
90      <varlistentry id="libtoolize">
91        <term><command>libtoolize</command></term>
92        <listitem>
93          <para>Provides a standard way to add <command>libtool</command> support
94          to a package</para>
95          <indexterm zone="ch-system-libtool libtoolize">
96            <primary sortas="b-libtoolize">libtoolize</primary>
97          </indexterm>
98        </listitem>
99      </varlistentry>
100
101      <varlistentry id="libltdl">
102        <term><filename class="libraryfile">libltdl</filename></term>
103        <listitem>
104          <para>Hides the various difficulties of dlopening libraries</para>
105          <indexterm zone="ch-system-libtool libltdl">
106            <primary sortas="c-libltdl">libltdl</primary>
107          </indexterm>
108        </listitem>
109      </varlistentry>
110
111    </variablelist>
112
113  </sect2>
114
115</sect1>
Note: See TracBrowser for help on using the repository browser.