dnl Process this file with autoconf to produce a configure script. AC_INIT(nullpop, 0.3, stef@memberwebs.com) AM_INIT_AUTOMAKE(nullpop, 0.3) AC_CONFIG_SRCDIR([nullpop.c]) AM_CONFIG_HEADER([config.h]) dnl Checks for programs. AC_PROG_CC AC_PROG_INSTALL AC_PROG_LN_S dnl Checks for header files. AC_HEADER_STDC AC_HEADER_SYS_WAIT AC_CHECK_HEADERS(fcntl.h limits.h paths.h sys/file.h sys/time.h syslog.h unistd.h) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_TYPE_SIZE_T dnl Checks for library functions. AC_FUNC_ALLOCA AC_TYPE_SIGNAL AC_CHECK_FUNCS(gethostname select socket strdup strerror strstr) AC_OUTPUT(Makefile)