source: BOOK/final-system/common/libtool.xml @ 49678f8

systemd
Last change on this file since 49678f8 was 7cd7f99, checked in by Chris Staub <chris@…>, 8 years ago

Put one configure option per line

  • Property mode set to 100644
File size: 3.0 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 \
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">To test the results, issue:</para>
39
40<screen os="e2"><userinput remap="test">make check</userinput></screen>
41
42    <para os="f">Install the package:</para>
43
44<screen os="g"><userinput>make install</userinput></screen>
45
46  </sect2>
47
48  <sect2 id="contents-libtool" role="content">
49    <title>Contents of Libtool</title>
50
51    <segmentedlist>
52      <segtitle>Installed programs</segtitle>
53      <segtitle>Installed libraries</segtitle>
54      <segtitle>Installed directories</segtitle>
55
56      <seglistitem>
57        <seg>libtool, libtoolize</seg>
58        <seg>libltdl.[a,so]</seg>
59        <seg>/usr/include/libltdl, /usr/share/libtool</seg>
60      </seglistitem>
61    </segmentedlist>
62
63    <variablelist>
64      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
65      <?dbfo list-presentation="list"?>
66      <?dbhtml list-presentation="table"?>
67
68      <varlistentry id="libtool">
69        <term><command>libtool</command></term>
70        <listitem>
71          <para>Provides generalized library-building support services</para>
72          <indexterm zone="ch-system-libtool libtool">
73            <primary sortas="b-libtool">libtool</primary>
74          </indexterm>
75        </listitem>
76      </varlistentry>
77
78      <varlistentry id="libtoolize">
79        <term><command>libtoolize</command></term>
80        <listitem>
81          <para>Provides a standard way to add <command>libtool</command> support
82          to a package</para>
83          <indexterm zone="ch-system-libtool libtoolize">
84            <primary sortas="b-libtoolize">libtoolize</primary>
85          </indexterm>
86        </listitem>
87      </varlistentry>
88
89      <varlistentry id="libltdl">
90        <term><filename class="libraryfile">libltdl</filename></term>
91        <listitem>
92          <para>Hides the various difficulties of dlopening libraries</para>
93          <indexterm zone="ch-system-libtool libltdl">
94            <primary sortas="c-libltdl">libltdl</primary>
95          </indexterm>
96        </listitem>
97      </varlistentry>
98
99    </variablelist>
100
101  </sect2>
102
103</sect1>
Note: See TracBrowser for help on using the repository browser.