autoconf-desc.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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>
  13. </sect3>
  14. <sect3><title>autoheader</title>
  15. <para>The autoheader program can create a template file of C #define
  16. statements for configure to use</para>
  17. </sect3>
  18. <sect3><title>autoreconf</title>
  19. <para>If there are a lot of Autoconf-generated configure scripts, the
  20. autoreconf program can save some work. It runs autoconf (and
  21. autoheader, where appropriate) repeatedly to remake the Autoconf
  22. configure scripts and configuration header templates in the directory
  23. tree rooted at the current directory.</para>
  24. </sect3>
  25. <sect3><title>autoscan</title>
  26. <para>The autoscan program can help to create a configure.in file for
  27. a software package. autoscan examines source files in the directory
  28. tree rooted at a directory given as a command line argument, or the
  29. current directory if none is given. It searches the source files for
  30. common portability problems and creates a file configure.scan which
  31. is a preliminary configure.in for that package.</para>
  32. </sect3>
  33. <sect3><title>autoupdate</title>
  34. <para>The autoupdate program updates a configure.in file that calls
  35. Autoconf macros by their old names to use the current macro names.</para>
  36. </sect3>
  37. <sect3><title>ifnames</title>
  38. <para>ifnames can help when writing a configure.in for a software
  39. package. It prints the identifiers that the package already uses in C
  40. preprocessor conditionals. If a package has already been set up to
  41. have some portability, this program can help to figure out what its
  42. configure needs to check for. It may help fill in some gaps in a
  43. configure.in generated by autoscan.</para>
  44. </sect3>
  45. </sect2>