Sync usage with man page.
[netbsd-mini2440.git] / crypto / external / bsd / openssl / dist / demos / tunala / configure.in
blob590cdbfd263b710b8a50502263cb5da6a70c547b
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(tunala.c)
3 AM_CONFIG_HEADER(config.h)
4 AM_INIT_AUTOMAKE(tunala, 0.0.1-dev)
6 dnl Checks for programs. (Though skip libtool)
7 AC_PROG_CC
8 dnl AC_PROG_LIBTOOL
9 dnl AM_PROG_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.
18 AC_HEADER_STDC
19 AC_CHECK_HEADERS(fcntl.h limits.h unistd.h)
21 dnl Checks for typedefs, structures, and compiler characteristics.
22 AC_C_CONST
24 dnl Checks for library functions.
25 AC_CHECK_FUNCS(strstr strtoul)
26 AC_CHECK_FUNCS(select socket)
27 AC_CHECK_FUNCS(dlopen)
29 AC_OUTPUT(Makefile)