configure.in 426 B

1234567891011121314151617181920212223
  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT(reduce.c)
  3. dnl Checks for programs.
  4. AC_PROG_CC
  5. AC_PROG_INSTALL
  6. AC_MINIX
  7. AC_ISC_POSIX
  8. dnl Checks for header files.
  9. AC_HEADER_STDC
  10. AC_CHECK_HEADERS(string.h stdlib.h memory.h)
  11. dnl Checks for typedefs, structures, and compiler characteristics.
  12. AC_C_CONST
  13. dnl Checks for library functions.
  14. AC_FUNC_ALLOCA
  15. AC_CHECK_FUNCS(strerror)
  16. AC_OUTPUT(Makefile)