source: chapter06/autoconf.xml@ 8d5ffbfd

Last change on this file since 8d5ffbfd was a0e1913, checked in by Manuel Canales Esparcia <manuel@…>, 19 years ago

Removed the package name from the dependencies titles.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multi-arch/BOOK@4691 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 5.0 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-system-autoconf" role="wrap">
7<title>Autoconf-&autoconf-version;</title>
8<?dbhtml filename="autoconf.html"?>
9
10<indexterm zone="ch-system-autoconf"><primary sortas="a-Autoconf">Autoconf</primary></indexterm>
11
12<sect2 role="package"><title/>
13<para>The Autoconf package contains programs for producing shell scripts that
14can automatically configure source code.</para>
15
16<segmentedlist>
17<segtitle>&buildtime;</segtitle>
18<segtitle>&diskspace;</segtitle>
19<seglistitem><seg>0.5 SBU</seg><seg>7.7 MB</seg></seglistitem>
20</segmentedlist>
21
22<segmentedlist>
23<segtitle>&dependencies;</segtitle>
24<seglistitem><seg>Bash, Coreutils, Diffutils, Grep,
25M4, Make, Perl, and Sed</seg></seglistitem>
26</segmentedlist>
27</sect2>
28
29<sect2 role="installation">
30<title>Installation of Autoconf</title>
31
32<para>Prepare Autoconf for compilation:</para>
33
34<screen><userinput>./configure --prefix=/usr</userinput></screen>
35
36<para>Compile the package:</para>
37
38<screen><userinput>make</userinput></screen>
39
40<para>To test the results, issue:
41<userinput>make check</userinput>. This takes a long time, about 2 SBUs.</para>
42
43<para>Install the package:</para>
44
45<screen><userinput>make install</userinput></screen>
46
47</sect2>
48
49
50<sect2 id="contents-autoconf" role="content"><title>Contents of Autoconf</title>
51
52<segmentedlist>
53<segtitle>Installed programs</segtitle>
54<seglistitem><seg>autoconf, autoheader, autom4te,
55autoreconf, autoscan, autoupdate, and ifnames</seg></seglistitem>
56</segmentedlist>
57
58<variablelist><bridgehead renderas="sect3">Short Descriptions</bridgehead>
59<?dbfo list-presentation="list"?>
60<?dbhtml list-presentation="table"?>
61
62<varlistentry id="autoconf">
63<term><command>autoconf</command></term>
64<listitem>
65<para>Produces shell scripts that automatically
66configure software source code packages to adapt to many kinds of
67Unix-like systems. The configuration scripts it produces are
68independent&mdash;running them does not require the <command>autoconf</command> program.</para>
69<indexterm zone="ch-system-autoconf autoconf"><primary sortas="b-autoconf">autoconf</primary></indexterm>
70</listitem>
71</varlistentry>
72
73<varlistentry id="autoheader">
74<term><command>autoheader</command> </term>
75<listitem>
76<para>A tool for creating template files of C
77<emphasis>#define</emphasis> statements for configure to use</para>
78<indexterm zone="ch-system-autoconf autoheader"><primary sortas="b-autoheader">autoheader</primary></indexterm>
79</listitem>
80</varlistentry>
81
82<varlistentry id="autom4te">
83<term><command>autom4te</command></term>
84<listitem>
85<para>A wrapper for the M4 macro processor</para>
86<indexterm zone="ch-system-autoconf autom4te"><primary sortas="b-autom4te">autom4te</primary></indexterm>
87</listitem>
88</varlistentry>
89
90<varlistentry id="autoreconf">
91<term><command>autoreconf</command></term>
92<listitem>
93<para>Automatically runs <command>autoconf</command>,
94<command>autoheader</command>, <command>aclocal</command>,
95<command>automake</command>, <command>gettextize</command>, and
96<command>libtoolize</command> in the correct order to save time
97when changes are made to <command>autoconf</command> and
98<command>automake</command> template files</para>
99<indexterm zone="ch-system-autoconf autoreconf"><primary sortas="b-autoreconf">autoreconf</primary></indexterm>
100</listitem>
101</varlistentry>
102
103<varlistentry id="autoscan">
104<term><command>autoscan</command> </term>
105<listitem>
106<para>Helps to create a <filename>configure.in</filename> file for a
107software package; it examines the source files in a directory tree,
108searching them for common portability issues, and creates a
109<filename>configure.scan</filename> file that serves as as a
110preliminary <filename>configure.in</filename> file for the
111package</para>
112<indexterm zone="ch-system-autoconf autoscan"><primary sortas="b-autoscan">autoscan</primary></indexterm>
113</listitem>
114</varlistentry>
115
116<varlistentry id="autoupdate">
117<term><command>autoupdate</command></term>
118<listitem>
119<para>Modifies a <filename>configure.in</filename> file that still
120calls <command>autoconf</command> macros by their old names to use the
121current macro names</para>
122<indexterm zone="ch-system-autoconf autoupdate"><primary sortas="b-autoupdate">autoupdate</primary></indexterm>
123</listitem>
124</varlistentry>
125
126<varlistentry id="ifnames">
127<term><command>ifnames</command> </term>
128<listitem>
129<para>Helps when writing <filename>configure.in</filename> files
130for a software package; it prints the identifiers that the package
131uses in C preprocessor conditionals. If a package has already been set
132up to have some portability, this program can help determine what
133<command>configure</command> needs to check for. It can also fill in
134gaps in a <filename>configure.in</filename> file generated by
135<command>autoscan</command></para>
136<indexterm zone="ch-system-autoconf ifnames"><primary sortas="b-ifnames">ifnames</primary></indexterm>
137</listitem>
138</varlistentry>
139</variablelist>
140
141</sect2>
142
143</sect1>
144
Note: See TracBrowser for help on using the repository browser.