Include "config.h" when HAVE_CONFIG_H is defined.
[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
12 # Checks for libraries.
13
14 # Checks for header files.
15
16 # Checks for typedefs, structures, and compiler characteristics.
17 AC_C_CONST
18 AC_C_INLINE
19
20 # Checks for library functions.
21 AC_FUNC_ALLOCA
22 AC_FUNC_STRNLEN
23
24 AC_CHECK_FUNCS(strnlen)
25
26 AC_CONFIG_FILES([Makefile])
27 AC_OUTPUT