]> git.ipfire.org Git - thirdparty/openssl.git/blame - demos/tunala/configure.in
Fix grammar-o in CONTRIBUTING
[thirdparty/openssl.git] / demos / tunala / configure.in
CommitLineData
3866752e
GT
1dnl Process this file with autoconf to produce a configure script.
2AC_INIT(tunala.c)
3AM_CONFIG_HEADER(config.h)
4AM_INIT_AUTOMAKE(tunala, 0.0.1-dev)
5
e523f5f3 6dnl Checks for programs. (Though skip libtool)
3866752e 7AC_PROG_CC
e523f5f3
GT
8dnl AC_PROG_LIBTOOL
9dnl AM_PROG_LIBTOOL
3866752e
GT
10
11dnl Checks for libraries.
12AC_CHECK_LIB(dl, dlopen)
e5a08ce4 13AC_CHECK_LIB(z, inflate)
3866752e
GT
14AC_CHECK_LIB(socket, socket)
15AC_CHECK_LIB(nsl, gethostbyname)
16
17dnl Checks for header files.
18AC_HEADER_STDC
19AC_CHECK_HEADERS(fcntl.h limits.h unistd.h)
20
21dnl Checks for typedefs, structures, and compiler characteristics.
22AC_C_CONST
23
24dnl Checks for library functions.
25AC_CHECK_FUNCS(strstr strtoul)
26AC_CHECK_FUNCS(select socket)
27AC_CHECK_FUNCS(dlopen)
28
29AC_OUTPUT(Makefile)