configure.in 413 B

123456789101112131415161718192021
  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT(file.c)
  3. AC_CONFIG_HEADER(config.h)
  4. dnl Checks for programs.
  5. AC_PROG_CC
  6. AC_PROG_INSTALL
  7. AC_PROG_LN_S
  8. dnl Checks for typedefs, structures, and compiler characteristics.
  9. AC_C_CONST
  10. AC_TYPE_OFF_T
  11. AC_TYPE_SIZE_T
  12. AC_STRUCT_ST_RDEV
  13. AC_CHECK_SIZEOF(int,4)
  14. AC_CHECK_SIZEOF(long,4)
  15. dnl Checks for headers
  16. AC_HEADER_SYS_WAIT
  17. AC_OUTPUT(Makefile)