# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.57) AC_INIT(libchise, 0.1.1, chise-en@m17n.org) AC_CONFIG_SRCDIR(chise.c) AC_CONFIG_HEADER(config.h) # Checks for programs. AC_PROG_CC # Checks for libraries. # Checks for header files. # Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_C_INLINE # Checks for library functions. AC_FUNC_ALLOCA AC_FUNC_STRNLEN AC_CHECK_FUNCS(strnlen) AC_CONFIG_FILES([Makefile]) AC_OUTPUT