dnl Process this file with autoconf to produce a configure script. AC_INIT(bvi.c) dnl Checks for programs. AC_PROG_CC AC_PROG_INSTALL AC_PROG_LN_S AC_PROG_MAKE_SET dnl Checks for libraries. dnl Replace `main' with a function in -lcurses: AC_CHECK_LIB(curses, main) dnl Replace `main' with a function in -lncurses: AC_CHECK_LIB(ncurses, main) dnl Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS(fcntl.h unistd.h) dnl Checks for typedefs, structures, and compiler characteristics. AC_TYPE_SIZE_T dnl Checks for library functions. AC_TYPE_SIGNAL AC_CHECK_FUNCS(strdup strtol) AC_OUTPUT(Makefile)