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