(chise_ft_iterate): New function.
[chise/libchise.git] / configure.in
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 AC_PREREQ(2.57)
5 AC_INIT(libchise, 0.1.1, chise-en@m17n.org)
6 AC_CONFIG_SRCDIR(chise.c)
7 AC_CONFIG_HEADER(config.h)
8
9 # Checks for programs.
10 AC_PROG_CC
11 AC_CHECK_PROGS(LIBTOOL, glibtool libtool, libtool, \
12         /usr/local/bin:/opt/bin:/sw/bin:/usr/bin:/bin)
13
14 # Checks for libraries.
15 if test -f /sw/include/db3/db.h; then
16         CFLAGS="-I/sw/include/db3 $CFLAGS"
17 fi
18
19 # Checks for header files.
20
21 # Checks for typedefs, structures, and compiler characteristics.
22 AC_C_CONST
23 AC_C_INLINE
24
25 # Checks for library functions.
26 AC_FUNC_ALLOCA
27 AC_FUNC_STRNLEN
28
29 AC_CHECK_FUNCS(strnlen)
30
31 AC_CONFIG_FILES([Makefile])
32 AC_OUTPUT