blob: 8270152704c1a8be6cc3cfc00cbe1a0931b7eb2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
dnl Process this file with autoconf to produce a configure script.
AC_INIT(fib.c)
dnl Checks for programs.
dnl Checks for libraries.
dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(limits.h)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_INLINE
dnl Checks for library functions.
AC_OUTPUT(Makefile)
|