]> git.meshlink.io Git - meshlink/blob - configure.ac
Enable and fix warnings from automake.
[meshlink] / 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.1pre7])
5 AC_CONFIG_SRCDIR([src/tincd.c])
6 AC_GNU_SOURCE
7 AM_INIT_AUTOMAKE([check-news dist-xz no-dist-gzip std-options subdir-objects -Wall])
8 AC_CONFIG_HEADERS([config.h])
9 AM_MAINTAINER_MODE
10
11 # Enable GNU extensions.
12 # Define this here, not in acconfig's @TOP@ section, since definitions
13 # in the latter don't make it into the configure-time tests.
14 AC_GNU_SOURCE
15 AC_DEFINE([__USE_BSD], 1, [Enable BSD extensions])
16
17 dnl Checks for programs.
18 AC_PROG_CC_C99
19 AC_PROG_CPP
20 AC_PROG_INSTALL
21 AC_PROG_LN_S
22 AC_PROG_RANLIB
23
24 AM_PROG_CC_C_O
25
26 dnl Check and set OS
27
28 AC_CANONICAL_HOST
29
30 case $host_os in
31   *linux*)
32     linux=true
33     AC_DEFINE(HAVE_LINUX, 1, [Linux])
34   ;;
35   *freebsd*)
36     bsd=true
37     AC_DEFINE(HAVE_FREEBSD, 1, [FreeBSD])
38   ;;
39   *darwin*)
40     bsd=true
41     AC_DEFINE(HAVE_DARWIN, 1, [Darwin (MacOS/X)])
42   ;;
43   *solaris*)
44     solaris=true
45     AC_DEFINE(HAVE_SOLARIS, 1, [Solaris/SunOS])
46   ;;
47   *openbsd*)
48     bsd=true
49     AC_DEFINE(HAVE_OPENBSD, 1, [OpenBSD])
50   ;;
51   *netbsd*)
52     bsd=true
53     AC_DEFINE(HAVE_NETBSD, 1, [NetBSD])
54   ;;
55   *dragonfly*)
56     bsd=true
57     AC_DEFINE(HAVE_DRAGONFLY, 1, [DragonFly])
58   ;;
59   *bsd*)
60     bsd=true
61     AC_MSG_WARN("Unknown BSD variant, tinc might not compile or work!")
62     AC_DEFINE(HAVE_BSD, 1, [Unknown BSD variant])
63   ;;
64   *cygwin*)
65     cygwin=true
66     AC_DEFINE(HAVE_CYGWIN, 1, [Cygwin])
67   ;;
68   *mingw*)
69     mingw=true
70     AC_DEFINE(HAVE_MINGW, 1, [MinGW])
71     LIBS="$LIBS -lws2_32 -lgdi32 -lcrypt32"
72   ;;
73   *)
74     AC_MSG_ERROR("Unknown operating system.")
75   ;;
76 esac
77
78 AC_ARG_ENABLE(uml,
79   AS_HELP_STRING([--enable-uml], [enable support for User Mode Linux]),
80   [ AS_IF([test "x$enable_uml" = "xyes"],
81       [ AC_DEFINE(ENABLE_UML, 1, [Support for UML])
82         uml=true
83       ],
84       [uml=false])
85   ],
86   [uml=false]
87 )
88
89 AC_ARG_ENABLE(vde,
90   AS_HELP_STRING([--enable-vde], [enable support for Virtual Distributed Ethernet]),
91   [ AS_IF([test "x$enable_vde" = "xyes"],
92       [ AC_CHECK_HEADERS(libvdeplug_dyn.h, [], [AC_MSG_ERROR([VDE plug header files not found.]); break])
93         AC_DEFINE(ENABLE_VDE, 1, [Support for VDE])
94         vde=true
95       ],
96       [vde=false])
97   ],
98   [vde=false]
99 )
100
101 AC_ARG_ENABLE(tunemu,
102   AS_HELP_STRING([--enable-tunemu], [enable support for the tunemu driver]),
103   [ AS_IF([test "x$enable_tunemu" = "xyes"],
104       [ AC_DEFINE(ENABLE_TUNEMU, 1, [Support for tunemu])
105         tunemu=true
106       ],
107       [tunemu=false])
108   ],
109   [tunemu=false]
110 )
111
112 AC_ARG_WITH(windows2000,
113   AS_HELP_STRING([--without-windows2000], [compile with support for Windows 2000. This disables support for tunneling over existing IPv6 networks.]),
114   [ AS_IF([test "x$with_windows2000" = "xyes"],
115       [AC_DEFINE(WITH_WINDOWS2000, 1, [Compile with support for Windows 2000])])
116   ]
117 )
118
119 AM_CONDITIONAL(LINUX, test "$linux" = true)
120 AM_CONDITIONAL(BSD, test "$bsd" = true)
121 AM_CONDITIONAL(SOLARIS, test "$solaris" = true)
122 AM_CONDITIONAL(MINGW, test "$mingw" = true)
123 AM_CONDITIONAL(CYGWIN, test "$cygwin" = true)
124 AM_CONDITIONAL(UML, test "$uml" = true)
125 AM_CONDITIONAL(VDE, test "$vde" = true)
126 AM_CONDITIONAL(TUNEMU, test "$tunemu" = true)
127
128 AC_CACHE_SAVE
129
130 if test -d /sw/include ; then
131   CPPFLAGS="$CPPFLAGS -I/sw/include"
132 fi
133 if test -d /sw/lib ; then
134   LIBS="$LIBS -L/sw/lib"
135 fi
136
137 dnl Checks for header files.
138 dnl We do this in multiple stages, because unlike Linux all the other operating systems really suck and don't include their own dependencies.
139
140 AC_HEADER_STDC
141 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])
142 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],
143   [], [], [#include "src/have.h"]
144 )
145 AC_CHECK_HEADERS([netinet/if_ether.h netinet/ip.h netinet/ip6.h],
146   [], [], [#include "src/have.h"]
147 )
148 AC_CHECK_HEADERS([netinet/tcp.h netinet/ip_icmp.h netinet/icmp6.h],
149   [], [], [#include "src/have.h"]
150 )
151
152 dnl Checks for typedefs, structures, and compiler characteristics.
153 AC_C_CONST
154 AC_C_VOLATILE
155 AC_TYPE_PID_T
156 AC_TYPE_SIZE_T
157 AC_HEADER_TIME
158 AC_STRUCT_TM
159
160 tinc_ATTRIBUTE(__malloc__)
161 tinc_ATTRIBUTE(__warn_unused_result__)
162
163 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], , ,
164   [#include "src/have.h"]
165 )
166
167 dnl Checks for library functions.
168 AC_TYPE_SIGNAL
169 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],
170   [], [], [#include "src/have.h"]
171 )
172
173 dnl Support for SunOS
174
175 AC_CHECK_FUNC(socket, [], [
176   AC_CHECK_LIB(socket, connect)
177 ])
178 AC_CHECK_FUNC(gethostbyname, [], [
179   AC_CHECK_LIB(nsl, gethostbyname)
180 ])
181
182 AC_CHECK_DECLS([freeaddrinfo, gai_strerror, getaddrinfo, getnameinfo],
183   [], [], [#include "src/have.h"]
184 )
185
186 AC_CACHE_SAVE
187
188 dnl These are defined in files in m4/
189
190 dnl AC_ARG_WITH(libgcrypt, AC_HELP_STRING([--with-libgcrypt], [enable use of libgcrypt instead of OpenSSL])], [])
191
192 tinc_CURSES
193 tinc_READLINE
194 tinc_ZLIB
195 tinc_LZO
196
197 if test "$with_libgcrypt" = yes; then
198         gcrypt=true
199         AM_PATH_LIBGCRYPT([1.4.0], [], [])
200 else
201         openssl=true
202         tinc_OPENSSL
203 fi
204         
205 AM_CONDITIONAL(OPENSSL, test "$openssl" = true)
206 AM_CONDITIONAL(GCRYPT, test "$grypt" = true)
207
208 dnl Check if support for jumbograms is requested 
209 AC_ARG_ENABLE(jumbograms,
210   AS_HELP_STRING([--disable-jumbograms], [enable support for jumbograms (packets up to 9000 bytes)]),
211   [ AS_IF([test "x$enable_jumbograms" = "xyes"],
212       [ AC_DEFINE(ENABLE_JUMBOGRAMS, 1, [Support for jumbograms (packets up to 9000 bytes)]) ])
213   ]
214 )
215
216 AC_CONFIG_FILES([Makefile src/Makefile doc/Makefile m4/Makefile gui/Makefile])
217
218 AC_OUTPUT