configure.in 389 B

12345678910111213141516171819
  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_HEADER_SYS_WAIT
  14. AC_CHECK_SIZEOF(int,4)
  15. AC_CHECK_SIZEOF(long,4)
  16. AC_OUTPUT(Makefile)