New
[m17n/libotf.git] / configure.ac
1 # Process this file with autoconf to produce a configure script.
2 AC_INIT(libotf, 1.0, libotf@m17n.org)
3 AM_INIT_AUTOMAKE(libotf, 1.0)
4 AM_CONFIG_HEADER(src/config.h)
5
6 # Checks for programs.
7 AC_PROG_CC
8 AC_PROG_LIBTOOL
9
10 # Checks for libraries.
11
12 # Checks for header files.
13 AC_HEADER_STDC
14 AC_CHECK_HEADERS([fcntl.h stdlib.h string.h unistd.h])
15
16 # Checks for typedefs, structures, and compiler characteristics.
17
18 # Checks for library functions.
19 AC_FUNC_ALLOCA
20 AC_FUNC_MALLOC
21
22 AC_CONFIG_FILES([Makefile src/Makefile example/Makefile otflib-config])
23 AC_OUTPUT