configure.in 305 B

123456789101112131415
  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT(file.c)
  3. dnl Checks for programs.
  4. AC_PROG_CC
  5. AC_PROG_INSTALL
  6. AC_PROG_LN_S
  7. dnl Checks for typedefs, structures, and compiler characteristics.
  8. AC_C_CONST
  9. AC_TYPE_OFF_T
  10. AC_TYPE_SIZE_T
  11. AC_STRUCT_ST_RDEV
  12. AC_OUTPUT(Makefile config.h)