1 dnl Process this file with autoconf to produce a configure script.
3 dnl $Id: configure.in,v 1.13.2.12 2000/10/23 21:56:56 zarq Exp $
6 AM_INIT_AUTOMAKE(tinc, 1.0pre3)
7 AM_CONFIG_HEADER(config.h)
9 dnl Include the macros from the m4/ directory
10 AM_ACLOCAL_INCLUDE(m4)
12 # Enable GNU extensions.
13 # Define this here, not in acconfig's @TOP@ section, since definitions
14 # in the latter don't make it into the configure-time tests.
15 AC_DEFINE([_GNU_SOURCE], [__USE_BSD])
19 dnl Checks for programs.
22 AC_PROG_GCC_TRADITIONAL
32 dnl Checks for libraries.
34 dnl Checks for header files.
36 AC_CHECK_HEADERS(fcntl.h limits.h sys/ioctl.h syslog.h unistd.h sys/time.h linux/if_tun.h)
38 dnl Checks for typedefs, structures, and compiler characteristics.
45 dnl Checks for library functions.
49 AC_CHECK_FUNCS(ftime socket select strtol strerror)
55 AC_CHECK_LIB(dl, dlopen, [
63 AC_CHECK_LIB(crypto, SHA1_version, [
67 if test $libcrypto = none; then
68 AC_MSG_ERROR(It seems like OpenSSL is not installed on this system.)
76 AC_CHECK_FUNC(socket, [], [
77 AC_CHECK_LIB(socket, connect)
79 AC_CHECK_FUNC(gethostbyname, [], [
80 AC_CHECK_LIB(nsl, gethostbyname)
84 dnl Check for TUN/TAP support in the kernel
87 AC_OUTPUT([Makefile src/Makefile
88 doc/Makefile doc/es/Makefile intl/Makefile lib/Makefile
89 m4/Makefile po/Makefile.in redhat/Makefile debian/Makefile])