Added a few comments here and there
[linux_from_scratch.git] / newxml / chapter06 / autoconf.xml
blob44d35825a577b65985a6657a1ca1d045ff36f47c
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3CR2//EN" "http://www.docbook.org/xml/4.3CR2/docbookx.dtd" [
3   <!ENTITY % autoconf-entities SYSTEM "../ent/autoconf.ent">
4   %autoconf-entities;
5 ]>
6 <sect1 id="ch06-autoconf">
7 <title>Installing Autoconf-&autoconf-version;</title>
8 <?dbhtml filename="autoconf.html"?>
10 <screen>Estimated build time:           2.9 SBU
11 Estimated required disk space:  7.7 MB</screen>
13 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="../appendixa/autoconf-contents.xml"/>
16 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="../appendixa/autoconf-deps.xml"/>
19 <sect2>
20 <title>Installation of Autoconf</title>
22 <para>Prepare Autoconf for compilation:</para>
24 <screen><userinput>./configure --prefix=/usr</userinput></screen>
26 <para>Compile the package:</para>
28 <screen><userinput>make</userinput></screen>
30 <para>This package has a test suite available which performs a number of
31 checks to ensure it will function correctly. It's worth noting that Autoconf
32 does not play a critical role in the overall operation of an LFS system. In
33 addition, the Autoconf test suite runs for quite a long period of time.
34 Accordingly, the running of the test suite here is not crucial. Should you
35 choose to run the Autoconf test suite, the following command will do
36 so:</para>
38 <screen><userinput>make check</userinput></screen>
40 <para>And install the package:</para>
42 <screen><userinput>make install</userinput></screen>
44 </sect2>
46 </sect1>