Modernize the build system.
[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.0.22])
5 AC_CONFIG_SRCDIR([src/tincd.c])
6 AM_INIT_AUTOMAKE([1.11 check-news std-options subdir-objects nostdinc -Wall])
7 AC_CONFIG_HEADERS([config.h])
8 AM_MAINTAINER_MODE
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
21 dnl Check and set OS
22
23 AC_CANONICAL_HOST
24
25 case $host_os in
26   *linux*)
27     linux=true
28     AC_DEFINE(HAVE_LINUX, 1, [Linux])
29   ;;
30   *freebsd*)
31     bsd=true
32     AC_DEFINE(HAVE_FREEBSD, 1, [FreeBSD])
33   ;;
34   *darwin*)
35     bsd=true
36     AC_DEFINE(HAVE_DARWIN, 1, [Darwin (MacOS/X)])
37   ;;
38   *solaris*)
39     solaris=true
40     AC_DEFINE(HAVE_SOLARIS, 1, [Solaris/SunOS])
41   ;;
42   *openbsd*)
43     bsd=true
44     AC_DEFINE(HAVE_OPENBSD, 1, [OpenBSD])
45   ;;
46   *netbsd*)
47     bsd=true
48     AC_DEFINE(HAVE_NETBSD, 1, [NetBSD])
49   ;;
50   *dragonfly*)
51     bsd=true
52     AC_DEFINE(HAVE_DRAGONFLY, 1, [DragonFly])
53   ;;
54   *bsd*)
55     bsd=true
56     AC_MSG_WARN("Unknown BSD variant, tinc might not compile or work!")
57     AC_DEFINE(HAVE_BSD, 1, [Unknown BSD variant])
58   ;;
59   *cygwin*)
60     cygwin=true
61     AC_DEFINE(HAVE_CYGWIN, 1, [Cygwin])
62   ;;
63   *mingw*)
64     mingw=true
65     AC_DEFINE(HAVE_MINGW, 1, [MinGW])
66     LIBS="$LIBS -lws2_32 -lgdi32 -lcrypt32"
67   ;;
68   *)
69     AC_MSG_ERROR("Unknown operating system.")
70   ;;
71 esac
72
73 AC_ARG_ENABLE(uml,
74   AS_HELP_STRING([--enable-uml], [enable support for User Mode Linux]),
75   [ AS_IF([test "x$enable_uml" = "xyes"],
76       [ AC_DEFINE(ENABLE_UML, 1, [Support for UML])
77         uml=true
78       ],
79       [uml=false])
80   ],
81   [uml=false]
82 )
83
84 AC_ARG_ENABLE(vde,
85   AS_HELP_STRING([--enable-vde], [enable support for Virtual Distributed Ethernet]),
86   [ AS_IF([test "x$enable_vde" = "xyes"],
87       [ AC_CHECK_HEADERS(libvdeplug_dyn.h, [], [AC_MSG_ERROR([VDE plug header files not found.]); break])
88         AC_DEFINE(ENABLE_VDE, 1, [Support for VDE])
89         vde=true
90       ],
91       [vde=false])
92   ],
93   [vde=false]
94 )
95
96 AC_ARG_ENABLE(tunemu,
97   AS_HELP_STRING([--enable-tunemu], [enable support for the tunemu driver]),
98   [ AS_IF([test "x$enable_tunemu" = "xyes"],
99       [ AC_DEFINE(ENABLE_TUNEMU, 1, [Support for tunemu])
100         tunemu=true
101       ],
102       [tunemu=false])
103   ],
104   [tunemu=false]
105 )
106
107 AC_ARG_WITH(windows2000,
108   AS_HELP_STRING([--without-windows2000], [compile with support for Windows 2000. This disables support for tunneling over existing IPv6 networks.]),
109   [ AS_IF([test "x$with_windows2000" = "xyes"],
110       [AC_DEFINE(WITH_WINDOWS2000, 1, [Compile with support for Windows 2000])])
111   ]
112 )
113
114 AM_CONDITIONAL(LINUX, test "$linux" = true)
115 AM_CONDITIONAL(BSD, test "$bsd" = true)
116 AM_CONDITIONAL(SOLARIS, test "$solaris" = true)
117 AM_CONDITIONAL(MINGW, test "$mingw" = true)
118 AM_CONDITIONAL(CYGWIN, test "$cygwin" = true)
119 AM_CONDITIONAL(UML, test "$uml" = true)
120 AM_CONDITIONAL(VDE, test "$vde" = true)
121 AM_CONDITIONAL(TUNEMU, test "$tunemu" = true)
122
123 AC_CACHE_SAVE
124
125 if test -d /sw/include ; then
126   CPPFLAGS="$CPPFLAGS -I/sw/include"
127 fi
128 if test -d /sw/lib ; then
129   LIBS="$LIBS -L/sw/lib"
130 fi
131
132 dnl Checks for libraries.
133
134 dnl Checks for header files.
135 dnl We do this in multiple stages, because unlike Linux all the other operating systems really suck and don't include their own dependencies.
136
137 AC_HEADER_STDC
138 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 time.h sys/uio.h sys/wait.h netdb.h arpa/inet.h dirent.h])
139 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 netpacket/packet.h],
140   [], [], [#include "src/have.h"]
141 )
142 AC_CHECK_HEADERS([netinet/if_ether.h netinet/ip.h netinet/ip6.h],
143   [], [], [#include "src/have.h"]
144 )
145 AC_CHECK_HEADERS([netinet/tcp.h netinet/ip_icmp.h netinet/icmp6.h],
146   [], [], [#include "src/have.h"]
147 )
148
149 dnl Checks for typedefs, structures, and compiler characteristics.
150 AC_C_CONST
151 AC_C_VOLATILE
152 AC_TYPE_PID_T
153 AC_TYPE_SIZE_T
154 AC_HEADER_TIME
155 AC_STRUCT_TM
156
157 tinc_ATTRIBUTE(__malloc__)
158
159 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], , ,
160   [#include "src/have.h"]
161 )
162
163 dnl Checks for library functions.
164 AC_TYPE_SIGNAL
165 AC_CHECK_FUNCS([asprintf daemon fchmod flock ftime fork get_current_dir_name gettimeofday mlockall pselect putenv random select strdup strerror strsignal strtol system unsetenv usleep vsyslog writev],
166   [], [], [#include "src/have.h"]
167 )
168
169 dnl Support for SunOS
170
171 AC_CHECK_FUNC(socket, [], [
172   AC_CHECK_LIB(socket, connect)
173 ])
174 AC_CHECK_FUNC(gethostbyname, [], [
175   AC_CHECK_LIB(nsl, gethostbyname)
176 ])
177
178 AC_CHECK_DECLS([freeaddrinfo, gai_strerror, getaddrinfo, getnameinfo],
179   [], [], [#include "src/have.h"]
180 )
181
182 AC_CACHE_SAVE
183
184 dnl These are defined in files in m4/
185
186 tinc_ZLIB
187 tinc_LZO
188 tinc_OPENSSL
189
190 dnl Check if support for jumbograms is requested 
191 AC_ARG_ENABLE(jumbograms,
192   AS_HELP_STRING([--disable-jumbograms], [enable support for jumbograms (packets up to 9000 bytes)]),
193   [ AS_IF([test "x$enable_jumbograms" = "xyes"],
194       [ AC_DEFINE(ENABLE_JUMBOGRAMS, 1, [Support for jumbograms (packets up to 9000 bytes)]) ])
195   ]
196 )
197
198 AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile m4/Makefile])
199
200 AC_OUTPUT