1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.63])
5AC_INIT([mtx], [0.60d], [dpl@sun.ac.za])
6AC_CONFIG_SRCDIR([analyze.c])
7AC_CONFIG_HEADERS([config.h])
8AM_INIT_AUTOMAKE(mtx,0.60d)
9
10# Checks for programs.
11AC_PROG_CC
12AC_PROG_INSTALL
13AC_PROG_MAKE_SET
14AC_PROG_RANLIB
15
16# Checks for libraries.
17
18# Checks for header files.
19AC_CHECK_HEADERS([memory.h stddef.h stdlib.h string.h strings.h])
20
21# Checks for typedefs, structures, and compiler characteristics.
22AC_HEADER_STDBOOL
23AC_TYPE_SIZE_T
24
25# Checks for library functions.
26AC_FUNC_ERROR_AT_LINE
27AC_FUNC_MALLOC
28AC_FUNC_STRTOD
29AC_CHECK_FUNCS([memchr memmove memset strchr strrchr strtol])
30
31AC_CONFIG_FILES([Makefile
32                 libp2c/Makefile])
33AC_OUTPUT
34