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