dnl Process this file with autoconf to produce a configure script. AC_INIT(twhttpd.c) dnl Checks for programs. AC_PROG_INSTALL AC_PROG_CC AC_PROG_YACC AC_PROG_LEX dnl Checks for libraries. AC_SEARCH_LIBS(crypt, pwdb crypt) AC_CHECK_LIB(socket, bind) AC_CHECK_LIB(nsl, gethostbyname) dnl Checks for library functions. AC_CHECK_FUNCS(inet_aton inet_pton) AC_OUTPUT(Makefile)