Blame | Last modification | View Log | Download
dnl Process this file with autoconf to produce a configure script.AC_INIT(main.cpp)AM_INIT_AUTOMAKE(tinyxpath,1.1)dnl Checks for programs.AC_PROG_AWKAC_PROG_CCAC_PROG_CPPAC_PROG_CXXAC_PROG_INSTALLAC_PROG_LN_SAC_PROG_RANLIBdnl Checks for libraries.dnl Replace `main' with a function in -lm:AC_CHECK_LIB(m, main)dnl Checks for header files.AC_HEADER_DIRENTAC_HEADER_STDCAC_HEADER_SYS_WAITAC_CHECK_HEADERS(fcntl.h sys/time.h unistd.h)dnl Checks for typedefs, structures, and compiler characteristics.AC_C_CONSTAC_HEADER_TIMEdnl Checks for library functions.AC_CHECK_FUNCS(socket)AC_OUTPUT(Makefile)