Remove all occurences of $Id$.
[oweals/tinc.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2
3 AC_PREREQ(2.61)
4 AC_INIT
5 AC_CONFIG_SRCDIR([src/tincd.c])
6 AM_INIT_AUTOMAKE(tinc, 1.0-cvs)
7 AC_CONFIG_HEADERS([config.h])
8 AM_MAINTAINER_MODE
9
10 AM_GNU_GETTEXT([external])
11 AM_GNU_GETTEXT_VERSION(0.14.1)
12
13 # Enable GNU extensions.
14 # Define this here, not in acconfig's @TOP@ section, since definitions
15 # in the latter don't make it into the configure-time tests.
16 AC_GNU_SOURCE
17 AC_DEFINE([__USE_BSD], 1, [Enable BSD extensions])
18
19 ALL_LINGUAS="nl"
20
21 dnl Checks for programs.
22 AC_PROG_CC_C99
23 AC_PROG_CPP
24 AC_PROG_INSTALL
25 AC_PROG_LN_S
26 AC_PROG_RANLIB
27
28 dnl Check and set OS
29
30 #AC_CANONICAL_HOST
31
32 case $host_os in
33   *linux*)
34     AC_DEFINE(HAVE_LINUX, 1, [Linux])
35     [ rm -f src/device.c; ln -sf linux/device.c src/device.c ]
36   ;;
37   *freebsd*)
38     AC_DEFINE(HAVE_FREEBSD, 1, [FreeBSD])
39     [ rm -f src/device.c; ln -sf bsd/device.c src/device.c ]
40   ;;
41   *darwin*)
42     AC_DEFINE(HAVE_DARWIN, 1, [Darwin (MacOS/X)])
43     [ rm -f src/device.c; ln -sf bsd/device.c src/device.c ]
44   ;;
45   *solaris*)
46     AC_DEFINE(HAVE_SOLARIS, 1, [Solaris/SunOS])
47     [ rm -f src/device.c; ln -sf solaris/device.c src/device.c ]
48   ;;
49   *openbsd*)
50     AC_DEFINE(HAVE_OPENBSD, 1, [OpenBSD])
51     [ rm -f src/device.c; ln -sf bsd/device.c src/device.c ]
52   ;;
53   *netbsd*)
54     AC_DEFINE(HAVE_NETBSD, 1, [NetBSD])
55     [ rm -f src/device.c; ln -sf bsd/device.c src/device.c ]
56   ;;
57   *bsd*)
58     AC_MSG_WARN("Unknown BSD variant, tinc might not compile or work!")
59     AC_DEFINE(HAVE_BSD, 1, [Unknown BSD variant])
60     [ rm -f src/device.c; ln -sf bsd/device.c src/device.c ]
61   ;;
62   *cygwin*)
63     AC_DEFINE(HAVE_CYGWIN, 1, [Cygwin])
64     [ rm -f src/device.c; ln -sf cygwin/device.c src/device.c ]
65   ;;
66   *mingw*)
67     AC_DEFINE(HAVE_MINGW, 1, [MinGW])
68     [ rm -f src/device.c; cp -f src/mingw/device.c src/device.c ]
69     LIBS="$LIBS -lws2_32"
70   ;;
71   *)
72     AC_MSG_ERROR("Unknown operating system.")
73   ;;
74 esac
75
76 AC_ARG_ENABLE(tunemu,
77   AS_HELP_STRING([--enable-tunemu], [enable support for the tunemu driver]),
78   [ AC_DEFINE(ENABLE_TUNEMU, 1, [Support for tunemu])
79     tunemu=true
80   ]
81 )
82
83 AC_ARG_WITH(windows2000,
84   AS_HELP_STRING([--with-windows2000], [compile with support for Windows 2000. This disables support for tunneling over existing IPv6 networks.]),
85   [AC_DEFINE(WITH_WINDOWS2000, 1, [Compile with support for Windows 2000])]
86 )
87
88 AM_CONDITIONAL(TUNEMU, test "$tunemu" = true)
89
90 AC_CACHE_SAVE
91
92 if test -d /sw/include ; then
93   CPPFLAGS="$CPPFLAGS -I/sw/include"
94 fi
95 if test -d /sw/lib ; then
96   LIBS="$LIBS -L/sw/lib"
97 fi
98
99 dnl Checks for libraries.
100
101 dnl Checks for header files.
102 dnl We do this in multiple stages, because unlike Linux all the other operating systems really suck and don't include their own dependencies.
103
104 AC_HEADER_STDC
105 AC_CHECK_HEADERS([stdbool.h syslog.h sys/file.h sys/ioctl.h sys/mman.h sys/param.h sys/socket.h sys/time.h sys/uio.h sys/wait.h netdb.h arpa/inet.h])
106 AC_CHECK_HEADERS([net/if.h net/if_types.h linux/if_tun.h net/if_tun.h net/if_tap.h net/ethernet.h net/if_arp.h netinet/in_systm.h netinet/in.h netinet/in6.h],
107   [], [], [#include "have.h"]
108 )
109 AC_CHECK_HEADERS([netinet/if_ether.h netinet/ip.h netinet/ip6.h],
110   [], [], [#include "have.h"]
111 )
112 AC_CHECK_HEADERS([netinet/tcp.h netinet/ip_icmp.h netinet/icmp6.h],
113   [], [], [#include "have.h"]
114 )
115
116 dnl Checks for typedefs, structures, and compiler characteristics.
117 AC_C_CONST
118 AC_C_VOLATILE
119 AC_TYPE_PID_T
120 AC_TYPE_SIZE_T
121 AC_HEADER_TIME
122 AC_STRUCT_TM
123
124 tinc_ATTRIBUTE(__malloc__)
125
126 AC_CHECK_TYPES([socklen_t, struct ether_header, struct arphdr, struct ether_arp, struct in_addr, struct addrinfo, struct ip, struct icmp, struct in6_addr, struct sockaddr_in6, struct ip6_hdr, struct icmp6_hdr, struct nd_neighbor_solicit, struct nd_opt_hdr], , ,
127   [#include "have.h"]
128 )
129
130 dnl Checks for library functions.
131 AC_FUNC_MEMCMP
132 AC_FUNC_ALLOCA
133 AC_TYPE_SIGNAL
134 AC_CHECK_FUNCS([asprintf daemon fchmod flock ftime fork get_current_dir_name gettimeofday mlockall putenv random select strdup strerror strsignal strtol system unsetenv vsyslog writev],
135   [], [], [#include "have.h"]
136 )
137 AC_FUNC_MALLOC
138 AC_FUNC_REALLOC
139
140 dnl Support for SunOS
141
142 AC_CHECK_FUNC(socket, [], [
143   AC_CHECK_LIB(socket, connect)
144 ])
145 AC_CHECK_FUNC(gethostbyname, [], [
146   AC_CHECK_LIB(nsl, gethostbyname)
147 ])
148
149 AC_CHECK_DECLS([freeaddrinfo, gai_strerror, getaddrinfo, getnameinfo],
150   [], [], [#include "have.h"]
151 )
152
153 AC_CACHE_SAVE
154
155 dnl These are defined in files in m4/
156
157 tinc_OPENSSL
158 tinc_ZLIB
159 tinc_LZO
160
161 dnl Check if support for jumbograms is requested 
162 AC_ARG_ENABLE(jumbograms,
163   AS_HELP_STRING([--enable-jumbograms], [enable support for jumbograms (packets up to 9000 bytes)]),
164   [ AC_DEFINE(ENABLE_JUMBOGRAMS, 1, [Support for jumbograms (packets up to 9000 bytes)]) ]
165 )
166
167 dnl Check if checkpoint tracing has to be enabled
168 AC_ARG_ENABLE(tracing,
169   AS_HELP_STRING([--enable-tracing], [enable checkpoint tracing (debugging only)]),
170   [ AC_DEFINE(ENABLE_TRACING, 1, [Checkpoint tracing]) ]
171 )
172
173 AC_SUBST(INCLUDES)
174
175 AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile lib/Makefile po/Makefile.in m4/Makefile])
176
177 AC_OUTPUT