ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/configure.ac
Revision: 1.16
Committed: Wed Oct 15 06:06:41 2003 UTC (20 years, 7 months ago) by pcg
Branch: MAIN
Changes since 1.15: +2 -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.57)
4 AC_INIT(src/vped.C)
5 AC_CANONICAL_TARGET
6 AM_INIT_AUTOMAKE(vpe, 1.2)
7 AM_CONFIG_HEADER(config.h)
8 AM_MAINTAINER_MODE
9
10 AH_TOP([
11 #ifndef CONFIG_H__
12 #define CONFIG_H__
13
14 #ifdef __cplusplus
15 using namespace std;
16 #endif
17
18 ])
19
20 AH_BOTTOM([
21 #if __CYGWIN__
22
23 typedef unsigned char u8;
24 typedef unsigned short u16;
25 typedef unsigned int u32;
26
27 #else
28 #include <inttypes.h>
29
30 /* old modula-2 habits */
31 typedef unsigned char u8;
32 typedef uint16_t u16;
33 typedef uint32_t u32;
34 #endif
35
36 #endif
37 ])
38
39 dnl Include the macros from the m4/ directory
40 AM_ACLOCAL_INCLUDE(m4)
41
42 AM_GNU_GETTEXT([external])
43 AM_GNU_GETTEXT_VERSION(0.11.5)
44
45 # Enable GNU extensions.
46 # Define this here, not in acconfig's @TOP@ section, since definitions
47 # in the latter don't make it into the configure-time tests.
48 AC_DEFINE([_GNU_SOURCE], 1, [Enable GNU extenstions])
49 AC_DEFINE([__USE_BSD], 1, [Enable BSD extensions])
50
51 ALL_LINGUAS=""
52
53 dnl Checks for programs.
54 AC_PROG_CC
55 AC_PROG_CPP
56 AC_PROG_CXX
57 AC_PROG_GCC_TRADITIONAL
58 AC_PROG_AWK
59 AC_PROG_INSTALL
60 AC_PROG_LN_S
61 AC_PROG_MAKE_SET
62 AC_PROG_RANLIB
63
64 AC_ISC_POSIX
65
66 AC_ARG_ENABLE(iftype,
67 [AC_HELP_STRING(--enable-iftype[=TYPE/SUBTYPE], [
68 Use kernel/net device interface TYPE/SUBTYPE.
69 Working combinations are:
70 "native/linux"
71 "tincd/linux"
72 "tincd/freebsd"
73 "native/cygwin";
74 Untested combinations are:
75 "tincd/netbsd"
76 "tincd/darwin"
77 "tincd/solaris"
78 "tincd/openbsd";
79 Broken combinations are:
80 "tincd/cygwin";
81 The default is to autodetect.
82 ])],
83 [
84 IFTYPE=`echo $enableval | sed s%/.*%%`
85 IFSUBTYPE=`echo $enableval | sed s%.*/%%`
86 ]
87 )
88
89 dnl Check and set OS
90 AC_MSG_CHECKING(for kernel networking interface type)
91
92 if test "x$IFTYPE" = "x"; then
93 case $target_os in
94 *linux*)
95 IFTYPE=native
96 IFSUBTYPE=linux
97 AC_DEFINE(HAVE_LINUX, 1, [Linux])
98 ;;
99 *freebsd*)
100 IFTYPE=tincd
101 IFSUBTYPE=freebsd
102 AC_DEFINE(HAVE_FREEBSD, 1, [FreeBSD])
103 ;;
104 *darwin*)
105 IFTYPE=tincd
106 IFSUBTYPE=darwin
107 AC_DEFINE(HAVE_DARWIN, 1, [Darwin (MacOS/X)])
108 ;;
109 *solaris*)
110 IFTYPE=tincd
111 IFSUBTYPE=solaris
112 AC_DEFINE(HAVE_SOLARIS, 1, [Solaris/SunOS])
113 ;;
114 *openbsd*)
115 IFTYPE=tincd
116 IFSUBTYPE=openbsd
117 AC_DEFINE(HAVE_OPENBSD, 1, [OpenBSD])
118 ;;
119 *netbsd*)
120 IFTYPE=tincd
121 IFSUBTYPE=netbsd
122 AC_DEFINE(HAVE_NETBSD, 1, [NetBSD])
123 ;;
124 *cygwin*)
125 IFTYPE=native
126 IFSUBTYPE=cygwin
127 AC_DEFINE(HAVE_CYGWIN, 1, [Cygwin])
128 ;;
129 *)
130 AC_MSG_ERROR("Unknown operating system.")
131 ;;
132 esac
133 fi
134 AC_MSG_RESULT($IFTYPE/$IFSUBTYPE)
135 AC_SUBST(IFTYPE,$IFTYPE)
136 AC_SUBST(IFSUBTYPE,$IFSUBTYPE)
137
138 AC_CACHE_SAVE
139
140 dnl Checks for libraries.
141
142 AC_LANG(C++)
143 AC_CHECK_HEADERS(ext/hash_map)
144
145 dnl Checks for header files.
146 AC_CHECK_HEADERS([fcntl.h inttypes.h limits.h malloc.h stdint.h strings.h syslog.h unistd.h \
147 sys/file.h sys/ioctl.h sys/param.h sys/time.h netinet/in_systm.h sys/cygwin.h arpa/inet.h \
148 sys/poll.h sys/mman.h netinet/in.h])
149 AC_CHECK_HEADERS([net/ethernet.h net/if.h netinet/ip.h netinet/tcp.h netinet/in_systm.h], [], [],
150 [
151 #include <sys/types.h>
152 #include <sys/socket.h>
153 #ifdef HAVE_NETINET_IN_H
154 # include <netinet/in.h>
155 #endif
156 #ifdef HAVE_ARPA_INET_H
157 # include <arpa/inet.h>
158 #endif
159 #ifdef HAVE_NETINET_IN_SYSTM_H
160 # include <netinet/in_systm.h>
161 #endif
162 ])
163
164 dnl Checks for typedefs, structures, and compiler characteristics.
165 AC_C_CONST
166 AC_TYPE_PID_T
167 AC_TYPE_SIZE_T
168 AC_HEADER_TIME
169 AC_STRUCT_TM
170
171 AC_CACHE_CHECK([for socklen_t], ac_cv_type_socklen_t,
172 [
173 AC_TRY_COMPILE(
174 [#include <sys/types.h>
175 #include <sys/socket.h>],
176 [socklen_t len = 42; return len;],
177 ac_cv_type_socklen_t=yes,
178 ac_cv_type_socklen_t=no)
179 ])
180 if test $ac_cv_type_socklen_t = yes; then
181 AC_DEFINE(HAVE_SOCKLEN_T, 1, [socklen_t available])
182 fi
183
184 AC_CACHE_CHECK([for struct addrinfo], ac_cv_struct_addrinfo,
185 [
186 AC_TRY_COMPILE(
187 [#include <sys/types.h>
188 #include <sys/socket.h>
189 #include <netdb.h>],
190 [struct addrinfo ai; ai.ai_family = AF_INET; return ai.ai_family;],
191 ac_cv_struct_addrinfo=yes,
192 ac_cv_struct_addrinfo=no)
193 ])
194 if test $ac_cv_struct_addrinfo = yes; then
195 AC_DEFINE(HAVE_STRUCT_ADDRINFO, 1, [struct addrinfo available])
196 fi
197
198 dnl Checks for library functions.
199 AC_TYPE_SIGNAL
200
201 AC_LANG_PUSH(C)
202
203 AC_HEADER_STDC
204
205 dnl argl, could somebody catapult darwin into the 21st century???
206 AC_CHECK_FUNCS(asprintf daemon get_current_dir_name putenv select strerror strsignal strtol unsetenv mlockall poll)
207
208 AC_FUNC_ALLOCA
209
210 dnl Support for SunOS
211
212 AC_CHECK_FUNC(socket, [], [
213 AC_CHECK_LIB(socket, connect)
214 ])
215 AC_CHECK_FUNC(gethostbyname, [], [
216 AC_CHECK_LIB(nsl, gethostbyname)
217 ])
218
219 AC_LANG_POP
220
221 dnl AC_CHECK_FUNCS([freeaddrinfo gai_strerror getaddrinfo getnameinfo])
222
223 AC_CACHE_SAVE
224
225 dnl These are defined in files in m4/
226 tinc_TUNTAP
227
228 tinc_OPENSSL
229 if test "x$openssl_include" != x; then
230 CXXFLAGS="$CXXFLAGS -I$openssl_include"
231 fi
232 dnl tinc_ZLIB
233
234 AC_ARG_ENABLE(rohc,
235 [AC_HELP_STRING(--enable-rohc, [enable robust header compression (rfc3095).])],
236 [
237 echo
238 echo "**********************************************************************"
239 echo "**********************************************************************"
240 echo "**** --enable-rohc not yet implemented *******************************"
241 echo "**********************************************************************"
242 echo "**** uuh sorry, I am such an ass, but I didn't find any rfc3095 (ROHC)"
243 echo "**** implementation to be used in GPL code on the web."
244 echo "**** so this option is just a fake. Please implement one and send it"
245 echo "**** to me ;)"
246 echo "**********************************************************************"
247 echo "**********************************************************************"
248 echo "**********************************************************************"
249 echo "**********************************************************************"
250 echo
251 ]
252 )
253
254 AC_ARG_ENABLE(icmp,
255 [AC_HELP_STRING(--enable-icmp, [enable icmp protocol support (default disabled).])],
256 AC_DEFINE_UNQUOTED(ENABLE_ICMP, 1, [ICMP protocol support.])
257 )
258
259 AC_ARG_ENABLE(tcp,
260 [AC_HELP_STRING(--enable-tcp, [enable tcp protocol support (default disabled).])],
261 AC_DEFINE_UNQUOTED(ENABLE_TCP, 1, [TCP protocol support.])
262 )
263
264 AC_ARG_ENABLE(http-proxy,
265 [AC_HELP_STRING(--enable-http-proxy, [enable http proxy connect support (default disabled).])],
266 AC_DEFINE_UNQUOTED(ENABLE_HTTP_PROXY, 1, [http proxy connect support.])
267 )
268
269 HMAC=12 dnl see also the AC_HELP_STRING
270 AC_ARG_ENABLE(hmac-length,
271 [AC_HELP_STRING(--enable-hmac-length=BYTES, [use a hmac of length BYTES bytes (default 12). Allowed values are 4, 8, 12, 16.])],
272 HMAC=$enableval
273 )
274 AC_DEFINE_UNQUOTED(HMACLENGTH, $HMAC, [Size of HMAC in each packet in bytes.])
275
276 RAND=8 dnl see also the AC_HELP_STRING
277 AC_ARG_ENABLE(rand-length,
278 [AC_HELP_STRING(--enable-rand-length=BYTES, [use BYTES bytes of extra randomness (default 8). Allowed values are 0, 4, 8.])],
279 RAND=$enableval
280 )
281 AC_DEFINE_UNQUOTED(RAND_SIZE, $RAND, [Add this many bytes of randomness to each packet.])
282
283 MTU=1500 dnl see also the AC_HELP_STRING
284 AC_ARG_ENABLE(mtu,
285 [AC_HELP_STRING(--enable-max-mtu=BYTES, enable mtu sizes upto BYTES bytes (default 1500). Use 9100 for jumbogram support.)],
286 MTU=$enableval
287 )
288 AC_DEFINE_UNQUOTED(MAX_MTU, $MTU + 14, [Maximum MTU supported.])
289
290 COMPRESS=1
291 AC_ARG_ENABLE(compression,
292 [AC_HELP_STRING(--disable-compression, Disable compression support.)],
293 if test "x$enableval" = xno; then
294 COMPRESS=0
295 fi
296 )
297 AC_DEFINE_UNQUOTED(ENABLE_COMPRESSION, $COMPRESS, [Enable compression support.])
298
299 CIPHER=bf_cbc
300 AC_ARG_ENABLE(cipher,
301 [AC_HELP_STRING(--enable-cipher, [
302 Select the symmetric cipher (default "bf"). Must be one of
303 "bf" (blowfish), "aes-128" (rijndael), "aes-192" or "aes-256".])],
304 if test "x$enableval" = xbf ; then CIPHER=bf_cbc ; fi
305 if test "x$enableval" = xaes-128; then CIPHER=aes_128_cbc; fi
306 if test "x$enableval" = xaes-192; then CIPHER=aes_192_cbc; fi
307 if test "x$enableval" = xaes-256; then CIPHER=aes_256_cbc; fi
308 )
309 AC_DEFINE_UNQUOTED(ENABLE_CIPHER, EVP_${CIPHER}, [Select the symmetric cipher to use.])
310
311 DIGEST=sha1
312 AC_ARG_ENABLE(digest,
313 [AC_HELP_STRING(--enable-digest, [
314 Select the digets algorithm to use (default "sha1"). Must be one of
315 "sha1", "ripemd160", "md5" or "md4" (insecure).])],
316 if test "x$enableval" = xsha1 ; then DIGEST=sha1 ; fi
317 if test "x$enableval" = xripemd160; then DIGEST=ripemd160; fi
318 if test "x$enableval" = xmd5 ; then DIGEST=md5 ; fi
319 if test "x$enableval" = xmd4 ; then DIGEST=md4 ; fi
320 )
321 AC_DEFINE_UNQUOTED(ENABLE_DIGEST, EVP_${DIGEST}, [Select the digest algorithm to use.])
322
323 if $CXX -v --help 2>&1 | grep -q fno-rtti; then
324 CXXFLAGS="$CXXFLAGS -fno-rtti"
325 fi
326
327 if $CXX -v --help 2>&1 | grep -q fexceptions; then
328 CXXFLAGS="$CXXFLAGS -fno-exceptions"
329 fi
330
331 if $CXX -v --help 2>&1 | grep -q ffunction-sections; then
332 CXXFLAGS="$CXXFLAGS -ffunction-sections"
333 fi
334
335 if $LD -v --help 2>&1 | grep -q gc-sections; then
336 LDFLAGS="$LDFLAGS -Wl,--gc-sections"
337 fi
338
339 AC_CONFIG_COMMANDS_POST([
340
341 echo
342 echo "***"
343 echo "*** Configuration Summary"
344 echo "***"
345 echo "*** Kernel Iface: $IFTYPE/$IFSUBTYPE"
346 echo "*** Cipher used: $CIPHER"
347 echo "*** Digest used: $DIGEST"
348 echo "*** HMAC length: $HMAC"
349 echo "*** RAND used: $RAND"
350 echo "*** Max. MTU: $MTU"
351 echo "*** Compression: $COMPRESS"
352 echo "***"
353
354 if test "x$DIGEST" = xmd4; then
355 echo "*** WARNING"
356 echo "*** The digest you have chosen ($DIGEST) is known to be insecure"
357 echo "***"
358 fi
359
360 echo
361
362 ])
363
364 AC_SUBST(INCLUDES)
365
366 AC_OUTPUT(Makefile po/Makefile.in
367 src/Makefile
368 doc/Makefile
369 lib/Makefile
370 m4/Makefile
371 )