ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/configure.ac
Revision: 1.19
Committed: Thu Oct 16 21:57:54 2003 UTC (20 years, 7 months ago) by pcg
Branch: MAIN
Changes since 1.18: +2 -0 lines
Log Message:
*** empty log message ***

File Contents

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