1dnl Process this file with autoconf to produce a configure script.
2AC_INIT(disco.h)
3AM_INIT_AUTOMAKE(Disco, 0.1)
4
5dnl Checks for programs.
6AC_PROG_CC
7AC_PROG_INSTALL
8
9dnl Checks for libraries.
10
11dnl Checks for header files.
12AC_HEADER_STDC
13AC_CHECK_HEADERS([unistd.h      \
14                  errno.h       \
15                  stdio.h       \
16                  stdlib.h      \
17                  sys/types.h   \
18                  netinet/in.h  \
19                  netinet/ip.h  \
20                  netinet/tcp.h \
21                  pcap.h        \
22                  signal.h])
23
24dnl Checks for typedefs, structures, and compiler characteristics.
25
26dnl Checks for library functions.
27AC_CHECK_FUNCS([strcpy \
28                strtok])
29
30AC_OUTPUT(Makefile)
31