chiark / gitweb /
Switch to using subdirmk for the top-level
[secnet.git] / configure.ac
1 dnl Process this file with autoconf to produce a configure script.
2
3 dnl This file is part of secnet.
4 dnl See README for full list of copyright holders.
5 dnl
6 dnl secnet is free software; you can redistribute it and/or modify it
7 dnl under the terms of the GNU General Public License as published by
8 dnl the Free Software Foundation; either version 3 of the License, or
9 dnl (at your option) any later version.
10 dnl 
11 dnl secnet is distributed in the hope that it will be useful, but
12 dnl WITHOUT ANY WARRANTY; without even the implied warranty of
13 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 dnl General Public License for more details.
15 dnl 
16 dnl You should have received a copy of the GNU General Public License
17 dnl version 3 along with secnet; if not, see
18 dnl https://www.gnu.org/licenses/gpl.html.
19
20 sinclude(ac_prog_cc_no_writeable_strings.m4)
21
22 m4_include(subdirmk/subdirmk.ac)
23
24 AC_INIT(secnet,0.1.18+,secnet@chiark.greenend.org.uk)
25 AC_CONFIG_SRCDIR(secnet.c)
26 AC_CONFIG_HEADER(config.h)
27
28 SUBDIRMK_SUBDIRS([])
29
30 AC_PREREQ(2.50)
31 AC_REVISION($Id: configure.in,v 1.4 2002/09/09 22:05:02 steve Exp $)
32
33 AC_LANG_C
34
35 # If fink is on the path then it is assumed we should use it.
36 AC_PATH_PROG([FINK],[fink])
37 if test "x$FINK" != x; then
38   finkdir=`echo $FINK|sed 's,/[[^/]]*/[[^/]]*$,,'`
39   CPPFLAGS="-I$finkdir/include ${CPPFLAGS}"
40   LDFLAGS="-L$finkdir/lib ${LDFLAGS}"
41 fi
42
43 AC_PROG_MAKE_SET
44 AC_PROG_CC
45 AC_PROG_INSTALL
46 AC_PATH_PROG(RM,rm)
47 AC_STDC_HEADERS
48 AC_CHECK_HEADERS([stdint.h inttypes.h])
49 AC_CHECK_HEADERS([net/if.h net/route.h])
50 AC_CHECK_HEADERS([sys/socket.h])
51 AC_CHECK_HEADERS([linux/if_tun.h], [], [], 
52 [#if HAVE_SYS_SOCKET_H
53 # include <sys/socket.h>
54 #endif
55 ])
56 AC_CHECK_HEADERS([stropts.h sys/sockio.h net/if_tun.h])
57 AC_C_BIGENDIAN
58 AC_CHECK_SIZEOF(unsigned long long)
59 AC_CHECK_SIZEOF(unsigned long)
60 AC_CHECK_SIZEOF(unsigned int)
61 AC_CHECK_SIZEOF(unsigned short)
62 AC_CHECK_SIZEOF(unsigned char)
63 AC_PROG_CC_NO_WRITEABLE_STRINGS(WRITESTRINGS)
64
65 AC_ARG_ENABLE(hacky-parallel,
66   [AS_HELP_STRING([--enable-hacky-parallel],
67                   [parallelise slow cryptography (default is no)])], [
68   case "$enableval" in
69   n|0|no) ;;
70   y|1|yes) CFLAGS="$CFLAGS -DHACKY_PARALLEL" ;;
71   *) ;;
72   esac
73 ])
74
75 AC_DEFUN([REQUIRE_HEADER],[AC_CHECK_HEADER($1,,[AC_MSG_ERROR($1 not found)])])
76
77 dnl the order in which libraries is checked is important
78 dnl eg. adns on Solaris 2.5.1 depends on -lnsl and -lsocket
79 AC_CHECK_LIB(gmp,mpz_init_set_str)
80 AC_CHECK_LIB(gmp2,mpz_init_set_str)
81 AC_CHECK_LIB(gmp,__gmpz_init_set_str)
82 REQUIRE_HEADER([gmp.h])
83 dnl Would love to barf if no gmp was found, but how to test? Requiring the header will do for now.
84 SECNET_C_GETFUNC(inet_ntoa,nsl)
85 AC_CHECK_LIB(socket,socket)
86 SECNET_C_GETFUNC(inet_aton,resolv)
87 AC_CHECK_LIB(adns,adns_init)
88 REQUIRE_HEADER([adns.h])
89
90 AC_MSG_NOTICE([Checking requirements for IPv6 support...])
91 enable_ipv6=true
92 m4_define(NO_IPV6,[enable_ipv6=false])
93 AC_CHECK_DECL(AF_INET6,        [],[NO_IPV6],[#include <netinet/in.h>])
94 AC_CHECK_FUNC(adns_addr2text,  [],[NO_IPV6])
95 if $enable_ipv6; then
96     AC_MSG_NOTICE([Enabling IPv6 support])
97     AC_DEFINE(CONFIG_IPV6, 1,
98               [Define to 1 to use IPv6 support in system and adns])
99 else
100     AC_MSG_WARN([Disabling IPv6 support])
101 fi
102
103 AC_OUTPUT(common.make test-common.make
104           test-example/Makefile stest/Makefile mtest/Makefile,
105           echo timestamp >config.stamp)
106
107 AH_TOP([
108 #ifndef _CONFIG_H
109 #define _CONFIG_H
110 ])
111
112 AH_BOTTOM([
113 /* -*- c -*- */
114
115 /* These used to be in config.h.bot, but are now in configure.in. */
116
117 #ifdef HAVE_INTTYPES_H
118 #include <inttypes.h>
119 #else
120 #ifdef HAVE_STDINT_H
121 #include <stdint.h>
122 #else
123 #if SIZEOF_UNSIGNED_LONG_LONG==8
124 typedef unsigned long long uint64_t;
125 typedef long long int64_t;
126 #elif SIZEOF_UNSIGNED_LONG==8
127 typedef unsigned long uint64_t;
128 typedef long int64_t;
129 #else
130 #error I do not know what to use for a uint64_t.
131 #endif
132
133 /* Give us an unsigned 32-bit data type. */
134 #if SIZEOF_UNSIGNED_LONG==4
135 typedef unsigned long uint32_t;
136 typedef long int32_t;
137 #elif SIZEOF_UNSIGNED_INT==4
138 typedef unsigned int uint32_t;
139 typedef int int32_t;
140 #else
141 #error I do not know what to use for a uint32_t.
142 #endif
143
144 /* An unsigned 16-bit data type. */
145 #if SIZEOF_UNSIGNED_INT==2
146 typedef unsigned int uint16_t;
147 typedef int int16_t;
148 #elif SIZEOF_UNSIGNED_SHORT==2
149 typedef unsigned short uint16_t;
150 typedef short int16_t;
151 #else
152 #error I do not know what to use for a uint16_t.
153 #endif
154
155 /* An unsigned 8-bit data type */
156 #if SIZEOF_UNSIGNED_CHAR==1
157 typedef unsigned char uint8_t;
158 #else
159 #error I do not know what to use for a uint8_t.
160 #endif
161 #endif
162 #endif
163
164 #ifdef __GNUC__
165 #define NORETURN(_x) void _x __attribute__ ((noreturn))
166 #define FORMAT(_a,_b,_c) __attribute__ ((format (_a,_b,_c)))
167 #else
168 #define NORETURN(_x) _x
169 #define FORMAT(_a,_b,_c)
170 #endif
171
172 #endif /* _CONFIG_H */
173 ])