A lot of the preliminary and final portions of a configure.in file are very similar.
AC_INIT(slice-n-dice 0.1) AM_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) # Checks for programs. AC_PROG_CC AC_PROG_LIBTOOL AC_PROG_INTLTOOL # Checks for libraries. ... # Checks for header files. AC_HEADER_STDC ... # Checks for library functions. ... AC_OUTPUT( sliceNdice.spec Makefile src/Makefile po/Makefile.in ) |