ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/configure.ac
Revision: 1.39
Committed: Wed Mar 23 17:03:58 2005 UTC (19 years, 1 month ago) by pcg
Branch: MAIN
Changes since 1.38: +3 -2 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, 1.9)
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 extenstions])
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:
83 "native/linux"
84 "tincd/linux"
85 "tincd/freebsd"
86 "tincd/openbsd"
87 "tincd/darwin"
88 "native/cygwin";
89 Untested combinations are:
90 "native/darwin"
91 "tincd/netbsd"
92 "tincd/solaris"
93 "tincd/mingw"
94 "tincd/raw_socket"
95 "tincd/uml_socket";
96 Broken combinations are:
97 "tincd/cygwin";
98 The default is to autodetect.
99 )],
100 [
101 IFTYPE=`echo $enableval | sed s%/.*%%`
102 IFSUBTYPE=`echo $enableval | sed s%.*/%%`
103 ]
104 )
105
106 dnl Check and set OS
107 AC_MSG_CHECKING(for kernel networking interface type)
108
109 if test "x$IFTYPE" = "x"; then
110 case $target_os in
111 *linux*)
112 IFTYPE=native
113 IFSUBTYPE=linux
114 AC_DEFINE(HAVE_LINUX, 1, [Linux])
115 ;;
116 *freebsd*)
117 IFTYPE=tincd
118 IFSUBTYPE=freebsd
119 AC_DEFINE(HAVE_FREEBSD, 1, [FreeBSD])
120 ;;
121 *darwin*)
122 IFTYPE=native
123 IFSUBTYPE=darwin
124 AC_DEFINE(HAVE_DARWIN, 1, [Darwin (MacOS/X)])
125 ;;
126 *solaris*)
127 IFTYPE=tincd
128 IFSUBTYPE=solaris
129 AC_DEFINE(HAVE_SOLARIS, 1, [Solaris/SunOS])
130 ;;
131 *openbsd*)
132 IFTYPE=tincd
133 IFSUBTYPE=openbsd
134 AC_DEFINE(HAVE_OPENBSD, 1, [OpenBSD])
135 ;;
136 *netbsd*)
137 IFTYPE=tincd
138 IFSUBTYPE=netbsd
139 AC_DEFINE(HAVE_NETBSD, 1, [NetBSD])
140 ;;
141 *cygwin*)
142 IFTYPE=native
143 IFSUBTYPE=cygwin
144 AC_DEFINE(HAVE_CYGWIN, 1, [Cygwin])
145 ;;
146 *)
147 AC_MSG_ERROR("Unknown operating system.")
148 ;;
149 esac
150 fi
151 AC_MSG_RESULT($IFTYPE/$IFSUBTYPE)
152 AC_SUBST(IFTYPE,$IFTYPE)
153 AC_SUBST(IFSUBTYPE,$IFSUBTYPE)
154 AC_DEFINE_UNQUOTED(IFTYPE,"$IFTYPE",[kernel interface type])
155 AC_DEFINE_UNQUOTED(IFSUBTYPE,"$IFSUBTYPE",[kernel interface subtype])
156
157 AC_CACHE_SAVE
158
159 dnl Checks for libraries.
160
161 AC_LANG(C++)
162 AC_CHECK_HEADERS(ext/hash_map clocale)
163
164 dnl Checks for header files.
165 AC_CHECK_HEADERS([fcntl.h inttypes.h limits.h malloc.h stdint.h strings.h syslog.h unistd.h \
166 sys/file.h sys/ioctl.h sys/param.h sys/time.h netinet/in_systm.h sys/cygwin.h \
167 sys/mman.h netinet/in.h])
168 AC_CHECK_HEADERS([arpa/inet.h net/ethernet.h net/if.h netinet/ip.h netinet/tcp.h netinet/in_systm.h], [], [],
169 [
170 #include <sys/types.h>
171 #include <sys/socket.h>
172 #ifdef HAVE_NETINET_IN_H
173 # include <netinet/in.h>
174 #endif
175 #ifdef HAVE_ARPA_INET_H
176 # include <arpa/inet.h>
177 #endif
178 #ifdef HAVE_NETINET_IN_SYSTM_H
179 # include <netinet/in_systm.h>
180 #endif
181 ])
182
183 dnl Checks for typedefs, structures, and compiler characteristics.
184 AC_C_CONST
185 AC_TYPE_PID_T
186 AC_TYPE_SIZE_T
187 AC_HEADER_TIME
188 AC_STRUCT_TM
189
190 AC_CACHE_CHECK([for socklen_t], ac_cv_type_socklen_t,
191 [
192 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
193 #include <sys/socket.h>]], [[socklen_t len = 42; return len;]])],[ac_cv_type_socklen_t=yes],[ac_cv_type_socklen_t=no])
194 ])
195 if test $ac_cv_type_socklen_t = yes; then
196 AC_DEFINE(HAVE_SOCKLEN_T, 1, [socklen_t available])
197 fi
198
199 AC_CACHE_CHECK([for struct addrinfo], ac_cv_struct_addrinfo,
200 [
201 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
202 #include <sys/socket.h>
203 #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])
204 ])
205 if test $ac_cv_struct_addrinfo = yes; then
206 AC_DEFINE(HAVE_STRUCT_ADDRINFO, 1, [struct addrinfo available])
207 fi
208
209 dnl Checks for library functions.
210 AC_TYPE_SIGNAL
211
212 AC_LANG_PUSH(C)
213
214 AC_HEADER_STDC
215
216 dnl argl, could somebody catapult darwin into the 21st century???
217 AC_CHECK_FUNCS(asprintf daemon get_current_dir_name putenv select strerror strsignal strtol unsetenv mlockall)
218
219 AC_FUNC_ALLOCA
220
221 dnl Support for SunOS
222
223 AC_CHECK_FUNC(socket, [], [
224 AC_CHECK_LIB(socket, connect)
225 ])
226 AC_CHECK_FUNC(gethostbyname, [], [
227 AC_CHECK_LIB(nsl, gethostbyname)
228 ])
229
230 AC_LANG_POP
231
232 dnl AC_CHECK_FUNCS([freeaddrinfo gai_strerror getaddrinfo getnameinfo])
233
234 AC_CACHE_SAVE
235
236 dnl These are defined in files in m4/
237 tinc_TUNTAP
238
239 tinc_OPENSSL
240 if test "x$openssl_include" != x; then
241 CXXFLAGS="$CXXFLAGS -I$openssl_include"
242 fi
243 dnl tinc_ZLIB
244
245 AC_ARG_ENABLE(static-daemon,
246 [AS_HELP_STRING(--enable-static-daemon,enable statically linked daemon.)],
247 [LDFLAGS_DAEMON=-static]
248 )
249 AC_SUBST(LDFLAGS_DAEMON)
250
251 AC_ARG_ENABLE(rohc,
252 [AS_HELP_STRING(--enable-rohc,enable robust header compression (rfc3095).)],
253 [
254 echo
255 echo "**********************************************************************"
256 echo "**********************************************************************"
257 echo "**** --enable-rohc is highly experimental, do not use ****************"
258 echo "**********************************************************************"
259 echo "**********************************************************************"
260 echo
261 rohc=true
262 AC_DEFINE_UNQUOTED(ENABLE_ROHC, 1, [ROHC support])
263 ]
264 )
265
266 AM_CONDITIONAL(ROHC, test x$rohc = xtrue)
267
268 AC_ARG_ENABLE(icmp,
269 [AS_HELP_STRING(--enable-icmp,enable icmp protocol support (default disabled).)],
270 AC_DEFINE_UNQUOTED(ENABLE_ICMP, 1, [ICMP protocol support.])
271 )
272
273 AC_ARG_ENABLE(tcp,
274 [AS_HELP_STRING(--enable-tcp,enable tcp protocol support (default disabled).)],
275 AC_DEFINE_UNQUOTED(ENABLE_TCP, 1, [TCP protocol support.])
276 )
277
278 AC_ARG_ENABLE(dns,
279 [AS_HELP_STRING(--enable-dns,enable dns tunnel protocol support (DOES NOT WORK).)],
280 [
281 AC_CHECK_HEADER(gmp.h,,[AC_MSG_ERROR([gmp.h not found, required for --enable-dns])])
282 AC_CHECK_LIB(gmp,main,,[AC_MSG_ERROR([libgmp not found, required for --enable-dns])])
283
284 AC_DEFINE_UNQUOTED(ENABLE_DNS, 1, [DNS tunnel protocol support.])
285 ]
286 )
287
288 AC_ARG_ENABLE(http-proxy,
289 [AS_HELP_STRING(--enable-http-proxy,enable http proxy connect support (default disabled).)],
290 AC_DEFINE_UNQUOTED(ENABLE_HTTP_PROXY, 1, [http proxy connect support.])
291 )
292
293 HMAC=12
294 AC_ARG_ENABLE(hmac-length,
295 [AS_HELP_STRING(--enable-hmac-length=BYTES,[
296 use a hmac of length BYTES bytes (default 12). Allowed values are 4, 8, 12, 16.])],
297 HMAC=$enableval
298 )
299 AC_DEFINE_UNQUOTED(HMACLENGTH, $HMAC, [Size of HMAC in each packet in bytes.])
300
301 RAND=8
302 AC_ARG_ENABLE(rand-length,
303 [AS_HELP_STRING(--enable-rand-length=BYTES,
304 [use BYTES bytes of extra randomness (default 8). Allowed values are 0, 4, 8.])],
305 RAND=$enableval
306 )
307 AC_DEFINE_UNQUOTED(RAND_SIZE, $RAND, [Add this many bytes of randomness to each packet.])
308
309 MTU=1500
310 AC_ARG_ENABLE(mtu,
311 [AS_HELP_STRING(--enable-max-mtu=BYTES,enable mtu sizes upto BYTES bytes (default 1500). Use 9100 for jumbogram support.)],
312 MTU=$enableval
313 )
314 AC_DEFINE_UNQUOTED(MAX_MTU, $MTU + 14, [Maximum MTU supported.])
315
316 COMPRESS=1
317 AC_ARG_ENABLE(compression,
318 [AS_HELP_STRING(--disable-compression,Disable compression support.)],
319 if test "x$enableval" = xno; then
320 COMPRESS=0
321 fi
322 )
323 AC_DEFINE_UNQUOTED(ENABLE_COMPRESSION, $COMPRESS, [Enable compression support.])
324
325 CIPHER=bf_cbc
326 AC_ARG_ENABLE(cipher,
327 [AS_HELP_STRING(--enable-cipher,[
328 Select the symmetric cipher (default "bf").
329 Must be one of "bf" (blowfish), "aes-128" (rijndael), "aes-192" or "aes-256".])],
330 if test "x$enableval" = xbf ; then CIPHER=bf_cbc ; fi
331 if test "x$enableval" = xaes-128; then CIPHER=aes_128_cbc; fi
332 if test "x$enableval" = xaes-192; then CIPHER=aes_192_cbc; fi
333 if test "x$enableval" = xaes-256; then CIPHER=aes_256_cbc; fi
334 )
335 AC_DEFINE_UNQUOTED(ENABLE_CIPHER, EVP_${CIPHER}, [Select the symmetric cipher to use.])
336
337 DIGEST=sha1
338 AC_ARG_ENABLE(digest,
339 [AS_HELP_STRING(--enable-digest,[
340 Select the digets algorithm to use (default "sha1"). Must be one of
341 "sha1", "ripemd160", "md5" or "md4" (insecure).])],
342 if test "x$enableval" = xsha1 ; then DIGEST=sha1 ; fi
343 if test "x$enableval" = xripemd160; then DIGEST=ripemd160; fi
344 if test "x$enableval" = xmd5 ; then DIGEST=md5 ; fi
345 if test "x$enableval" = xmd4 ; then DIGEST=md4 ; fi
346 )
347 AC_DEFINE_UNQUOTED(ENABLE_DIGEST, EVP_${DIGEST}, [Select the digest algorithm to use.])
348
349 if $CXX -v --help 2>&1 | grep -q fno-rtti; then
350 CXXFLAGS="$CXXFLAGS -fno-rtti"
351 fi
352
353 if $CXX -v --help 2>&1 | grep -q fexceptions; then
354 CXXFLAGS="$CXXFLAGS -fno-exceptions"
355 fi
356
357 dnl if $CXX -v --help 2>&1 | grep -q ffunction-sections; then
358 dnl CXXFLAGS="$CXXFLAGS -ffunction-sections"
359 dnl fi
360 dnl
361 dnl if $LD -v --help 2>&1 | grep -q gc-sections; then
362 dnl LDFLAGS="$LDFLAGS -Wl,--gc-sections"
363 dnl fi
364
365 AC_CONFIG_COMMANDS_POST([
366
367 echo
368 echo "***"
369 echo "*** Configuration Summary"
370 echo "***"
371 echo "*** Kernel Iface: $IFTYPE/$IFSUBTYPE"
372 echo "*** Cipher used: $CIPHER"
373 echo "*** Digest used: $DIGEST"
374 echo "*** HMAC length: $HMAC"
375 echo "*** RAND used: $RAND"
376 echo "*** Max. MTU: $MTU"
377 echo "*** Compression: $COMPRESS"
378
379 if test "x$DIGEST" = xmd4; then
380 echo "***"
381 echo "*** WARNING: The digest you have chosen ($DIGEST) is known to be insecure"
382 fi
383
384 if test "$HMAC" -lt 12; then
385 echo "***"
386 echo "*** WARNING: The hmac length you have chosen ($HMAC) is probably insecure"
387 fi
388
389 if test "$RAND" -lt 8; then
390 echo "***"
391 echo "*** WARNING: The random prefix you have chosen ($RAND) is probably insecure"
392 fi
393
394 echo "***"
395
396 echo
397
398 ])
399
400 AC_SUBST(INCLUDES)
401
402 AC_CONFIG_FILES([Makefile po/Makefile.in
403 src/Makefile
404 doc/Makefile
405 lib/Makefile
406 m4/Makefile
407 ])
408 AC_OUTPUT