ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/configure.ac
(Generate patch)

Comparing gvpe/configure.ac (file contents):
Revision 1.8 by pcg, Tue Oct 14 03:22:09 2003 UTC vs.
Revision 1.13 by pcg, Wed Oct 15 00:34:18 2003 UTC

1dnl Process this file with autoconf to produce a configure script. 1dnl Process this file with autoconf to produce a configure script.
2 2
3AC_PREREQ(2.57) 3AC_PREREQ(2.57)
4AC_INIT(src/vped.C) 4AC_INIT(src/vped.C)
5AC_CANONICAL_TARGET 5AC_CANONICAL_TARGET
6AM_INIT_AUTOMAKE(vpe, 1.0) 6AM_INIT_AUTOMAKE(vpe, 1.2)
7AM_CONFIG_HEADER(config.h) 7AM_CONFIG_HEADER(config.h)
8AM_MAINTAINER_MODE 8AM_MAINTAINER_MODE
9 9
10AH_TOP([ 10AH_TOP([
11#ifndef CONFIG_H__ 11#ifndef CONFIG_H__
65 65
66AC_ARG_ENABLE(iftype, 66AC_ARG_ENABLE(iftype,
67 [AC_HELP_STRING(--enable-iftype[=TYPE/SUBTYPE], [ 67 [AC_HELP_STRING(--enable-iftype[=TYPE/SUBTYPE], [
68 Use kernel/net device interface TYPE/SUBTYPE. 68 Use kernel/net device interface TYPE/SUBTYPE.
69 Working combinations are: 69 Working combinations are:
70 "native/linux" "tincd/linux"; 70 "native/linux" "tincd/linux" "tincd/freebsd";
71 Untested combinations are: 71 Untested combinations are:
72 "tincd/freebsd" "tincd/netbsd" "tincd/darwin" "tincd/solaris" 72 "tincd/netbsd" "tincd/darwin" "tincd/solaris"
73 "tincd/openbsd" "tincd/netbsd" "tincd/cygwin"; 73 "tincd/openbsd" "tincd/cygwin";
74 Broken combinations are: 74 Broken combinations are:
75 "native/cygwin"; 75 "native/cygwin";
76 The default is autodetected. 76 The default is to autodetect.
77 ])], 77 ])],
78 [ 78 [
79 IFTYPE=`echo $enableval | sed s%/.*%%` 79 IFTYPE=`echo $enableval | sed s%/.*%%`
80 IFSUBTYPE=`echo $enableval | sed s%.*/%%` 80 IFSUBTYPE=`echo $enableval | sed s%.*/%%`
81 ] 81 ]
137AC_LANG(C++) 137AC_LANG(C++)
138AC_CHECK_HEADERS(ext/hash_map) 138AC_CHECK_HEADERS(ext/hash_map)
139 139
140dnl Checks for header files. 140dnl Checks for header files.
141AC_CHECK_HEADERS([fcntl.h inttypes.h limits.h malloc.h stdint.h strings.h syslog.h unistd.h \ 141AC_CHECK_HEADERS([fcntl.h inttypes.h limits.h malloc.h stdint.h strings.h syslog.h unistd.h \
142 sys/file.h sys/ioctl.h sys/param.h sys/time.h netinet/in_systm.h cygwin.h arpa/inet.h netinet/in.h]) 142 sys/file.h sys/ioctl.h sys/param.h sys/time.h netinet/in_systm.h cygwin.h arpa/inet.h \
143 sys/poll.h sys/mman.h netinet/in.h])
143AC_CHECK_HEADERS([net/ethernet.h net/if.h netinet/ip.h netinet/tcp.h netinet/in_systm.h], [], [], 144AC_CHECK_HEADERS([net/ethernet.h net/if.h netinet/ip.h netinet/tcp.h netinet/in_systm.h], [], [],
144[ 145[
145#include <sys/types.h> 146#include <sys/types.h>
146#include <sys/socket.h> 147#include <sys/socket.h>
147#ifdef HAVE_NETINET_IN_H 148#ifdef HAVE_NETINET_IN_H
194 195
195AC_LANG_PUSH(C) 196AC_LANG_PUSH(C)
196 197
197AC_HEADER_STDC 198AC_HEADER_STDC
198 199
200dnl argl, could somebody catapult darwin into the 21st century???
199AC_CHECK_FUNCS(asprintf daemon get_current_dir_name putenv select strerror strsignal strtol unsetenv mlockall) 201AC_CHECK_FUNCS(asprintf daemon get_current_dir_name putenv select strerror strsignal strtol unsetenv mlockall poll)
200 202
201AC_FUNC_ALLOCA 203AC_FUNC_ALLOCA
202 204
203dnl Support for SunOS 205dnl Support for SunOS
204 206
216AC_CACHE_SAVE 218AC_CACHE_SAVE
217 219
218dnl These are defined in files in m4/ 220dnl These are defined in files in m4/
219tinc_TUNTAP 221tinc_TUNTAP
220tinc_OPENSSL 222tinc_OPENSSL
223CXXFLAGS="$CXXFLAGS -I$openssl_include"
221dnl tinc_ZLIB 224dnl tinc_ZLIB
222 225
223AC_ARG_ENABLE(rohc, 226AC_ARG_ENABLE(rohc,
224 [AC_HELP_STRING(--enable-rohc, [enable robust header compression (rfc3095).])], 227 [AC_HELP_STRING(--enable-rohc, [enable robust header compression (rfc3095).])],
225 [ 228 [
239 echo 242 echo
240 ] 243 ]
241) 244)
242 245
243AC_ARG_ENABLE(icmp, 246AC_ARG_ENABLE(icmp,
244 [AC_HELP_STRING(--enable-icmp, [enable icmp protocol support.])], 247 [AC_HELP_STRING(--enable-icmp, [enable icmp protocol support (default disabled).])],
245 AC_DEFINE_UNQUOTED(ENABLE_ICMP, 1, [ICMP protocol support.]) 248 AC_DEFINE_UNQUOTED(ENABLE_ICMP, 1, [ICMP protocol support.])
246) 249)
247 250
248AC_ARG_ENABLE(tcp, 251AC_ARG_ENABLE(tcp,
249 [AC_HELP_STRING(--enable-tcp, [enable tcp protocol support.])], 252 [AC_HELP_STRING(--enable-tcp, [enable tcp protocol support (default disabled).])],
250 AC_DEFINE_UNQUOTED(ENABLE_TCP, 1, [TCP protocol support.]) 253 AC_DEFINE_UNQUOTED(ENABLE_TCP, 1, [TCP protocol support.])
251) 254)
252 255
253AC_ARG_ENABLE(http-proxy, 256AC_ARG_ENABLE(http-proxy,
254 [AC_HELP_STRING(--enable-http-proxy, [enable http proxy connect support.])], 257 [AC_HELP_STRING(--enable-http-proxy, [enable http proxy connect support (default disabled).])],
255 AC_DEFINE_UNQUOTED(ENABLE_HTTP_PROXY, 1, [http proxy connect support.]) 258 AC_DEFINE_UNQUOTED(ENABLE_HTTP_PROXY, 1, [http proxy connect support.])
256) 259)
257 260
258HMAC=16 dnl see also the AC_HELP_STRING 261HMAC=12 dnl see also the AC_HELP_STRING
259AC_ARG_ENABLE(hmac-length, 262AC_ARG_ENABLE(hmac-length,
260 [AC_HELP_STRING(--enable-hmac-length=BYTES, [use a hmac of length BYTES bytes (default 16). Allowed values are 4, 8, 12, 16.])], 263 [AC_HELP_STRING(--enable-hmac-length=BYTES, [use a hmac of length BYTES bytes (default 12). Allowed values are 4, 8, 12, 16.])],
261 HMAC=$enableval 264 HMAC=$enableval
262) 265)
263AC_DEFINE_UNQUOTED(HMACLENGTH, $HMAC, [Size of HMAC in each packet in bytes.]) 266AC_DEFINE_UNQUOTED(HMACLENGTH, $HMAC, [Size of HMAC in each packet in bytes.])
264 267
265RAND=8 dnl see also the AC_HELP_STRING 268RAND=8 dnl see also the AC_HELP_STRING
287 290
288CIPHER=bf_cbc 291CIPHER=bf_cbc
289AC_ARG_ENABLE(cipher, 292AC_ARG_ENABLE(cipher,
290 [AC_HELP_STRING(--enable-cipher, [ 293 [AC_HELP_STRING(--enable-cipher, [
291 Select the symmetric cipher (default "bf"). Must be one of 294 Select the symmetric cipher (default "bf"). Must be one of
292 "bf" (blowfish), "aes-128", "aes-192" or "aes-256".])], 295 "bf" (blowfish), "aes-128" (rijndael), "aes-192" or "aes-256".])],
293 if test "x$enableval" = xbf ; then CIPHER=bf_cbc ; fi 296 if test "x$enableval" = xbf ; then CIPHER=bf_cbc ; fi
294 if test "x$enableval" = xaes-128; then CIPHER=aes_128_cbc; fi 297 if test "x$enableval" = xaes-128; then CIPHER=aes_128_cbc; fi
295 if test "x$enableval" = xaes-192; then CIPHER=aes_192_cbc; fi 298 if test "x$enableval" = xaes-192; then CIPHER=aes_192_cbc; fi
296 if test "x$enableval" = xaes-256; then CIPHER=aes_256_cbc; fi 299 if test "x$enableval" = xaes-256; then CIPHER=aes_256_cbc; fi
297) 300)
299 302
300DIGEST=sha1 303DIGEST=sha1
301AC_ARG_ENABLE(digest, 304AC_ARG_ENABLE(digest,
302 [AC_HELP_STRING(--enable-digest, [ 305 [AC_HELP_STRING(--enable-digest, [
303 Select the digets algorithm to use (default "sha1"). Must be one of 306 Select the digets algorithm to use (default "sha1"). Must be one of
304 "sha1", "ripemd160", "md4" or "md5".])], 307 "sha1", "ripemd160", "md5" or "md4" (insecure).])],
305 if test "x$enableval" = xsha1 ; then DIGEST=sha1 ; fi 308 if test "x$enableval" = xsha1 ; then DIGEST=sha1 ; fi
306 if test "x$enableval" = xripemd160; then DIGEST=ripemd160; fi 309 if test "x$enableval" = xripemd160; then DIGEST=ripemd160; fi
310 if test "x$enableval" = xmd5 ; then DIGEST=md5 ; fi
307 if test "x$enableval" = xmd4 ; then DIGEST=md4 ; fi 311 if test "x$enableval" = xmd4 ; then DIGEST=md4 ; fi
308 if test "x$enableval" = xmd5 ; then DIGEST=md5 ; fi
309) 312)
310AC_DEFINE_UNQUOTED(ENABLE_DIGEST, EVP_${DIGEST}, [Select the digest algorithm to use.]) 313AC_DEFINE_UNQUOTED(ENABLE_DIGEST, EVP_${DIGEST}, [Select the digest algorithm to use.])
311 314
312if $CXX -v --help 2>&1 | grep -q fno-rtti; then 315if $CXX -v --help 2>&1 | grep -q fno-rtti; then
313 CXXFLAGS="$CXXFLAGS -fno-rtti" 316 CXXFLAGS="$CXXFLAGS -fno-rtti"

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines