ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/configure.ac
Revision: 1.14
Committed: Wed Oct 15 01:35:45 2003 UTC (20 years, 7 months ago) by pcg
Branch: MAIN
Changes since 1.13: +9 -5 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     "tincd/freebsd";
73 pcg 1.8 Untested combinations are:
74 pcg 1.14 "tincd/netbsd"
75     "tincd/darwin"
76     "tincd/solaris"
77     "tincd/openbsd";
78 pcg 1.8 Broken combinations are:
79 pcg 1.14 "tincd/cygwin";
80 pcg 1.9 The default is to autodetect.
81 pcg 1.8 ])],
82     [
83     IFTYPE=`echo $enableval | sed s%/.*%%`
84     IFSUBTYPE=`echo $enableval | sed s%.*/%%`
85     ]
86     )
87    
88 pcg 1.1 dnl Check and set OS
89 pcg 1.8 AC_MSG_CHECKING(for kernel networking interface type)
90 pcg 1.1
91 pcg 1.8 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=tincd
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 pcg 1.1
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 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 \
147 pcg 1.10 sys/poll.h sys/mman.h netinet/in.h])
148 pcg 1.8 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 pcg 1.1
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 pcg 1.10
170 pcg 1.1 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 pcg 1.11 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 pcg 1.1
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     tinc_OPENSSL
227 pcg 1.13 CXXFLAGS="$CXXFLAGS -I$openssl_include"
228 pcg 1.1 dnl tinc_ZLIB
229    
230 pcg 1.5 AC_ARG_ENABLE(rohc,
231     [AC_HELP_STRING(--enable-rohc, [enable robust header compression (rfc3095).])],
232     [
233     echo
234     echo "**********************************************************************"
235     echo "**********************************************************************"
236     echo "**** --enable-rohc not yet implemented *******************************"
237     echo "**********************************************************************"
238     echo "**** uuh sorry, I am such an ass, but I didn't find any rfc3095 (ROHC)"
239     echo "**** implementation to be used in GPL code on the web."
240     echo "**** so this option is just a fake. Please implement one and send it"
241     echo "**** to me ;)"
242     echo "**********************************************************************"
243     echo "**********************************************************************"
244     echo "**********************************************************************"
245     echo "**********************************************************************"
246     echo
247     ]
248     )
249    
250 pcg 1.4 AC_ARG_ENABLE(icmp,
251 pcg 1.9 [AC_HELP_STRING(--enable-icmp, [enable icmp protocol support (default disabled).])],
252 pcg 1.4 AC_DEFINE_UNQUOTED(ENABLE_ICMP, 1, [ICMP protocol support.])
253     )
254    
255 pcg 1.2 AC_ARG_ENABLE(tcp,
256 pcg 1.9 [AC_HELP_STRING(--enable-tcp, [enable tcp protocol support (default disabled).])],
257 pcg 1.2 AC_DEFINE_UNQUOTED(ENABLE_TCP, 1, [TCP protocol support.])
258     )
259    
260 pcg 1.3 AC_ARG_ENABLE(http-proxy,
261 pcg 1.9 [AC_HELP_STRING(--enable-http-proxy, [enable http proxy connect support (default disabled).])],
262 pcg 1.3 AC_DEFINE_UNQUOTED(ENABLE_HTTP_PROXY, 1, [http proxy connect support.])
263     )
264    
265 pcg 1.9 HMAC=12 dnl see also the AC_HELP_STRING
266 pcg 1.1 AC_ARG_ENABLE(hmac-length,
267 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.])],
268 pcg 1.1 HMAC=$enableval
269     )
270     AC_DEFINE_UNQUOTED(HMACLENGTH, $HMAC, [Size of HMAC in each packet in bytes.])
271    
272     RAND=8 dnl see also the AC_HELP_STRING
273     AC_ARG_ENABLE(rand-length,
274     [AC_HELP_STRING(--enable-rand-length=BYTES, [use BYTES bytes of extra randomness (default 8). Allowed values are 0, 4, 8.])],
275     RAND=$enableval
276     )
277     AC_DEFINE_UNQUOTED(RAND_SIZE, $RAND, [Add this many bytes of randomness to each packet.])
278    
279     MTU=1500 dnl see also the AC_HELP_STRING
280     AC_ARG_ENABLE(mtu,
281     [AC_HELP_STRING(--enable-max-mtu=BYTES, enable mtu sizes upto BYTES bytes (default 1500). Use 9100 for jumbogram support.)],
282     MTU=$enableval
283     )
284     AC_DEFINE_UNQUOTED(MAX_MTU, $MTU + 14, [Maximum MTU supported.])
285    
286     COMPRESS=1
287     AC_ARG_ENABLE(compression,
288     [AC_HELP_STRING(--disable-compression, Disable compression support.)],
289     if test "x$enableval" = xno; then
290     COMPRESS=0
291     fi
292     )
293     AC_DEFINE_UNQUOTED(ENABLE_COMPRESSION, $COMPRESS, [Enable compression support.])
294    
295     CIPHER=bf_cbc
296     AC_ARG_ENABLE(cipher,
297     [AC_HELP_STRING(--enable-cipher, [
298     Select the symmetric cipher (default "bf"). Must be one of
299 pcg 1.9 "bf" (blowfish), "aes-128" (rijndael), "aes-192" or "aes-256".])],
300 pcg 1.1 if test "x$enableval" = xbf ; then CIPHER=bf_cbc ; fi
301     if test "x$enableval" = xaes-128; then CIPHER=aes_128_cbc; fi
302     if test "x$enableval" = xaes-192; then CIPHER=aes_192_cbc; fi
303     if test "x$enableval" = xaes-256; then CIPHER=aes_256_cbc; fi
304     )
305     AC_DEFINE_UNQUOTED(ENABLE_CIPHER, EVP_${CIPHER}, [Select the symmetric cipher to use.])
306    
307     DIGEST=sha1
308     AC_ARG_ENABLE(digest,
309     [AC_HELP_STRING(--enable-digest, [
310     Select the digets algorithm to use (default "sha1"). Must be one of
311 pcg 1.9 "sha1", "ripemd160", "md5" or "md4" (insecure).])],
312 pcg 1.1 if test "x$enableval" = xsha1 ; then DIGEST=sha1 ; fi
313     if test "x$enableval" = xripemd160; then DIGEST=ripemd160; fi
314 pcg 1.9 if test "x$enableval" = xmd5 ; then DIGEST=md5 ; fi
315 pcg 1.1 if test "x$enableval" = xmd4 ; then DIGEST=md4 ; fi
316     )
317     AC_DEFINE_UNQUOTED(ENABLE_DIGEST, EVP_${DIGEST}, [Select the digest algorithm to use.])
318    
319     if $CXX -v --help 2>&1 | grep -q fno-rtti; then
320     CXXFLAGS="$CXXFLAGS -fno-rtti"
321     fi
322    
323     if $CXX -v --help 2>&1 | grep -q fexceptions; then
324     CXXFLAGS="$CXXFLAGS -fno-exceptions"
325     fi
326    
327     if $CXX -v --help 2>&1 | grep -q ffunction-sections; then
328     CXXFLAGS="$CXXFLAGS -ffunction-sections"
329     fi
330    
331     if $LD -v --help 2>&1 | grep -q gc-sections; then
332     LDFLAGS="$LDFLAGS -Wl,--gc-sections"
333     fi
334    
335     AC_CONFIG_COMMANDS_POST([
336    
337     echo
338     echo "***"
339     echo "*** Configuration Summary"
340     echo "***"
341 pcg 1.8 echo "*** Kernel Iface: $IFTYPE/$IFSUBTYPE"
342 pcg 1.1 echo "*** Cipher used: $CIPHER"
343     echo "*** Digest used: $DIGEST"
344     echo "*** HMAC length: $HMAC"
345     echo "*** RAND used: $RAND"
346     echo "*** Max. MTU: $MTU"
347     echo "*** Compression: $COMPRESS"
348     echo "***"
349 pcg 1.8
350     if test "x$DIGEST" = xmd4; then
351     echo "*** WARNING"
352     echo "*** The digest you have chosen ($DIGEST) is known to be insecure"
353     echo "***"
354     fi
355    
356 pcg 1.1 echo
357    
358     ])
359    
360     AC_SUBST(INCLUDES)
361    
362     AC_OUTPUT(Makefile po/Makefile.in
363     src/Makefile
364     doc/Makefile
365     lib/Makefile
366     m4/Makefile
367     )