dnl Process this file with autoconf to produce a configure script. AC_INIT(common.h) AM_INIT_AUTOMAKE(msend, 3.0) AM_CONFIG_HEADER(config.h) dnl Checks for programs. AC_PROG_CC dnl Checks for libraries. AC_HAVE_LIBRARY(readline) dnl Checks for header files. AC_HEADER_STDC AC_HEADER_SYS_WAIT AC_CHECK_HEADERS(fcntl.h limits.h malloc.h sys/file.h sys/ioctl.h sys/time.h unistd.h) dnl Checks for typedefs, structures, and compiler characteristics. AM_C_PROTOTYPES AC_C_CONST AC_HEADER_TIME AC_STRUCT_TM dnl Checks for library functions. AC_TYPE_SIGNAL AC_FUNC_STRFTIME AC_FUNC_WAIT3 AC_CHECK_FUNCS(gethostname select socket) AC_OUTPUT(Makefile, config.h)