autoconf-desc.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <sect2>
  2. <title>Contents</title>
  3. <para>The Autoconf package contains the autoconf, autoheader, autoreconf,
  4. autoscan, autoupdate and ifnames programs</para>
  5. </sect2>
  6. <sect2><title>Description</title>
  7. <sect3><title>autoconf</title>
  8. <para>Autoconf is a tool for producing shell scripts that automatically
  9. configure software source code packages to adapt to many kinds of
  10. UNIX-like systems. The configuration scripts produced by Autoconf are
  11. independent of Autoconf when they are run, so their users do not need to
  12. have Autoconf.</para></sect3>
  13. <sect3><title>autoheader</title>
  14. <para>The autoheader program can create a template file of C #define
  15. statements for configure to use</para></sect3>
  16. <sect3><title>autoreconf</title>
  17. <para>If there are a lot of Autoconf-generated configure scripts, the
  18. autoreconf program can save some work. It runs autoconf (and
  19. autoheader, where appropriate) repeatedly to remake the Autoconf
  20. configure scripts and configuration header templates in the directory
  21. tree rooted at the current directory.</para></sect3>
  22. <sect3><title>autoscan</title>
  23. <para>The autoscan program can help to create a configure.in file for
  24. a software package. autoscan examines source files in the directory
  25. tree rooted at a directory given as a command line argument, or the
  26. current directory if none is given. It searches the source files for
  27. common portability problems and creates a file configure.scan which
  28. is a preliminary configure.in for that package.</para></sect3>
  29. <sect3><title>autoupdate</title>
  30. <para>The autoupdate program updates a configure.in file that calls
  31. Autoconf macros by their old names to use the current
  32. macro names.</para></sect3>
  33. <sect3><title>ifnames</title>
  34. <para>ifnames can help when writing a configure.in for a software
  35. package. It prints the identifiers that the package already uses in C
  36. preprocessor conditionals. If a package has already been set up to
  37. have some portability, this program can help to figure out what its
  38. configure needs to check for. It may help fill in some gaps in a
  39. configure.in generated by autoscan.</para></sect3>
  40. </sect2>