dnl Process this file with autoconf to produce a configure script. AC_INIT(server.cpp) AC_CONFIG_HEADER(config.h) dnl Checks for programs. AC_PROG_CXX dnl Checks for libraries. AC_CHECK_LIB(socket,main) AC_CHECK_LIB(nsl,main) AC_CHECK_LIB(crypt,main) AC_CHECK_LIB(descrypt,main) AC_CHECK_LIB(stdc++,main) dnl Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS(fcntl.h sys/time.h unistd.h) dnl Checks for typedefs, structures, and compiler characteristics. AC_TYPE_OFF_T AC_TYPE_PID_T AC_TYPE_SIZE_T AC_HEADER_TIME dnl Checks for library functions. AC_FUNC_MMAP AC_TYPE_SIGNAL AC_FUNC_VPRINTF AC_CHECK_FUNCS(select socket memmove vsnprintf) AC_OUTPUT(Makefile)