Check about libtool.
[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
16 # Checks for header files.
17
18 # Checks for typedefs, structures, and compiler characteristics.
19 AC_C_CONST
20 AC_C_INLINE
21
22 # Checks for library functions.
23 AC_FUNC_ALLOCA
24 AC_FUNC_STRNLEN
25
26 AC_CHECK_FUNCS(strnlen)
27
28 AC_CONFIG_FILES([Makefile])
29 AC_OUTPUT