autoconf-desc.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <sect2><title>Short descriptions</title>
  2. <para><command>autoconf</command> is a tool for producing shell scripts
  3. that automatically configure software source code packages to adapt to many
  4. kinds of Unix-like systems. The configuration scripts it produces are
  5. independent -- running them does not require the autoconf program.</para>
  6. <para><command>autoheader</command> is a tool for creating template files
  7. of C #define statements for configure to use.</para>
  8. <para><command>autom4te</command> is a wrapper for the M4 macro
  9. processor.</para>
  10. <para><command>autoreconf</command> comes in handy when there are a lot
  11. of autoconf-generated configure scripts around. The program runs autoconf and
  12. autoheader repeatedly (where appropriate) to remake the autoconf configure
  13. scripts and configuration header templates in a given directory tree.</para>
  14. <para><command>autoscan</command> can help to create a
  15. <filename>configure.in</filename> file for a software package. It examines
  16. the source files in a directory tree, searching them for common portability
  17. problems and creates a <filename>configure.scan</filename> file that serves as
  18. as a preliminary <filename>configure.in</filename> for the package.</para>
  19. <para><command>autoupdate</command> modifies a
  20. <filename>configure.in</filename> file that still calls autoconf macros
  21. by their old names to use the current macro names.</para>
  22. <para><command>ifnames</command> can be helpful when writing a
  23. <filename>configure.in</filename> for a software package. It prints the
  24. identifiers that the package uses in C preprocessor conditionals. If a package
  25. has already been set up to have some portability, this program can help to
  26. determine what <userinput>configure</userinput> needs to check. It can fill
  27. in some gaps in a <filename>configure.in</filename> file generated by
  28. autoscan.</para>
  29. </sect2>