ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/configure.ac
Revision: 1.43
Committed: Mon Dec 5 13:00:15 2005 UTC (18 years, 5 months ago) by pcg
Branch: MAIN
CVS Tags: rel-2_0
Changes since 1.42: +1 -1 lines
Log Message:
*** empty log message ***

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.0)
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 AC_LANG_POP
232
233 dnl AC_CHECK_FUNCS([freeaddrinfo gai_strerror getaddrinfo getnameinfo])
234
235 AC_CACHE_SAVE
236
237 dnl These are defined in files in m4/
238 tinc_TUNTAP
239
240 tinc_OPENSSL
241 if test "x$openssl_include" != x; then
242 CXXFLAGS="$CXXFLAGS -I$openssl_include"
243 fi
244 dnl tinc_ZLIB
245
246 AC_ARG_ENABLE(static-daemon,
247 [AS_HELP_STRING(--enable-static-daemon,enable statically linked daemon.)],
248 [LDFLAGS_DAEMON=-static]
249 )
250 AC_SUBST(LDFLAGS_DAEMON)
251
252 AC_ARG_ENABLE(rohc,
253 [AS_HELP_STRING(--enable-rohc,enable robust header compression (rfc3095).)],
254 [
255 echo
256 echo "**********************************************************************"
257 echo "**********************************************************************"
258 echo "**** --enable-rohc is highly experimental, do not use ****************"
259 echo "**********************************************************************"
260 echo "**********************************************************************"
261 echo
262 rohc=true
263 AC_DEFINE_UNQUOTED(ENABLE_ROHC, 1, [ROHC support])
264 ]
265 )
266
267 AM_CONDITIONAL(ROHC, test x$rohc = xtrue)
268
269 dnl AC_ARG_ENABLE(bridging,
270 dnl [AS_HELP_STRING(--enable-bridging,enable bridging support (default disabled).)],
271 dnl AC_DEFINE_UNQUOTED(ENABLE_BRIDGING, 1, [bridging support.])
272 dnl )
273
274 AC_ARG_ENABLE(icmp,
275 [AS_HELP_STRING(--enable-icmp,enable icmp protocol support (default disabled).)],
276 AC_DEFINE_UNQUOTED(ENABLE_ICMP, 1, [ICMP protocol support.])
277 )
278
279 AC_ARG_ENABLE(tcp,
280 [AS_HELP_STRING(--enable-tcp,enable tcp protocol support (default disabled).)],
281 AC_DEFINE_UNQUOTED(ENABLE_TCP, 1, [TCP protocol support.])
282 )
283
284 AC_ARG_ENABLE(dns,
285 [AS_HELP_STRING(--enable-dns,enable dns tunnel protocol support (DOES NOT WORK).)],
286 [
287 AC_CHECK_HEADER(gmp.h,,[AC_MSG_ERROR([gmp.h not found, required for --enable-dns])])
288 AC_CHECK_LIB(gmp,main,,[AC_MSG_ERROR([libgmp not found, required for --enable-dns])])
289
290 AC_DEFINE_UNQUOTED(ENABLE_DNS, 1, [DNS tunnel protocol support.])
291 ]
292 )
293
294 AC_ARG_ENABLE(http-proxy,
295 [AS_HELP_STRING(--enable-http-proxy,enable http proxy connect support (default disabled).)],
296 AC_DEFINE_UNQUOTED(ENABLE_HTTP_PROXY, 1, [http proxy connect support.])
297 )
298
299 HMAC=12
300 AC_ARG_ENABLE(hmac-length,
301 [AS_HELP_STRING(--enable-hmac-length=BYTES,[
302 use a hmac of length BYTES bytes (default 12). Allowed values are 4, 8, 12, 16.])],
303 HMAC=$enableval
304 )
305 AC_DEFINE_UNQUOTED(HMACLENGTH, $HMAC, [Size of HMAC in each packet in bytes.])
306
307 RAND=8
308 AC_ARG_ENABLE(rand-length,
309 [AS_HELP_STRING(--enable-rand-length=BYTES,
310 [use BYTES bytes of extra randomness (default 8). Allowed values are 0, 4, 8.])],
311 RAND=$enableval
312 )
313 AC_DEFINE_UNQUOTED(RAND_SIZE, $RAND, [Add this many bytes of randomness to each packet.])
314
315 MTU=1500
316 AC_ARG_ENABLE(mtu,
317 [AS_HELP_STRING(--enable-max-mtu=BYTES,enable mtu sizes upto BYTES bytes (default 1500). Use 9100 for jumbogram support.)],
318 MTU=$enableval
319 )
320 AC_DEFINE_UNQUOTED(MAX_MTU, $MTU + 14, [Maximum MTU supported.])
321
322 COMPRESS=1
323 AC_ARG_ENABLE(compression,
324 [AS_HELP_STRING(--disable-compression,Disable compression support.)],
325 if test "x$enableval" = xno; then
326 COMPRESS=0
327 fi
328 )
329 AC_DEFINE_UNQUOTED(ENABLE_COMPRESSION, $COMPRESS, [Enable compression support.])
330
331 CIPHER=aes_128_cbc
332 AC_ARG_ENABLE(cipher,
333 [AS_HELP_STRING(--enable-cipher,[
334 Select the symmetric cipher (default "aes-128").
335 Must be one of "bf" (blowfish), "aes-128" (rijndael), "aes-192" or "aes-256".])],
336 if test "x$enableval" = xbf ; then CIPHER=bf_cbc ; fi
337 if test "x$enableval" = xaes-128; then CIPHER=aes_128_cbc; fi
338 if test "x$enableval" = xaes-192; then CIPHER=aes_192_cbc; fi
339 if test "x$enableval" = xaes-256; then CIPHER=aes_256_cbc; fi
340 )
341 AC_DEFINE_UNQUOTED(ENABLE_CIPHER, EVP_${CIPHER}, [Select the symmetric cipher to use.])
342
343 DIGEST=ripemd160
344 AC_ARG_ENABLE(digest,
345 [AS_HELP_STRING(--enable-digest,[
346 Select the digets algorithm to use (default "ripemd160"). Must be one of
347 "sha1", "ripemd160", "md5" or "md4" (insecure).])],
348 if test "x$enableval" = xsha1 ; then DIGEST=sha1 ; fi
349 if test "x$enableval" = xripemd160; then DIGEST=ripemd160; fi
350 if test "x$enableval" = xmd5 ; then DIGEST=md5 ; fi
351 if test "x$enableval" = xmd4 ; then DIGEST=md4 ; fi
352 )
353 AC_DEFINE_UNQUOTED(ENABLE_DIGEST, EVP_${DIGEST}, [Select the digest algorithm to use.])
354
355 if $CXX -v --help 2>&1 | grep -q fno-rtti; then
356 CXXFLAGS="$CXXFLAGS -fno-rtti"
357 fi
358
359 if $CXX -v --help 2>&1 | grep -q fexceptions; then
360 CXXFLAGS="$CXXFLAGS -fno-exceptions"
361 fi
362
363 dnl if $CXX -v --help 2>&1 | grep -q ffunction-sections; then
364 dnl CXXFLAGS="$CXXFLAGS -ffunction-sections"
365 dnl fi
366 dnl
367 dnl if $LD -v --help 2>&1 | grep -q gc-sections; then
368 dnl LDFLAGS="$LDFLAGS -Wl,--gc-sections"
369 dnl fi
370
371 AC_SUBST(INCLUDES)
372
373 AC_CONFIG_FILES([Makefile po/Makefile.in
374 src/Makefile
375 doc/Makefile
376 lib/Makefile
377 m4/Makefile
378 ])
379 AC_OUTPUT
380
381 echo
382 echo "***"
383 echo "*** Configuration Summary"
384 echo "***"
385 echo "*** Kernel Iface: $IFTYPE/$IFSUBTYPE"
386 echo "*** Cipher used: $CIPHER"
387 echo "*** Digest used: $DIGEST"
388 echo "*** HMAC length: $HMAC"
389 echo "*** RAND used: $RAND"
390 echo "*** Max. MTU: $MTU"
391
392 echo "***"
393 echo "*** Enable options:"
394 grep ENABLE_ config.h | sed -e 's/^/*** /'
395
396 if test "x$DIGEST" = xmd4; then
397 echo "***"
398 echo "*** WARNING: The digest you have chosen ($DIGEST) is known to be insecure"
399 fi
400
401 if test "$HMAC" -lt 12; then
402 echo "***"
403 echo "*** WARNING: The hmac length you have chosen ($HMAC) is probably insecure"
404 fi
405
406 if test "$RAND" -lt 8; then
407 echo "***"
408 echo "*** WARNING: The random prefix you have chosen ($RAND) is probably insecure"
409 fi
410
411 echo "***"
412 echo
413
414