]> andersk Git - splint.git/blob - src/configure.scan
noexpand always false.
[splint.git] / src / configure.scan
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(Headers/misc.h)
3
4 dnl Checks for programs.
5 AC_PROG_CXX
6 AC_PROG_YACC
7 AC_PROG_CPP
8 AC_PROG_LEX
9 AC_PROG_CC
10
11 dnl Checks for libraries.
12 dnl Replace `main' with a function in -load:
13 AC_CHECK_LIB(oad, main)
14
15 dnl Checks for header files.
16 AC_HEADER_STDC
17 AC_CHECK_HEADERS(fcntl.h malloc.h sys/time.h unistd.h)
18
19 dnl Checks for typedefs, structures, and compiler characteristics.
20 AC_C_CONST
21 AC_TYPE_MODE_T
22 AC_TYPE_PID_T
23 AC_TYPE_SIZE_T
24 AC_STRUCT_TM
25
26 dnl Checks for library functions.
27 AC_FUNC_ALLOCA
28 AC_TYPE_SIGNAL
29 AC_CHECK_FUNCS(strerror strstr strtod)
30
31 AC_OUTPUT(Makefile)
This page took 0.065782 seconds and 5 git commands to generate.