and added files
[bcm963xx.git] / userapps / opensource / openssl / demos / tunala / configure.in
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)
5
6 dnl Checks for programs. (Though skip libtool)
7 AC_PROG_CC
8 dnl AC_PROG_LIBTOOL
9 dnl AM_PROG_LIBTOOL
10
11 dnl Checks for libraries.
12 AC_CHECK_LIB(dl, dlopen)
13 AC_CHECK_LIB(socket, socket)
14 AC_CHECK_LIB(nsl, gethostbyname)
15
16 dnl Checks for header files.
17 AC_HEADER_STDC
18 AC_CHECK_HEADERS(fcntl.h limits.h unistd.h)
19
20 dnl Checks for typedefs, structures, and compiler characteristics.
21 AC_C_CONST
22
23 dnl Checks for library functions.
24 AC_CHECK_FUNCS(strstr strtoul)
25 AC_CHECK_FUNCS(select socket)
26 AC_CHECK_FUNCS(dlopen)
27
28 AC_OUTPUT(Makefile)