# -*- 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 AC_CHECK_PROGS(LIBTOOL, glibtool libtool, libtool, \ /usr/local/bin:/opt/bin:/sw/bin:/usr/bin:/bin) # Checks for libraries. if test -f /sw/include/db3/db.h; then CFLAGS="-I/sw/include/db3 $CFLAGS" fi # 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