ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/configure.ac
Revision: 1.46
Committed: Sat Nov 10 05:14:21 2007 UTC (16 years, 6 months ago) by pcg
Branch: MAIN
Changes since 1.45: +3 -0 lines
Log Message:
first shot at converting from iom to libev

File Contents

# Content
1 dnl Process this file with autoconf to produce a configure script.
2
3 AC_PREREQ(2.59)
4 AC_INIT
5 AC_CONFIG_SRCDIR([src/gvpe.C])
6 AC_CANONICAL_TARGET
7 AM_INIT_AUTOMAKE(gvpe, 2.01)
8 AC_CONFIG_HEADERS([config.h])
9 AM_MAINTAINER_MODE
10
11 AH_TOP([
12 #ifndef CONFIG_H__
13 #define CONFIG_H__
14
15 #ifdef __cplusplus
16 using namespace std;
17 #endif
18
19 ])
20
21 AH_BOTTOM([
22 typedef unsigned char u8;
23 typedef signed char s8;
24
25 #if __CYGWIN__
26
27 typedef unsigned short u16;
28 typedef unsigned int u32;
29 typedef signed short s16;
30 typedef signed int s32;
31
32 #else
33 #include <inttypes.h>
34
35 /* old modula-2 habits */
36 typedef uint16_t u16;
37 typedef uint32_t u32;
38 typedef int16_t s16;
39 typedef int32_t s32;
40 #endif
41
42 #endif
43
44 #if HAVE_CLOCALE
45 # define CLOCALE <clocale>
46 #else
47 # define CLOCALE <locale.h>
48 #endif
49 ])
50
51 dnl Include the macros from the m4/ directory
52 AM_ACLOCAL_INCLUDE(m4)
53
54 AM_GNU_GETTEXT([external])
55 AM_GNU_GETTEXT_VERSION(0.11.5)
56
57 # Enable GNU extensions.
58 # Define this here, not in acconfig's @TOP@ section, since definitions
59 # in the latter don't make it into the configure-time tests.
60 AC_DEFINE([_GNU_SOURCE], 1, [Enable GNU extensions])
61
62 # do NOT define POSIX_SOURCE, sicne this clashes with many BSDs
63 dnl AC_DEFINE([_POSIX_SOURCE], 1, [Enable POSIX 1003.1 extensions])
64 dnl AC_DEFINE([_XOPEN_SOURCE], 500, [Enable XOPEN extensions])
65
66 ALL_LINGUAS=""
67
68 dnl Checks for programs.
69 AC_PROG_CC
70 AC_PROG_CPP
71 AC_PROG_CXX
72 AC_PROG_GCC_TRADITIONAL
73 AC_PROG_AWK
74 AC_PROG_INSTALL
75 AC_PROG_LN_S
76 AC_PROG_MAKE_SET
77 AC_PROG_RANLIB
78
79 AC_ARG_ENABLE(iftype,
80 [AS_HELP_STRING(--enable-iftype=TYPE/SUBTYPE,
81 Use kernel/net device interface TYPE/SUBTYPE.
82 Working combinations are (see doc/gvpe.osdep.5.pod):
83 "native/linux"
84 "tincd/linux"
85 "tincd/netbsd"
86 "tincd/freebsd"
87 "tincd/openbsd"
88 "native/darwin"
89 "tincd/darwin"
90 "native/cygwin";
91 Untested combinations are:
92 "tincd/bsd"
93 "tincd/solaris"
94 "tincd/mingw"
95 "tincd/raw_socket"
96 "tincd/uml_socket";
97 Broken combinations are:
98 "tincd/cygwin";
99 The default is to autodetect.
100 )],
101 [
102 IFTYPE=`echo $enableval | sed s%/.*%%`
103 IFSUBTYPE=`echo $enableval | sed s%.*/%%`
104 ]
105 )
106
107 dnl Check and set OS
108 AC_MSG_CHECKING(for kernel networking interface type)
109
110 if test "x$IFTYPE" = "x"; then
111 case $target_os in
112 *linux*)
113 IFTYPE=native
114 IFSUBTYPE=linux
115 AC_DEFINE(HAVE_LINUX, 1, [Linux])
116 ;;
117 *freebsd*)
118 IFTYPE=tincd
119 IFSUBTYPE=freebsd
120 AC_DEFINE(HAVE_FREEBSD, 1, [FreeBSD])
121 ;;
122 *darwin*)
123 IFTYPE=native
124 IFSUBTYPE=darwin
125 AC_DEFINE(HAVE_DARWIN, 1, [Darwin (MacOS/X)])
126 ;;
127 *solaris*)
128 IFTYPE=tincd
129 IFSUBTYPE=solaris
130 AC_DEFINE(HAVE_SOLARIS, 1, [Solaris/SunOS])
131 ;;
132 *openbsd*)
133 IFTYPE=tincd
134 IFSUBTYPE=openbsd
135 AC_DEFINE(HAVE_OPENBSD, 1, [OpenBSD])
136 ;;
137 *netbsd*)
138 IFTYPE=tincd
139 IFSUBTYPE=netbsd
140 AC_DEFINE(HAVE_NETBSD, 1, [NetBSD])
141 ;;
142 *cygwin*)
143 IFTYPE=native
144 IFSUBTYPE=cygwin
145 AC_DEFINE(HAVE_CYGWIN, 1, [Cygwin])
146 ;;
147 *)
148 AC_MSG_ERROR("Unknown operating system.")
149 ;;
150 esac
151 fi
152 AC_MSG_RESULT($IFTYPE/$IFSUBTYPE)
153 AC_SUBST(IFTYPE,$IFTYPE)
154 AC_SUBST(IFSUBTYPE,$IFSUBTYPE)
155 AC_DEFINE_UNQUOTED(IFTYPE,"$IFTYPE",[kernel interface type])
156 AC_DEFINE_UNQUOTED(IFSUBTYPE,"$IFSUBTYPE",[kernel interface subtype])
157
158 AC_CACHE_SAVE
159
160 dnl Checks for libraries.
161
162 AC_LANG(C++)
163 AC_CHECK_HEADERS(ext/hash_map clocale)
164
165 dnl Checks for header files.
166 AC_CHECK_HEADERS([fcntl.h inttypes.h limits.h malloc.h stdint.h strings.h syslog.h unistd.h \
167 sys/file.h sys/ioctl.h sys/param.h sys/time.h netinet/in_systm.h sys/cygwin.h \
168 sys/mman.h netinet/in.h])
169 AC_CHECK_HEADERS([arpa/inet.h net/ethernet.h net/if.h netinet/ip.h netinet/tcp.h netinet/in_systm.h], [], [],
170 [
171 #include <sys/types.h>
172 #include <sys/socket.h>
173 #ifdef HAVE_NETINET_IN_H
174 # include <netinet/in.h>
175 #endif
176 #ifdef HAVE_ARPA_INET_H
177 # include <arpa/inet.h>
178 #endif
179 #ifdef HAVE_NETINET_IN_SYSTM_H
180 # include <netinet/in_systm.h>
181 #endif
182 ])
183
184 dnl Checks for typedefs, structures, and compiler characteristics.
185 AC_C_CONST
186 AC_TYPE_PID_T
187 AC_TYPE_SIZE_T
188 AC_HEADER_TIME
189 AC_STRUCT_TM
190
191 AC_CACHE_CHECK([for socklen_t], ac_cv_type_socklen_t,
192 [
193 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
194 #include <sys/socket.h>]], [[socklen_t len = 42; return len;]])],[ac_cv_type_socklen_t=yes],[ac_cv_type_socklen_t=no])
195 ])
196 if test $ac_cv_type_socklen_t = yes; then
197 AC_DEFINE(HAVE_SOCKLEN_T, 1, [socklen_t available])
198 fi
199
200 AC_CACHE_CHECK([for struct addrinfo], ac_cv_struct_addrinfo,
201 [
202 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
203 #include <sys/socket.h>
204 #include <netdb.h>]], [[struct addrinfo ai; ai.ai_family = AF_INET; return ai.ai_family;]])],[ac_cv_struct_addrinfo=yes],[ac_cv_struct_addrinfo=no])
205 ])
206 if test $ac_cv_struct_addrinfo = yes; then
207 AC_DEFINE(HAVE_STRUCT_ADDRINFO, 1, [struct addrinfo available])
208 fi
209
210 dnl Checks for library functions.
211 AC_TYPE_SIGNAL
212
213 AC_LANG_PUSH(C)
214
215 AC_HEADER_STDC
216
217 dnl argl, could somebody catapult darwin into the 21st century???
218 AC_CHECK_FUNCS(asprintf daemon get_current_dir_name putenv select strerror strsignal strtol unsetenv mlockall)
219
220 AC_FUNC_ALLOCA
221
222 dnl Support for SunOS
223
224 AC_CHECK_FUNC(socket, [], [
225 AC_CHECK_LIB(socket, connect)
226 ])
227 AC_CHECK_FUNC(gethostbyname, [], [
228 AC_CHECK_LIB(nsl, gethostbyname)
229 ])
230
231 dnl libev support
232 m4_include([libev/ev.m4])
233
234 AC_LANG_POP
235
236 dnl AC_CHECK_FUNCS([freeaddrinfo gai_strerror getaddrinfo getnameinfo])
237
238 AC_CACHE_SAVE
239
240 dnl These are defined in files in m4/
241 tinc_TUNTAP
242
243 tinc_OPENSSL
244 if test "x$openssl_include" != x; then
245 CXXFLAGS="$CXXFLAGS -I$openssl_include"
246 fi
247 dnl tinc_ZLIB
248
249 AC_ARG_ENABLE(static-daemon,
250 [AS_HELP_STRING(--enable-static-daemon,enable statically linked daemon.)],
251 [LDFLAGS_DAEMON=-static]
252 )
253 AC_SUBST(LDFLAGS_DAEMON)
254
255 AC_ARG_ENABLE(rohc,
256 [AS_HELP_STRING(--enable-rohc,enable robust header compression (rfc3095).)],
257 [
258 echo
259 echo "**********************************************************************"
260 echo "**********************************************************************"
261 echo "**** --enable-rohc is highly experimental, do not use ****************"
262 echo "**********************************************************************"
263 echo "**********************************************************************"
264 echo
265 rohc=true
266 AC_DEFINE_UNQUOTED(ENABLE_ROHC, 1, [ROHC support])
267 ]
268 )
269
270 AM_CONDITIONAL(ROHC, test x$rohc = xtrue)
271
272 dnl AC_ARG_ENABLE(bridging,
273 dnl [AS_HELP_STRING(--enable-bridging,enable bridging support (default disabled).)],
274 dnl AC_DEFINE_UNQUOTED(ENABLE_BRIDGING, 1, [bridging support.])
275 dnl )
276
277 AC_ARG_ENABLE(icmp,
278 [AS_HELP_STRING(--enable-icmp,enable icmp protocol support (default disabled).)],
279 AC_DEFINE_UNQUOTED(ENABLE_ICMP, 1, [ICMP protocol support.])
280 )
281
282 AC_ARG_ENABLE(tcp,
283 [AS_HELP_STRING(--enable-tcp,enable tcp protocol support (default disabled).)],
284 AC_DEFINE_UNQUOTED(ENABLE_TCP, 1, [TCP protocol support.])
285 )
286
287 AC_ARG_ENABLE(dns,
288 [AS_HELP_STRING(--enable-dns,enable dns tunnel protocol support (DOES NOT WORK).)],
289 [
290 AC_CHECK_HEADER(gmp.h,,[AC_MSG_ERROR([gmp.h not found, required for --enable-dns])])
291 AC_CHECK_LIB(gmp,main,,[AC_MSG_ERROR([libgmp not found, required for --enable-dns])])
292
293 AC_DEFINE_UNQUOTED(ENABLE_DNS, 1, [DNS tunnel protocol support.])
294 ]
295 )
296
297 AC_ARG_ENABLE(http-proxy,
298 [AS_HELP_STRING(--enable-http-proxy,enable http proxy connect support (default disabled).)],
299 AC_DEFINE_UNQUOTED(ENABLE_HTTP_PROXY, 1, [http proxy connect support.])
300 )
301
302 HMAC=12
303 AC_ARG_ENABLE(hmac-length,
304 [AS_HELP_STRING(--enable-hmac-length=BYTES,[
305 use a hmac of length BYTES bytes (default 12). Allowed values are 4, 8, 12, 16.])],
306 HMAC=$enableval
307 )
308 AC_DEFINE_UNQUOTED(HMACLENGTH, $HMAC, [Size of HMAC in each packet in bytes.])
309
310 RAND=8
311 AC_ARG_ENABLE(rand-length,
312 [AS_HELP_STRING(--enable-rand-length=BYTES,
313 [use BYTES bytes of extra randomness (default 8). Allowed values are 0, 4, 8.])],
314 RAND=$enableval
315 )
316 AC_DEFINE_UNQUOTED(RAND_SIZE, $RAND, [Add this many bytes of randomness to each packet.])
317
318 MTU=1500
319 AC_ARG_ENABLE(mtu,
320 [AS_HELP_STRING(--enable-max-mtu=BYTES,enable mtu sizes upto BYTES bytes (default 1500). Use 9100 for jumbogram support.)],
321 MTU=$enableval
322 )
323 AC_DEFINE_UNQUOTED(MAX_MTU, $MTU + 14, [Maximum MTU supported.])
324
325 COMPRESS=1
326 AC_ARG_ENABLE(compression,
327 [AS_HELP_STRING(--disable-compression,Disable compression support.)],
328 if test "x$enableval" = xno; then
329 COMPRESS=0
330 fi
331 )
332 AC_DEFINE_UNQUOTED(ENABLE_COMPRESSION, $COMPRESS, [Enable compression support.])
333
334 CIPHER=aes_128_cbc
335 AC_ARG_ENABLE(cipher,
336 [AS_HELP_STRING(--enable-cipher,[
337 Select the symmetric cipher (default "aes-128").
338 Must be one of "bf" (blowfish), "aes-128" (rijndael), "aes-192" or "aes-256".])],
339 if test "x$enableval" = xbf ; then CIPHER=bf_cbc ; fi
340 if test "x$enableval" = xaes-128; then CIPHER=aes_128_cbc; fi
341 if test "x$enableval" = xaes-192; then CIPHER=aes_192_cbc; fi
342 if test "x$enableval" = xaes-256; then CIPHER=aes_256_cbc; fi
343 )
344 AC_DEFINE_UNQUOTED(ENABLE_CIPHER, EVP_${CIPHER}, [Select the symmetric cipher to use.])
345
346 DIGEST=ripemd160
347 AC_ARG_ENABLE(digest,
348 [AS_HELP_STRING(--enable-digest,[
349 Select the digest algorithm to use (default "ripemd160"). Must be one of
350 "sha512", "sha256", "sha1", "ripemd160", "md5" or "md4" (insecure).])],
351 if test "x$enableval" = xsha512 ; then DIGEST=sha512 ; fi
352 if test "x$enableval" = xsha256 ; then DIGEST=sha256 ; fi
353 if test "x$enableval" = xsha1 ; then DIGEST=sha1 ; fi
354 if test "x$enableval" = xripemd160; then DIGEST=ripemd160; fi
355 if test "x$enableval" = xmd5 ; then DIGEST=md5 ; fi
356 if test "x$enableval" = xmd4 ; then DIGEST=md4 ; fi
357 )
358 AC_DEFINE_UNQUOTED(ENABLE_DIGEST, EVP_${DIGEST}, [Select the digest algorithm to use.])
359
360 if $CXX -v --help 2>&1 | grep -q fno-rtti; then
361 CXXFLAGS="$CXXFLAGS -fno-rtti"
362 fi
363
364 if $CXX -v --help 2>&1 | grep -q fexceptions; then
365 CXXFLAGS="$CXXFLAGS -fno-exceptions"
366 fi
367
368 dnl if $CXX -v --help 2>&1 | grep -q ffunction-sections; then
369 dnl CXXFLAGS="$CXXFLAGS -ffunction-sections"
370 dnl fi
371 dnl
372 dnl if $LD -v --help 2>&1 | grep -q gc-sections; then
373 dnl LDFLAGS="$LDFLAGS -Wl,--gc-sections"
374 dnl fi
375
376 AC_SUBST(INCLUDES)
377
378 AC_CONFIG_FILES([Makefile po/Makefile.in
379 src/Makefile
380 doc/Makefile
381 lib/Makefile
382 m4/Makefile
383 ])
384 AC_OUTPUT
385
386 echo
387 echo "***"
388 echo "*** Configuration Summary"
389 echo "***"
390 echo "*** Kernel Iface: $IFTYPE/$IFSUBTYPE"
391 echo "*** Cipher used: $CIPHER"
392 echo "*** Digest used: $DIGEST"
393 echo "*** HMAC length: $HMAC"
394 echo "*** RAND used: $RAND"
395 echo "*** Max. MTU: $MTU"
396
397 echo "***"
398 echo "*** Enable options:"
399 grep ENABLE_ config.h | sed -e 's/^/*** /'
400
401 if test "x$DIGEST" = xmd4; then
402 echo "***"
403 echo "*** WARNING: The digest you have chosen ($DIGEST) is known to be insecure"
404 fi
405
406 if test "$HMAC" -lt 12; then
407 echo "***"
408 echo "*** WARNING: The hmac length you have chosen ($HMAC) is probably insecure"
409 fi
410
411 if test "$RAND" -lt 8; then
412 echo "***"
413 echo "*** WARNING: The random prefix you have chosen ($RAND) is probably insecure"
414 fi
415
416 echo "***"
417 echo
418
419