1 dnl Process this file with autoconf to produce a configure script.
3 AM_CONFIG_HEADER(config.h)
4 AM_INIT_AUTOMAKE(tunala, 0.0.1-dev)
6 dnl Checks for programs. (Though skip libtool)
11 dnl Checks for libraries.
12 AC_CHECK_LIB(dl, dlopen)
13 AC_CHECK_LIB(z, inflate)
14 AC_CHECK_LIB(socket, socket)
15 AC_CHECK_LIB(nsl, gethostbyname)
17 dnl Checks for header files.
19 AC_CHECK_HEADERS(fcntl.h limits.h unistd.h)
21 dnl Checks for typedefs, structures, and compiler characteristics.
24 dnl Checks for library functions.
25 AC_CHECK_FUNCS(strstr strtoul)
26 AC_CHECK_FUNCS(select socket)
27 AC_CHECK_FUNCS(dlopen)