1dnl Process this file with autoconf to produce a configure script.
2AC_PREREQ(2.12.1)
3AC_INIT(adp.h)
4
5AM_INIT_AUTOMAKE(rdi-share, 1.0)
6
7PACKAGE=rdi-share
8VERSION=1.0
9
10dnl Checks for programs.
11AC_PROG_CC
12AC_PROG_INSTALL
13AC_PROG_MAKE_SET
14AC_PROG_RANLIB
15
16dnl Checks for libraries.
17
18dnl Checks for header files.
19AC_HEADER_STDC
20AC_CHECK_HEADERS(fcntl.h sys/ioctl.h sys/time.h unistd.h sys/filio.h)
21
22dnl Checks for typedefs, structures, and compiler characteristics.
23AC_C_CONST
24AC_TYPE_SIZE_T
25AC_HEADER_TIME
26
27dnl Checks for library functions.
28AC_PROG_GCC_TRADITIONAL
29AC_TYPE_SIGNAL
30AC_FUNC_VPRINTF
31AC_CHECK_FUNCS(gettimeofday select socket strtod strtoul memcpy memmove)
32
33AM_MAINTAINER_MODE
34AM_EXEEXT
35
36AC_OUTPUT(Makefile)
37