Merge remote-tracking branch 'seehuhn/1.1' into 1.1
[tinc] / configure.ac
1 dnl Process this file with autoconf to produce a configure script.
2
3 AC_PREREQ(2.61)
4 AC_INIT([tinc], [1.1pre11])
5 AC_CONFIG_SRCDIR([src/tincd.c])
6 AC_GNU_SOURCE
7 AM_INIT_AUTOMAKE([check-news std-options subdir-objects -Wall])
8 AC_CONFIG_HEADERS([config.h])
9
10 # Enable GNU extensions.
11 # Define this here, not in acconfig's @TOP@ section, since definitions
12 # in the latter don't make it into the configure-time tests.
13 AC_GNU_SOURCE
14 AC_DEFINE([__USE_BSD], 1, [Enable BSD extensions])
15
16 dnl Checks for programs.
17 AC_PROG_CC_C99
18 AC_PROG_CPP
19 AC_PROG_INSTALL
20 AC_PROG_LN_S
21
22 AM_PROG_CC_C_O
23
24 dnl Check and set OS
25
26 AC_CANONICAL_HOST
27
28 case $host_os in
29   *linux*)
30     linux=true
31     AC_DEFINE(HAVE_LINUX, 1, [Linux])
32   ;;
33   *freebsd*)
34     bsd=true
35     AC_DEFINE(HAVE_FREEBSD, 1, [FreeBSD])
36   ;;
37   *darwin*)
38     bsd=true
39     AC_DEFINE(HAVE_DARWIN, 1, [Darwin (MacOS/X)])
40   ;;
41   *solaris*)
42     solaris=true
43     AC_DEFINE(HAVE_SOLARIS, 1, [Solaris/SunOS])
44   ;;
45   *openbsd*)
46     bsd=true
47     AC_DEFINE(HAVE_OPENBSD, 1, [OpenBSD])
48   ;;
49   *netbsd*)
50     bsd=true
51     AC_DEFINE(HAVE_NETBSD, 1, [NetBSD])
52   ;;
53   *dragonfly*)
54     bsd=true
55     AC_DEFINE(HAVE_DRAGONFLY, 1, [DragonFly])
56   ;;
57   *bsd*)
58     bsd=true
59     AC_MSG_WARN("Unknown BSD variant, tinc might not compile or work!")
60     AC_DEFINE(HAVE_BSD, 1, [Unknown BSD variant])
61   ;;
62   *cygwin*)
63     cygwin=true
64     AC_DEFINE(HAVE_CYGWIN, 1, [Cygwin])
65   ;;
66   *mingw*)
67     mingw=true
68     AC_DEFINE(HAVE_MINGW, 1, [MinGW])
69     LIBS="$LIBS -lws2_32 -lgdi32 -lcrypt32"
70   ;;
71   *)
72     AC_MSG_ERROR("Unknown operating system.")
73   ;;
74 esac
75
76 AC_ARG_ENABLE(uml,
77   AS_HELP_STRING([--enable-uml], [enable support for User Mode Linux]),
78   [ AS_IF([test "x$enable_uml" = "xyes"],
79       [ AC_DEFINE(ENABLE_UML, 1, [Support for UML])
80         uml=true
81       ],
82       [uml=false])
83   ],
84   [uml=false]
85 )
86
87 AC_ARG_ENABLE(vde,
88   AS_HELP_STRING([--enable-vde], [enable support for Virtual Distributed Ethernet]),
89   [ AS_IF([test "x$enable_vde" = "xyes"],
90       [ AC_CHECK_HEADERS(libvdeplug_dyn.h, [], [AC_MSG_ERROR([VDE plug header files not found.]); break])
91         AC_DEFINE(ENABLE_VDE, 1, [Support for VDE])
92         vde=true
93       ],
94       [vde=false])
95   ],
96   [vde=false]
97 )
98
99 AC_ARG_ENABLE(tunemu,
100   AS_HELP_STRING([--enable-tunemu], [enable support for the tunemu driver]),
101   [ AS_IF([test "x$enable_tunemu" = "xyes"],
102       [ AC_DEFINE(ENABLE_TUNEMU, 1, [Support for tunemu])
103         tunemu=true
104       ],
105       [tunemu=false])
106   ],
107   [tunemu=false]
108 )
109
110 AC_ARG_WITH(windows2000,
111   AS_HELP_STRING([--with-windows2000], [compile with support for Windows 2000. This disables support for tunneling over existing IPv6 networks.]),
112   [ AS_IF([test "x$with_windows2000" = "xyes"],
113       [AC_DEFINE(WITH_WINDOWS2000, 1, [Compile with support for Windows 2000])])
114   ]
115 )
116
117 AM_CONDITIONAL(LINUX, test "$linux" = true)
118 AM_CONDITIONAL(BSD, test "$bsd" = true)
119 AM_CONDITIONAL(SOLARIS, test "$solaris" = true)
120 AM_CONDITIONAL(MINGW, test "$mingw" = true)
121 AM_CONDITIONAL(CYGWIN, test "$cygwin" = true)
122 AM_CONDITIONAL(UML, test "$uml" = true)
123 AM_CONDITIONAL(VDE, test "$vde" = true)
124 AM_CONDITIONAL(TUNEMU, test "$tunemu" = true)
125
126 AC_CACHE_SAVE
127
128 if test -d /sw/include ; then
129   CPPFLAGS="$CPPFLAGS -I/sw/include"
130 fi
131 if test -d /sw/lib ; then
132   LIBS="$LIBS -L/sw/lib"
133 fi
134
135 dnl Compiler hardening flags
136 dnl No -fstack-protector-all because it doesn't work on all platforms or architectures.
137
138 AC_ARG_ENABLE([hardening], AS_HELP_STRING([--disable-hardening], [disable compiler and linker hardening flags]))
139 AS_IF([test "x$enable_hardening" != "xno"],
140   [AX_CHECK_COMPILE_FLAG([-DFORTIFY_SOURCE=2], [CPPFLAGS="$CPPFLAGS -DFORTIFY_SOURCE=2"])
141    AX_CHECK_COMPILE_FLAG([-fno-strict-overflow], [CPPFLAGS="$CPPFLAGS -fno-strict-overflow"])
142    AX_CHECK_COMPILE_FLAG([-fwrapv], [CPPFLAGS="$CPPFLAGS -fwrapv"])
143    case $host_os in
144      *mingw*)
145        AX_CHECK_LINK_FLAG([-Wl,--dynamicbase], [LDFLAGS="$LDFLAGS -Wl,--dynamicbase"])
146        AX_CHECK_LINK_FLAG([-Wl,--nxcompat], [LDFLAGS="$LDFLAGS -Wl,--nxcompat"])
147        ;;
148      *)
149        AX_CHECK_COMPILE_FLAG([-fPIE], [CPPFLAGS="$CPPFLAGS -fPIE"])
150        AX_CHECK_LINK_FLAG([-pie], [LDFLAGS="$LDFLAGS -pie"])
151        ;;
152    esac
153    AX_CHECK_LINK_FLAG([-Wl,-z,relro], [LDFLAGS="$LDFLAGS -Wl,-z,relro"])
154    AX_CHECK_LINK_FLAG([-Wl,-z,now], [LDFLAGS="$LDFLAGS -Wl,-z,now"])
155   ]
156 );
157
158 dnl Checks for header files.
159 dnl We do this in multiple stages, because unlike Linux all the other operating systems really suck and don't include their own dependencies.
160
161 AC_HEADER_STDC
162 AC_CHECK_HEADERS([stdbool.h syslog.h sys/file.h sys/ioctl.h sys/mman.h sys/param.h sys/resource.h sys/socket.h sys/time.h sys/uio.h sys/un.h sys/wait.h netdb.h arpa/inet.h dirent.h])
163 AC_CHECK_HEADERS([net/if.h net/if_types.h linux/if_tun.h net/if_tun.h net/tun/if_tun.h net/if_tap.h net/tap/if_tap.h net/ethernet.h net/if_arp.h netinet/in_systm.h netinet/in.h netinet/in6.h time.h netpacket/packet.h],
164   [], [], [#include "src/have.h"]
165 )
166 AC_CHECK_HEADERS([netinet/if_ether.h netinet/ip.h netinet/ip6.h resolv.h],
167   [], [], [#include "src/have.h"]
168 )
169 AC_CHECK_HEADERS([netinet/tcp.h netinet/ip_icmp.h netinet/icmp6.h],
170   [], [], [#include "src/have.h"]
171 )
172
173 dnl Checks for typedefs, structures, and compiler characteristics.
174 AC_C_CONST
175 AC_C_VOLATILE
176 AC_TYPE_PID_T
177 AC_TYPE_SIZE_T
178 AC_HEADER_TIME
179 AC_STRUCT_TM
180
181 tinc_ATTRIBUTE(__malloc__)
182 tinc_ATTRIBUTE(__warn_unused_result__)
183
184 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], , ,
185   [#include "src/have.h"]
186 )
187
188 dnl Checks for library functions.
189 AC_TYPE_SIGNAL
190 AC_CHECK_FUNCS([asprintf daemon fchmod flock ftime fork get_current_dir_name gettimeofday mlockall putenv random select strdup strerror strsignal strtol system time usleep unsetenv vsyslog writev],
191   [], [], [#include "src/have.h"]
192 )
193
194 dnl Support for SunOS
195
196 AC_CHECK_FUNC(socket, [], [
197   AC_CHECK_LIB(socket, connect)
198 ])
199 AC_CHECK_FUNC(gethostbyname, [], [
200   AC_CHECK_LIB(nsl, gethostbyname)
201 ])
202
203 AC_CHECK_DECLS([freeaddrinfo, gai_strerror, getaddrinfo, getnameinfo],
204   [], [], [#include "src/have.h"]
205 )
206
207 AC_CHECK_DECLS([res_init], [AC_CHECK_LIB(resolv, res_init)], [], [
208   #include <netinet/in.h>
209   #include <resolv.h>
210 ])
211
212 AC_CACHE_SAVE
213
214 AC_ARG_ENABLE(legacy-protocol,
215   AS_HELP_STRING([--disable-legacy-protocol], [disable support for the legacy (tinc 1.0) protocol]),
216   [ AS_IF([test "x$enable_legacy_protocol" = "xno"],
217     [ AC_DEFINE(DISABLE_LEGACY, 1, [Disable support for the legacy (tinc 1.0) protocol]) ])
218   ]
219 )
220
221 dnl These are defined in files in m4/
222
223 dnl AC_ARG_WITH(libgcrypt, AC_HELP_STRING([--with-libgcrypt], [enable use of libgcrypt instead of OpenSSL])], [])
224 dnl AC_ARG_WITH(openssl, AC_HELP_STRING([--without-openssl], [disable support for OpenSSL])], [])
225
226 tinc_CURSES
227 tinc_READLINE
228 tinc_ZLIB
229 tinc_LZO
230
231 if test "x$enable_legacy_protocol" != "xno"; then
232         if test -n "$with_libgcrypt"; then
233                 gcrypt=true
234                 tinc_LIBGCRYPT
235         else
236                 openssl=true
237                 tinc_OPENSSL
238         fi
239 fi
240
241 AM_CONDITIONAL(OPENSSL, test -n "$openssl")
242 AM_CONDITIONAL(GCRYPT, test -n "$gcrypt")
243
244 dnl Check if support for jumbograms is requested
245 AC_ARG_ENABLE(jumbograms,
246   AS_HELP_STRING([--enable-jumbograms], [enable support for jumbograms (packets up to 9000 bytes)]),
247   [ AS_IF([test "x$enable_jumbograms" = "xyes"],
248       [ AC_DEFINE(ENABLE_JUMBOGRAMS, 1, [Support for jumbograms (packets up to 9000 bytes)]) ])
249   ]
250 )
251
252 AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile m4/Makefile gui/Makefile test/Makefile])
253
254 AC_OUTPUT