dnl Process this file with autoconf to produce a configure script. AC_INIT(ure.c) AC_CONFIG_HEADER(config.h) dnl Checks for programs. AC_PROG_INSTALL AC_PROG_CC AC_PROG_RANLIB dnl Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS(limits.h stdlib.h unistd.h string.h stdarg.h sys/stat.h sys/types.h) dnl Check for functions AC_CHECK_FUNCS(memmove) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_TYPE_SIZE_T dnl that's it for now... AC_OUTPUT(Makefile)