dnl Process this file with autoconf to produce a configure script. AC_INIT(buffer.c) AC_CONFIG_HEADER(config.h) dnl Checks for programs. AC_PROG_CC AC_PROG_LN_S dnl Checks for libraries. dnl Replace `main' with a function in -lm: AC_CHECK_LIB(m, pow) DC_DO_NETSET dnl Checks for header files. AC_HEADER_DIRENT AC_HEADER_STDC AC_CHECK_HEADERS(fcntl.h unistd.h stdint.h sys/socket.h) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_TYPE_MODE_T AC_TYPE_OFF_T AC_TYPE_SIZE_T dnl Checks for library functions. AC_CHECK_FUNCS(socket strcspn strdup strstr uname) AC_REPLACE_FUNCS(strsep) AC_OUTPUT(Makefile)