commit | author | age
|
d7639a
|
1 |
# -*- Autoconf -*- |
SP |
2 |
# Process this file with autoconf to produce a configure script. |
|
3 |
|
|
4 |
AC_PREREQ([2.50]) |
|
5 |
AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS]) |
|
6 |
AM_INIT_AUTOMAKE |
|
7 |
AC_CONFIG_SRCDIR([config.h.in]) |
|
8 |
AC_CONFIG_HEADERS([config.h]) |
|
9 |
|
|
10 |
# Checks for programs. |
|
11 |
AC_PROG_CC |
|
12 |
|
|
13 |
# Checks for libraries. |
|
14 |
|
|
15 |
# Checks for header files. |
|
16 |
AC_CHECK_HEADERS([stdlib.h]) |
|
17 |
|
|
18 |
# Checks for typedefs, structures, and compiler characteristics. |
|
19 |
|
|
20 |
# Checks for library functions. |
|
21 |
AC_FUNC_MALLOC |
|
22 |
|
|
23 |
AC_CONFIG_FILES([Makefile |
|
24 |
src/Makefile |
|
25 |
test/Makefile]) |
|
26 |
AC_OUTPUT |