0.2 snapshot
[himkr] / configure.scan
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 AC_PREREQ(2.61)
5 AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
6 AC_CONFIG_SRCDIR([src/test.c])
7 AC_CONFIG_HEADER([config.h])
8
9 # Checks for programs.
10 AC_PROG_CXX
11 AC_PROG_CC
12 AC_PROG_CPP
13 AC_PROG_INSTALL
14 AC_PROG_LN_S
15 AC_PROG_MAKE_SET
16 AC_PROG_RANLIB
17
18 # Checks for libraries.
19
20 # Checks for header files.
21 AC_HEADER_STDC
22 AC_CHECK_HEADERS([string.h])
23
24 # Checks for typedefs, structures, and compiler characteristics.
25 AC_C_CONST
26
27 # Checks for library functions.
28 AC_CHECK_FUNCS([memset])
29
30 AC_CONFIG_FILES([Makefile
31                  src/Makefile])
32 AC_OUTPUT