dnl Process this file with autoconf to produce a configure script. AC_INIT(dirent.c) dnl Checks for programs. AC_PROG_CC AC_PROG_RANLIB AC_PROG_INSTALL dnl Checks for libraries. dnl Checks for header files. AC_HEADER_STDC AC_HEADER_DIRENT AC_CHECK_HEADERS(fcntl.h malloc.h unistd.h) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_TYPE_SIZE_T AC_STRUCT_ST_RDEV dnl Checks for library functions. AC_FUNC_ALLOCA AC_FUNC_SETVBUF_REVERSED AC_CHECK_FUNCS(putenv strdup strtol) AC_OUTPUT(Makefile)