Initial commit of `icmpmonitor-1.2` from http://www.crocodile.org/software.html
[icmpmonitor] / configure.in
CommitLineData
c5de9e27
AT
1dnl Process this file with autoconf to produce a configure script.
2AC_INIT(icmpmonitor.c)
3
4dnl Checks for programs.
5AC_PROG_CC
6AC_PROG_INSTALL
7
8dnl Checks for libraries.
9AC_CHECK_LIB(nsl, gethostbyname)
10AC_CHECK_LIB(socket, socketpair)
11
12dnl Checks for header files.
13AC_HEADER_STDC
14AC_CHECK_HEADERS(sys/time.h syslog.h unistd.h sys/fcntl.h fcntl.h)
15
16dnl Checks for typedefs, structures, and compiler characteristics.
17AC_C_CONST
18AC_TYPE_SIZE_T
19AC_HEADER_TIME
20
21dnl Checks for library functions.
22AC_TYPE_SIGNAL
23AC_FUNC_VPRINTF
24AC_CHECK_FUNCS(openlog closelog syslog gettimeofday select socket strdup vsnprintf vsprintf)
25
26AC_OUTPUT(Makefile)