ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/configure.ac
Revision: 1.46
Committed: Sat Nov 10 05:14:21 2007 UTC (16 years, 6 months ago) by pcg
Branch: MAIN
Changes since 1.45: +3 -0 lines
Log Message:
first shot at converting from iom to libev

File Contents

# User Rev Content
1 pcg 1.1 dnl Process this file with autoconf to produce a configure script.
2    
3 pcg 1.28 AC_PREREQ(2.59)
4     AC_INIT
5 pcg 1.37 AC_CONFIG_SRCDIR([src/gvpe.C])
6 pcg 1.1 AC_CANONICAL_TARGET
7 pcg 1.45 AM_INIT_AUTOMAKE(gvpe, 2.01)
8 pcg 1.28 AC_CONFIG_HEADERS([config.h])
9 pcg 1.1 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 pcg 1.33 typedef unsigned char u8;
23     typedef signed char s8;
24    
25 pcg 1.1 #if __CYGWIN__
26    
27     typedef unsigned short u16;
28     typedef unsigned int u32;
29 pcg 1.33 typedef signed short s16;
30     typedef signed int s32;
31 pcg 1.1
32     #else
33     #include <inttypes.h>
34    
35     /* old modula-2 habits */
36     typedef uint16_t u16;
37     typedef uint32_t u32;
38 pcg 1.33 typedef int16_t s16;
39     typedef int32_t s32;
40 pcg 1.1 #endif
41    
42     #endif
43 pcg 1.37
44 pcg 1.38 #if HAVE_CLOCALE
45     # define CLOCALE <clocale>
46 pcg 1.37 #else
47 pcg 1.38 # define CLOCALE <locale.h>
48 pcg 1.37 #endif
49 pcg 1.1 ])
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 pcg 1.42 AC_DEFINE([_GNU_SOURCE], 1, [Enable GNU extensions])
61 pcg 1.22
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 pcg 1.1
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 pcg 1.8 AC_ARG_ENABLE(iftype,
80 pcg 1.28 [AS_HELP_STRING(--enable-iftype=TYPE/SUBTYPE,
81 pcg 1.8 Use kernel/net device interface TYPE/SUBTYPE.
82 pcg 1.40 Working combinations are (see doc/gvpe.osdep.5.pod):
83 pcg 1.14 "native/linux"
84     "tincd/linux"
85 pcg 1.40 "tincd/netbsd"
86 pcg 1.16 "tincd/freebsd"
87 pcg 1.17 "tincd/openbsd"
88 pcg 1.40 "native/darwin"
89 pcg 1.18 "tincd/darwin"
90 pcg 1.16 "native/cygwin";
91 pcg 1.8 Untested combinations are:
92 pcg 1.41 "tincd/bsd"
93 pcg 1.14 "tincd/solaris"
94 pcg 1.36 "tincd/mingw"
95     "tincd/raw_socket"
96     "tincd/uml_socket";
97 pcg 1.8 Broken combinations are:
98 pcg 1.14 "tincd/cygwin";
99 pcg 1.9 The default is to autodetect.
100 pcg 1.28 )],
101 pcg 1.8 [
102     IFTYPE=`echo $enableval | sed s%/.*%%`
103     IFSUBTYPE=`echo $enableval | sed s%.*/%%`
104     ]
105     )
106    
107 pcg 1.1 dnl Check and set OS
108 pcg 1.8 AC_MSG_CHECKING(for kernel networking interface type)
109 pcg 1.1
110 pcg 1.8 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 pcg 1.39 IFTYPE=native
124 pcg 1.8 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 pcg 1.15 IFTYPE=native
144 pcg 1.8 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 pcg 1.19 AC_DEFINE_UNQUOTED(IFTYPE,"$IFTYPE",[kernel interface type])
156     AC_DEFINE_UNQUOTED(IFSUBTYPE,"$IFSUBTYPE",[kernel interface subtype])
157 pcg 1.1
158     AC_CACHE_SAVE
159    
160     dnl Checks for libraries.
161    
162     AC_LANG(C++)
163 pcg 1.37 AC_CHECK_HEADERS(ext/hash_map clocale)
164 pcg 1.1
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 pcg 1.22 sys/file.h sys/ioctl.h sys/param.h sys/time.h netinet/in_systm.h sys/cygwin.h \
168 pcg 1.21 sys/mman.h netinet/in.h])
169 pcg 1.22 AC_CHECK_HEADERS([arpa/inet.h net/ethernet.h net/if.h netinet/ip.h netinet/tcp.h netinet/in_systm.h], [], [],
170 pcg 1.8 [
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 pcg 1.1
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 pcg 1.10
191 pcg 1.1 AC_CACHE_CHECK([for socklen_t], ac_cv_type_socklen_t,
192     [
193 pcg 1.28 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 pcg 1.1 ])
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 pcg 1.28 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
203 pcg 1.1 #include <sys/socket.h>
204 pcg 1.28 #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 pcg 1.1 ])
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 pcg 1.11 dnl argl, could somebody catapult darwin into the 21st century???
218 pcg 1.21 AC_CHECK_FUNCS(asprintf daemon get_current_dir_name putenv select strerror strsignal strtol unsetenv mlockall)
219 pcg 1.1
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 pcg 1.46 dnl libev support
232     m4_include([libev/ev.m4])
233    
234 pcg 1.1 AC_LANG_POP
235    
236     dnl AC_CHECK_FUNCS([freeaddrinfo gai_strerror getaddrinfo getnameinfo])
237    
238     AC_CACHE_SAVE
239    
240     dnl These are defined in files in m4/
241     tinc_TUNTAP
242 pcg 1.15
243 pcg 1.1 tinc_OPENSSL
244 pcg 1.15 if test "x$openssl_include" != x; then
245     CXXFLAGS="$CXXFLAGS -I$openssl_include"
246     fi
247 pcg 1.1 dnl tinc_ZLIB
248    
249 pcg 1.30 AC_ARG_ENABLE(static-daemon,
250     [AS_HELP_STRING(--enable-static-daemon,enable statically linked daemon.)],
251     [LDFLAGS_DAEMON=-static]
252     )
253     AC_SUBST(LDFLAGS_DAEMON)
254    
255 pcg 1.5 AC_ARG_ENABLE(rohc,
256 pcg 1.28 [AS_HELP_STRING(--enable-rohc,enable robust header compression (rfc3095).)],
257 pcg 1.5 [
258     echo
259     echo "**********************************************************************"
260     echo "**********************************************************************"
261 pcg 1.25 echo "**** --enable-rohc is highly experimental, do not use ****************"
262 pcg 1.5 echo "**********************************************************************"
263     echo "**********************************************************************"
264     echo
265 pcg 1.25 rohc=true
266     AC_DEFINE_UNQUOTED(ENABLE_ROHC, 1, [ROHC support])
267 pcg 1.5 ]
268     )
269    
270 pcg 1.25 AM_CONDITIONAL(ROHC, test x$rohc = xtrue)
271    
272 pcg 1.42 dnl AC_ARG_ENABLE(bridging,
273     dnl [AS_HELP_STRING(--enable-bridging,enable bridging support (default disabled).)],
274     dnl AC_DEFINE_UNQUOTED(ENABLE_BRIDGING, 1, [bridging support.])
275     dnl )
276    
277 pcg 1.4 AC_ARG_ENABLE(icmp,
278 pcg 1.28 [AS_HELP_STRING(--enable-icmp,enable icmp protocol support (default disabled).)],
279 pcg 1.4 AC_DEFINE_UNQUOTED(ENABLE_ICMP, 1, [ICMP protocol support.])
280     )
281    
282 pcg 1.2 AC_ARG_ENABLE(tcp,
283 pcg 1.28 [AS_HELP_STRING(--enable-tcp,enable tcp protocol support (default disabled).)],
284 pcg 1.2 AC_DEFINE_UNQUOTED(ENABLE_TCP, 1, [TCP protocol support.])
285     )
286    
287 pcg 1.26 AC_ARG_ENABLE(dns,
288 pcg 1.28 [AS_HELP_STRING(--enable-dns,enable dns tunnel protocol support (DOES NOT WORK).)],
289 pcg 1.34 [
290     AC_CHECK_HEADER(gmp.h,,[AC_MSG_ERROR([gmp.h not found, required for --enable-dns])])
291     AC_CHECK_LIB(gmp,main,,[AC_MSG_ERROR([libgmp not found, required for --enable-dns])])
292    
293     AC_DEFINE_UNQUOTED(ENABLE_DNS, 1, [DNS tunnel protocol support.])
294     ]
295 pcg 1.26 )
296    
297 pcg 1.3 AC_ARG_ENABLE(http-proxy,
298 pcg 1.28 [AS_HELP_STRING(--enable-http-proxy,enable http proxy connect support (default disabled).)],
299 pcg 1.3 AC_DEFINE_UNQUOTED(ENABLE_HTTP_PROXY, 1, [http proxy connect support.])
300     )
301    
302 pcg 1.30 HMAC=12
303 pcg 1.1 AC_ARG_ENABLE(hmac-length,
304 pcg 1.30 [AS_HELP_STRING(--enable-hmac-length=BYTES,[
305     use a hmac of length BYTES bytes (default 12). Allowed values are 4, 8, 12, 16.])],
306 pcg 1.1 HMAC=$enableval
307     )
308     AC_DEFINE_UNQUOTED(HMACLENGTH, $HMAC, [Size of HMAC in each packet in bytes.])
309    
310 pcg 1.30 RAND=8
311 pcg 1.1 AC_ARG_ENABLE(rand-length,
312 pcg 1.30 [AS_HELP_STRING(--enable-rand-length=BYTES,
313     [use BYTES bytes of extra randomness (default 8). Allowed values are 0, 4, 8.])],
314 pcg 1.1 RAND=$enableval
315     )
316     AC_DEFINE_UNQUOTED(RAND_SIZE, $RAND, [Add this many bytes of randomness to each packet.])
317    
318 pcg 1.30 MTU=1500
319 pcg 1.1 AC_ARG_ENABLE(mtu,
320 pcg 1.28 [AS_HELP_STRING(--enable-max-mtu=BYTES,enable mtu sizes upto BYTES bytes (default 1500). Use 9100 for jumbogram support.)],
321 pcg 1.1 MTU=$enableval
322     )
323     AC_DEFINE_UNQUOTED(MAX_MTU, $MTU + 14, [Maximum MTU supported.])
324    
325     COMPRESS=1
326     AC_ARG_ENABLE(compression,
327 pcg 1.28 [AS_HELP_STRING(--disable-compression,Disable compression support.)],
328 pcg 1.1 if test "x$enableval" = xno; then
329     COMPRESS=0
330     fi
331     )
332     AC_DEFINE_UNQUOTED(ENABLE_COMPRESSION, $COMPRESS, [Enable compression support.])
333    
334 pcg 1.42 CIPHER=aes_128_cbc
335 pcg 1.1 AC_ARG_ENABLE(cipher,
336 pcg 1.30 [AS_HELP_STRING(--enable-cipher,[
337 pcg 1.42 Select the symmetric cipher (default "aes-128").
338 pcg 1.30 Must be one of "bf" (blowfish), "aes-128" (rijndael), "aes-192" or "aes-256".])],
339 pcg 1.1 if test "x$enableval" = xbf ; then CIPHER=bf_cbc ; fi
340     if test "x$enableval" = xaes-128; then CIPHER=aes_128_cbc; fi
341     if test "x$enableval" = xaes-192; then CIPHER=aes_192_cbc; fi
342     if test "x$enableval" = xaes-256; then CIPHER=aes_256_cbc; fi
343     )
344     AC_DEFINE_UNQUOTED(ENABLE_CIPHER, EVP_${CIPHER}, [Select the symmetric cipher to use.])
345    
346 pcg 1.42 DIGEST=ripemd160
347 pcg 1.1 AC_ARG_ENABLE(digest,
348 pcg 1.30 [AS_HELP_STRING(--enable-digest,[
349 pcg 1.44 Select the digest algorithm to use (default "ripemd160"). Must be one of
350 pcg 1.45 "sha512", "sha256", "sha1", "ripemd160", "md5" or "md4" (insecure).])],
351     if test "x$enableval" = xsha512 ; then DIGEST=sha512 ; fi
352     if test "x$enableval" = xsha256 ; then DIGEST=sha256 ; fi
353 pcg 1.1 if test "x$enableval" = xsha1 ; then DIGEST=sha1 ; fi
354     if test "x$enableval" = xripemd160; then DIGEST=ripemd160; fi
355 pcg 1.9 if test "x$enableval" = xmd5 ; then DIGEST=md5 ; fi
356 pcg 1.1 if test "x$enableval" = xmd4 ; then DIGEST=md4 ; fi
357     )
358     AC_DEFINE_UNQUOTED(ENABLE_DIGEST, EVP_${DIGEST}, [Select the digest algorithm to use.])
359    
360     if $CXX -v --help 2>&1 | grep -q fno-rtti; then
361     CXXFLAGS="$CXXFLAGS -fno-rtti"
362     fi
363    
364     if $CXX -v --help 2>&1 | grep -q fexceptions; then
365     CXXFLAGS="$CXXFLAGS -fno-exceptions"
366     fi
367    
368 pcg 1.20 dnl if $CXX -v --help 2>&1 | grep -q ffunction-sections; then
369     dnl CXXFLAGS="$CXXFLAGS -ffunction-sections"
370     dnl fi
371     dnl
372     dnl if $LD -v --help 2>&1 | grep -q gc-sections; then
373     dnl LDFLAGS="$LDFLAGS -Wl,--gc-sections"
374     dnl fi
375 pcg 1.1
376 pcg 1.42 AC_SUBST(INCLUDES)
377    
378     AC_CONFIG_FILES([Makefile po/Makefile.in
379     src/Makefile
380     doc/Makefile
381     lib/Makefile
382     m4/Makefile
383     ])
384     AC_OUTPUT
385 pcg 1.1
386     echo
387     echo "***"
388     echo "*** Configuration Summary"
389     echo "***"
390 pcg 1.8 echo "*** Kernel Iface: $IFTYPE/$IFSUBTYPE"
391 pcg 1.1 echo "*** Cipher used: $CIPHER"
392     echo "*** Digest used: $DIGEST"
393     echo "*** HMAC length: $HMAC"
394     echo "*** RAND used: $RAND"
395     echo "*** Max. MTU: $MTU"
396 pcg 1.42
397     echo "***"
398     echo "*** Enable options:"
399     grep ENABLE_ config.h | sed -e 's/^/*** /'
400 pcg 1.24
401     if test "x$DIGEST" = xmd4; then
402 pcg 1.1 echo "***"
403 pcg 1.24 echo "*** WARNING: The digest you have chosen ($DIGEST) is known to be insecure"
404     fi
405 pcg 1.8
406 pcg 1.24 if test "$HMAC" -lt 12; then
407     echo "***"
408 pcg 1.26 echo "*** WARNING: The hmac length you have chosen ($HMAC) is probably insecure"
409 pcg 1.24 fi
410    
411     if test "$RAND" -lt 8; then
412 pcg 1.8 echo "***"
413 pcg 1.26 echo "*** WARNING: The random prefix you have chosen ($RAND) is probably insecure"
414 pcg 1.8 fi
415 pcg 1.24
416     echo "***"
417 pcg 1.1 echo
418    
419