source: general/prog/autoconf213.xml@ f475ce8b

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since f475ce8b was f475ce8b, checked in by DJ Lucas <dj@…>, 8 years ago

typo

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@17496 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 9.2 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 <!ENTITY autoconf213-download-http "http://ftp.gnu.org/gnu/autoconf/autoconf-&autoconf213-version;.tar.gz">
8 <!ENTITY autoconf213-download-ftp "ftp://ftp.gnu.org/gnu/autoconf/autoconf-&autoconf213-version;.tar.gz">
9 <!ENTITY autoconf213-md5sum "9de56d4a161a723228220b0f425dc711">
10 <!ENTITY autoconf213-size "434 KB">
11 <!ENTITY autoconf213-buildsize "2.8 MB">
12 <!ENTITY autoconf213-time "less than 0.1 SBU (additional 0.1 SBU for the tests)">
13]>
14
15<sect1 id="autoconf213" xreflabel="Autoconf-&autoconf213-version;">
16 <?dbhtml filename="autoconf213.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Autoconf-&autoconf213-version;</title>
24
25 <indexterm zone="autoconf213">
26 <primary sortas="a-Autoconf-213">Autoconf-213</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Autoconf-2.13</title>
31
32 <para>
33 <application>Autoconf-2.13</application> is an old version of
34 <application>Autoconf</application> . This old version accepts switches
35 which are not valid in more recent versions. Now that
36 <application>firefox</application> has started to use
37 <application>python2</application> for configuring, this old version is
38 required even if configure files have not been changed.
39 </para>
40
41 &lfs79_checked;&gcc6_checked;
42
43 <bridgehead renderas="sect3">Package Information</bridgehead>
44 <itemizedlist spacing="compact">
45 <listitem>
46 <para>
47 Download (HTTP): <ulink url="&autoconf213-download-http;"/>
48 </para>
49 </listitem>
50 <listitem>
51 <para>
52 Download (FTP): <ulink url="&autoconf213-download-ftp;"/>
53 </para>
54 </listitem>
55 <listitem>
56 <para>
57 Download MD5 sum: &autoconf213-md5sum;
58 </para>
59 </listitem>
60 <listitem>
61 <para>
62 Download size: &autoconf213-size;
63 </para>
64 </listitem>
65 <listitem>
66 <para>
67 Estimated disk space required: &autoconf213-buildsize;
68 </para>
69 </listitem>
70 <listitem>
71 <para>
72 Estimated build time: &autoconf213-time;
73 </para>
74 </listitem>
75 </itemizedlist>
76
77 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
78 <itemizedlist spacing="compact">
79 <listitem>
80 <para>
81 Required patch:
82 <ulink url="&patch-root;/autoconf-&autoconf213-version;-consolidated_fixes-1.patch"/>
83 </para>
84 </listitem>
85 </itemizedlist>
86
87 <bridgehead renderas="sect3">Autoconf-2.13 Dependencies</bridgehead>
88
89 <bridgehead renderas="sect4">Optional</bridgehead>
90 <para role="optional">
91 <xref linkend="dejagnu"/> (Required for the tests)
92 </para>
93
94 <para condition="html" role="usernotes">User Notes:
95 <ulink url="&blfs-wiki;/autoconf213"/>
96 </para>
97 </sect2>
98
99 <sect2 role="installation">
100 <title>Installation of Autoconf-2.13</title>
101
102 <para>
103 Install <application>Check</application> by running the following
104 commands:
105 </para>
106
107<screen><userinput>patch -Np1 -i ../autoconf-&autoconf213-version;-consolidated_fixes-1.patch &amp;&amp;
108mv -v autoconf.texi autoconf213.texi &amp;&amp;
109rm -v autoconf.info &amp;&amp;
110./configure --prefix=/usr --program-suffix=2.13 &amp;&amp;
111make</userinput></screen>
112
113 <para>
114 To test the installation, if you have installed <xref linkend="dejagnu"/>
115 issue <command>make check</command> (all 253 tests should pass).
116 </para>
117
118 <para>
119 Now, as the <systemitem class="username">root</systemitem> user:
120 </para>
121
122<screen role="root"><userinput>make install &amp;&amp;
123install -v -m644 autoconf213.info /usr/share/info &amp;&amp;
124install-info --info-dir=/usr/share/info autoconf213.info
125</userinput></screen>
126
127 </sect2>
128
129 <sect2 role="commands">
130 <title>Command Explanations</title>
131
132 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
133 href="../../xincludes/static-libraries.xml"/>
134
135 <para>
136 <command>mv -v autoconf.texi autoconf213.texi</command>: ensure that the
137 info file added by this package will not overwrite the more recent version.
138 </para>
139
140 <para>
141 <command>rm -v autoconf.info</command>: ensure that the info file will be
142 created by the current version of texinfo.
143 </para>
144
145 <para>
146 <command>--program-suffix=-2.13</command>: ensure that the installed
147 programs have the version added to their names, so that only a script
148 which specifically looks for these old versions will find them.
149 </para>
150
151 <para>
152 <command>install -v -m644 ...</command>: the patch removes install-info
153 from the Makefile because that would install (and if necessary recreate)
154 standards.info which is an old version, so now
155 <filename>autoconf213.info</filename> has to be manually installed.
156 </para>
157
158 </sect2>
159
160 <sect2 role="content">
161 <title>Contents</title>
162
163 <segmentedlist>
164 <segtitle>Installed Programs</segtitle>
165 <segtitle>Installed Library</segtitle>
166 <segtitle>Installed Directory</segtitle>
167
168 <seglistitem>
169 <seg>
170 autoconf-2.13, autoheader-2.13, autoreconf-2.13, autoscan-2.13, autoupdate-2.13, ifnames-2.13
171 </seg>
172 <seg>
173 None
174 </seg>
175 <seg>
176 /usr/share/autoconf-2.13
177 </seg>
178 </seglistitem>
179 </segmentedlist>
180
181 <variablelist>
182 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
183 <?dbfo list-presentation="list"?>
184 <?dbhtml list-presentation="table"?>
185
186 <varlistentry id="autoconf-2.13">
187 <term><command>autoconf-2.13</command></term>
188 <listitem>
189 <para>
190 Produces shell scripts that automatically configure software source
191 code packages to adapt to many kinds of Unix-like systems.
192 </para>
193 <indexterm zone="autoconf213 autoconf-2.13">
194 <primary sortas="b-autoconf-2.13">autoconf-2.13</primary>
195 </indexterm>
196 </listitem>
197 </varlistentry>
198
199 <varlistentry id="autoheader-2.13">
200 <term><command>autoheader-2.13</command></term>
201 <listitem>
202 <para>
203 A tool for creating template files of C <emphasis>#define</emphasis>
204 statements for configure to use
205 </para>
206 <indexterm zone="autoconf213 autoheader-2.13">
207 <primary sortas="b-autoheader-2.13">autoheader-2.13</primary>
208 </indexterm>
209 </listitem>
210 </varlistentry>
211
212 <varlistentry id="autoreconf-2.13">
213 <term><command>autoreconf-2.13</command></term>
214 <listitem>
215 <para>
216 This automatically runs <command>autoconf-2.13</command>,
217 <command>autoheader-2.13</command>, <command>aclocal</command>,
218 <command>automake</command>, <command>gettextize</command> and
219 <command>libtoolize</command> in the right order when changes
220 have been made to <command>autoconf</command> or
221 <command>automake</command> template files.
222 </para>
223 <indexterm zone="autoconf213 autoreconf-2.13">
224 <primary sortas="b-autoreconf-2.13">autoreconf-2.13</primary>
225 </indexterm>
226 </listitem>
227 </varlistentry>
228
229 <varlistentry id="autoscan-2.13">
230 <term><command>autoscan-2.13</command></term>
231 <listitem>
232 <para>
233 Can be used as a preliminary step in creating a
234 <filename>configure.in</filename> file.
235 </para>
236 <indexterm zone="autoconf213 autoscan-2.13">
237 <primary sortas="b-autoscan-2.13">autoscan-2.13</primary>
238 </indexterm>
239 </listitem>
240 </varlistentry>
241
242 <varlistentry id="autoupdate-2.13">
243 <term><command>autoupdate-2.13</command></term>
244 <listitem>
245 <para>
246 Modifies a <filename>configure.in</filename> file that still
247 calls <command>autoconf</command> macros by their old names
248 to use the current macro names.
249 </para>
250 <indexterm zone="autoconf213 autoupdate-2.13">
251 <primary sortas="b-autoupdate-2.13">autoupdate-2,13</primary>
252 </indexterm>
253 </listitem>
254 </varlistentry>
255
256 <varlistentry id="ifnames-2.13">
257 <term><command>ifnames-2.13</command></term>
258 <listitem>
259 <para>
260 prints the identifiers that the package uses in C preprocessor
261 conditionals [If a package has already been set up to have some
262 portability, this program can help determine what configure needs to
263 check for. It can also fill in gaps in a configure.in file generated
264 by autoscan.]
265 </para>
266 <indexterm zone="autoconf213 ifnames-2.13">
267 <primary sortas="b-ifnames-2.13">ifnames-2.13</primary>
268 </indexterm>
269 </listitem>
270 </varlistentry>
271
272 </variablelist>
273
274 </sect2>
275
276</sect1>
Note: See TracBrowser for help on using the repository browser.