source: clfs-sysroot/BOOK/final-system/common/libtool.xml @ c439b8a

Last change on this file since c439b8a was c439b8a, checked in by Manuel Canales Esparcia <manuel@…>, 17 years ago

Updated CLFS-Sysroot book sources to use DocBook?-XML DTD 4.5.

  • Property mode set to 100644
File size: 2.8 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-libtool" role="wrap">
9  <?dbhtml filename="libtool.html"?>
10
11  <title>Libtool-&libtool-version;</title>
12
13  <indexterm zone="ch-system-libtool">
14    <primary sortas="a-Libtool">Libtool</primary>
15  </indexterm>
16
17  <sect2 role="package">
18    <title/>
19
20    <para>The Libtool package contains the GNU generic library support script.
21    It wraps the complexity of using shared libraries in a consistent, portable
22    interface.</para>
23
24  </sect2>
25
26  <sect2 role="installation">
27    <title>Installation of Libtool</title>
28
29    <para os="a">Prepare Libtool for compilation:</para>
30
31<screen os="b"><userinput>./configure --build=${CLFS_HOST} --host=${CLFS_TARGET} \
32    --prefix=/usr</userinput></screen>
33
34    <para os="c">Compile the package:</para>
35
36<screen os="d"><userinput>make</userinput></screen>
37
38    <para os="e">Install the package:</para>
39
40<screen os="f"><userinput>make DESTDIR=${CLFS} install</userinput></screen>
41
42  </sect2>
43
44  <sect2 id="contents-libtool" role="content">
45    <title>Contents of Libtool</title>
46
47    <segmentedlist>
48      <segtitle>Installed programs</segtitle>
49      <segtitle>Installed libraries</segtitle>
50
51      <seglistitem>
52        <seg>libtool and libtoolize</seg>
53        <seg>libltdl.[a,so]</seg>
54      </seglistitem>
55    </segmentedlist>
56
57    <variablelist>
58      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
59      <?dbfo list-presentation="list"?>
60      <?dbhtml list-presentation="table"?>
61
62      <varlistentry id="libtool">
63        <term><command>libtool</command></term>
64        <listitem>
65          <para>Provides generalized library-building support services</para>
66          <indexterm zone="ch-system-libtool libtool">
67            <primary sortas="b-libtool">libtool</primary>
68          </indexterm>
69        </listitem>
70      </varlistentry>
71
72      <varlistentry id="libtoolize">
73        <term><command>libtoolize</command></term>
74        <listitem>
75          <para>Provides a standard way to add <command>libtool</command> support
76          to a package</para>
77          <indexterm zone="ch-system-libtool libtoolize">
78            <primary sortas="b-libtoolize">libtoolize</primary>
79          </indexterm>
80        </listitem>
81      </varlistentry>
82
83      <varlistentry id="libltdl">
84        <term><filename class="libraryfile">libltdl</filename></term>
85        <listitem>
86          <para>Hides the various difficulties of dlopening libraries</para>
87          <indexterm zone="ch-system-libtool libltdl">
88            <primary sortas="c-libltdl">libltdl</primary>
89          </indexterm>
90        </listitem>
91      </varlistentry>
92
93    </variablelist>
94
95  </sect2>
96
97</sect1>
Note: See TracBrowser for help on using the repository browser.