diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-02-15 15:26:52 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-02-15 15:26:52 +0000 |
commit | b08f4096533577934b885fa9df41d3881d141612 (patch) | |
tree | 8e5ffc0ba65ac34d97cd6a896d33b85a897a6da8 /appendixa/autoconf-desc.xml | |
parent | ad08014624938a3a3bfd1b44e8b27d02c7b06dd8 (diff) |
Initial XML commit
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@174 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'appendixa/autoconf-desc.xml')
-rw-r--r-- | appendixa/autoconf-desc.xml | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/appendixa/autoconf-desc.xml b/appendixa/autoconf-desc.xml new file mode 100644 index 000000000..b6d2f3554 --- /dev/null +++ b/appendixa/autoconf-desc.xml @@ -0,0 +1,82 @@ +<sect2> +<title>Contents</title> + +<para> +The Autoconf package contains the autoconf, autoheader, autoreconf, +autoscan, autoupdate and ifnames programs +</para> + +</sect2> + +<sect2><title>Description</title> + +<sect3><title>autoconf</title> + +<para> +Autoconf is a tool for producing shell scripts that automatically +configure software source code packages to adapt to many kinds of +UNIX-like systems. The configuration scripts produced by Autoconf are +independent of Autoconf when they are run, so their users do not need to +have Autoconf. +</para> + +</sect3> + +<sect3><title>autoheader</title> + +<para> +The autoheader program can create a template file of C #define +statements for configure to use +</para> + +</sect3> + +<sect3><title>autoreconf</title> + +<para> +If you have a lot of Autoconf-generated configure scripts, the +autoreconf program can save you some work. It runs autoconf (and +autoheader, where appropriate) repeatedly to remake the Autoconf +configure scripts and configuration header templates in the directory +tree rooted at the current directory. +</para> + +</sect3> + +<sect3><title>autoscan</title> + +<para> +The autoscan program can help you create a configure.in file for +a software package. autoscan examines source files in the directory +tree rooted at a directory given as a command line argument, or the +current directory if none is given. It searches the source files for +common portability problems and creates a file configure.scan which +is a preliminary configure.in for that package. +</para> + +</sect3> + +<sect3><title>autoupdate</title> + +<para> +The autoupdate program updates a configure.in file that calls +Autoconf macros by their old names to use the current macro names. +</para> + +</sect3> + +<sect3><title>ifnames</title> + +<para> +ifnames can help when writing a configure.in for a software +package. It prints the identifiers that the package already uses in C +preprocessor conditionals. If a package has already been set up to +have some portability, this program can help you figure out what its +configure needs to check for. It may help fill in some gaps in a +configure.in generated by autoscan. +</para> + +</sect3> + +</sect2> + |