Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Example Configurations

Huge Mozilla configure.in

http://lxr.mozilla.org/seamonkey/source/configure.in

M4

Code Snippets

To include an M4 file, use the sinclude function, e.g.

...

Important Macros

Checking files.

No Format
AC_CHECK_FILE
AC_CHECK_FILES

Checking libs.

No Format
AC_CHECK_LIB

Messages.

No Format
AC_MSG_CHECKING
AC_MSG_NOTICE
AC_MSG_RESULT
AC_MSG_WARN

Command-line arguments.

No Format
AC_ARG_ENABLE
AC_ARG_WITH

Huge Mozilla configure.in

http://lxr.mozilla.org/seamonkey/source/configure.in

Guide to writing configure.in.

http://www.adp-gmbh.ch/misc/tools/configure/configure_in.html

Current GNU Autoconf manual in PDF.

http://www.gnu.org/software/autoconf/manual/autoconf.pdf

Autoconf macro archive.

http://autoconf-archive.cryp.to/macros-by-category.html

...