AC_PREREQ(2.59) AC_INIT(uni2ascii, 4.3, billposer@alum.mit.edu) AM_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE # Checks for programs. AC_PROG_CC AC_PROG_INSTALL # Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS([libintl.h locale.h regex.h stddef.h stdio.h stdlib.h string.h sys/types.h type.h unistd.h wchar.h]) # Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_TYPE_SIZE_T # Checks for library functions. AC_FUNC_MALLOC AC_FUNC_REALLOC AC_CHECK_FUNCS([regcomp setlocale strtoul]) AC_CONFIG_FILES([Makefile]) AC_OUTPUT