]> git.ipfire.org Git - thirdparty/strongswan.git/blame - configure.in
Added a CIDR notation based host constructor
[thirdparty/strongswan.git] / configure.in
CommitLineData
f2c2d395
MW
1dnl configure.in for linux strongSwan
2dnl Copyright (C) 2006 Martin Willi
3dnl Hochschule fuer Technik Rapperswil
8b3b4a24 4dnl
f2c2d395
MW
5dnl This program is free software; you can redistribute it and/or modify it
6dnl under the terms of the GNU General Public License as published by the
7dnl Free Software Foundation; either version 2 of the License, or (at your
8dnl option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
8b3b4a24 9dnl
f2c2d395
MW
10dnl This program is distributed in the hope that it will be useful, but
11dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13dnl for more details.
14
15dnl ===========================
16dnl initialize & set some vars
17dnl ===========================
18
4aab8927 19AC_INIT(strongSwan,4.5.1dr5)
5e5f0bd4 20AM_INIT_AUTOMAKE(tar-ustar)
e455ae13 21AC_CONFIG_MACRO_DIR([m4/config])
a47486b5 22PKG_PROG_PKG_CONFIG
f2c2d395 23
db26d00e
MW
24dnl =================================
25dnl check --enable-xxx & --with-xxx
26dnl =================================
27
b7b56533
MW
28m4_include(m4/macros/with.m4)
29
30ARG_WITH_SUBST([default-pkcs11], [/usr/lib/opensc-pkcs11.so], [set the default PKCS11 library])
31ARG_WITH_SUBST([random-device], [/dev/random], [set the device to read real random data from])
32ARG_WITH_SUBST([urandom-device], [/dev/urandom], [set the device to read pseudo random data from])
33ARG_WITH_SUBST([strongswan-conf], [${sysconfdir}/strongswan.conf], [set the strongswan.conf file location])
34ARG_WITH_SUBST([resolv-conf], [${sysconfdir}/resolv.conf], [set the file to use in DNS handler plugin])
35ARG_WITH_SUBST([piddir], [/var/run], [set path for PID and UNIX socket files])
36ARG_WITH_SUBST([ipsecdir], [${libexecdir%/}/ipsec], [set installation path for ipsec tools])
37ARG_WITH_SUBST([plugindir], [${ipsecdir%/}/plugins], [set the installation path of plugins])
85af7a89 38ARG_WITH_SUBST([nm-ca-dir], [/usr/share/ca-certificates], [directory the NM plugin uses to look up trusted root certificates])
b7b56533
MW
39ARG_WITH_SUBST([linux-headers], [\${top_srcdir}/src/include], [set directory of linux header files to use])
40ARG_WITH_SUBST([routing-table], [220], [set routing table to use for IPsec routes])
41ARG_WITH_SUBST([routing-table-prio], [220], [set priority for IPsec routing table])
42
946be4d3 43ARG_WITH_SET([capabilities], [no], [set capability dropping library. Currently supported values are "libcap" and "native"])
3e35a6e7 44ARG_WITH_SET([mpz_powm_sec], [yes], [use the more side-channel resistant mpz_powm_sec in libgmp, if available])
db26d00e 45
195307b5 46AC_ARG_WITH(
6b9290ff
MW
47 [xauth-module],
48 AS_HELP_STRING([--with-xauth-module=lib],[set the path to the XAUTH module]),
49 [AC_DEFINE_UNQUOTED(XAUTH_DEFAULT_LIB, "$withval")],
195307b5
AS
50)
51
25b12c69
MW
52AC_ARG_WITH(
53 [user],
c7e0f07c 54 AS_HELP_STRING([--with-user=user],[change user of the daemons to "user" after startup (default is "root").]),
25b12c69
MW
55 [AC_DEFINE_UNQUOTED(IPSEC_USER, "$withval") AC_SUBST(ipsecuser, "$withval")],
56 [AC_SUBST(ipsecuser, "root")]
57)
58
59AC_ARG_WITH(
60 [group],
c7e0f07c 61 AS_HELP_STRING([--with-group=group],[change group of the daemons to "group" after startup (default is "root").]),
25b12c69
MW
62 [AC_DEFINE_UNQUOTED(IPSEC_GROUP, "$withval") AC_SUBST(ipsecgroup, "$withval")],
63 [AC_SUBST(ipsecgroup, "root")]
6874bf69
MW
64)
65
b803bc82
MW
66m4_include(m4/macros/enable-disable.m4)
67
68ARG_ENABL_SET([curl], [enable CURL fetcher plugin to fetch files via libcurl. Requires libcurl.])
69ARG_ENABL_SET([ldap], [enable LDAP fetching plugin to fetch files via libldap. Requires openLDAP.])
70ARG_DISBL_SET([aes], [disable AES software implementation plugin.])
71ARG_DISBL_SET([des], [disable DES/3DES software implementation plugin.])
72ARG_ENABL_SET([blowfish], [enable Blowfish software implementation plugin.])
73ARG_ENABL_SET([md4], [enable MD4 software implementation plugin.])
74ARG_DISBL_SET([md5], [disable MD5 software implementation plugin.])
75ARG_DISBL_SET([sha1], [disable SHA1 software implementation plugin.])
76ARG_DISBL_SET([sha2], [disable SHA256/SHA384/SHA512 software implementation plugin.])
77ARG_DISBL_SET([fips-prf], [disable FIPS PRF software implementation plugin.])
78ARG_DISBL_SET([gmp], [disable GNU MP (libgmp) based crypto implementation plugin.])
79ARG_DISBL_SET([random], [disable RNG implementation on top of /dev/(u)random.])
80ARG_DISBL_SET([x509], [disable X509 certificate implementation plugin.])
c2e5cee4 81ARG_DISBL_SET([revocation], [disable X509 CRL/OCSP revocation check plugin.])
b803bc82
MW
82ARG_DISBL_SET([pubkey], [disable RAW public key support plugin.])
83ARG_DISBL_SET([pkcs1], [disable PKCS1 key decoding plugin.])
84ARG_DISBL_SET([pgp], [disable PGP key decoding plugin.])
85ARG_DISBL_SET([dnskey], [disable DNS RR key decoding plugin.])
86ARG_DISBL_SET([pem], [disable PEM decoding plugin.])
87ARG_DISBL_SET([hmac], [disable HMAC crypto implementation plugin.])
88ARG_DISBL_SET([xcbc], [disable xcbc crypto implementation plugin.])
71c87e34 89ARG_ENABL_SET([af-alg], [enable AF_ALG crypto interface to Linux Crypto API.])
b803bc82
MW
90ARG_ENABL_SET([test-vectors], [enable plugin providing crypto test vectors.])
91ARG_ENABL_SET([mysql], [enable MySQL database support. Requires libmysqlclient_r.])
92ARG_ENABL_SET([sqlite], [enable SQLite database support. Requires libsqlite3.])
93ARG_DISBL_SET([stroke], [disable charons stroke (pluto compatibility) configuration backend.])
94ARG_ENABL_SET([medsrv], [enable mediation server web frontend and daemon plugin.])
95ARG_ENABL_SET([medcli], [enable mediation client configuration database plugin.])
96ARG_ENABL_SET([smp], [enable SMP configuration and control interface. Requires libxml.])
97ARG_ENABL_SET([sql], [enable SQL database configuration backend.])
98ARG_ENABL_SET([smartcard], [enable smartcard support.])
99ARG_ENABL_SET([cisco-quirks], [enable support of Cisco VPN client.])
100ARG_ENABL_SET([leak-detective], [enable malloc hooks to find memory leaks.])
101ARG_ENABL_SET([lock-profiler], [enable lock/mutex profiling code.])
102ARG_ENABL_SET([unit-tests], [enable unit tests on IKEv2 daemon startup.])
b76b867c 103ARG_ENABL_SET([load-tester], [enable load testing plugin for IKEv2 daemon.])
68eb610d 104ARG_ENABL_SET([eap-sim], [enable SIM authentication module for EAP.])
b803bc82 105ARG_ENABL_SET([eap-sim-file], [enable EAP-SIM backend based on a triplet file.])
d2c35874 106ARG_ENABL_SET([eap-simaka-sql], [enable EAP-SIM/AKA backend based on a triplet/quintuplet SQL database.])
edcb2dd3
MW
107ARG_ENABL_SET([eap-simaka-pseudonym], [enable EAP-SIM/AKA pseudonym storage plugin.])
108ARG_ENABL_SET([eap-simaka-reauth], [enable EAP-SIM/AKA reauthentication data storage plugin.])
b803bc82 109ARG_ENABL_SET([eap-identity], [enable EAP module providing EAP-Identity helper.])
68eb610d
AS
110ARG_ENABL_SET([eap-md5], [enable EAP MD5 (CHAP) authentication module.])
111ARG_ENABL_SET([eap-gtc], [enable PAM based EAP GTC authentication module.])
b803bc82 112ARG_ENABL_SET([eap-aka], [enable EAP AKA authentication module.])
47208157 113ARG_ENABL_SET([eap-aka-3gpp2], [enable EAP AKA backend implementing 3GPP2 algorithms in software. Requires libgmp.])
68eb610d
AS
114ARG_ENABL_SET([eap-mschapv2], [enable EAP MS-CHAPv2 authentication module.])
115ARG_ENABL_SET([eap-tls], [enable EAP TLS authentication module.])
116ARG_ENABL_SET([eap-ttls], [enable EAP TTLS authentication module.])
d93e2e54 117ARG_ENABL_SET([eap-tnc], [enable EAP TNC trusted network connect module.])
68eb610d 118ARG_ENABL_SET([eap-radius], [enable RADIUS proxy authentication module.])
8dcc56dc
AS
119ARG_ENABL_SET([tnc-imc], [enable TNC IMC module.])
120ARG_ENABL_SET([tnc-imv], [enable TNC IMV module.])
4e8e74fc 121ARG_ENABL_SET([tnccs-11], [enable TNCCS 1.1 protocol module.])
6d0e9cf0 122ARG_ENABL_SET([tnccs-20], [enable TNCCS 2.0 protocol module.])
b803bc82
MW
123ARG_DISBL_SET([kernel-netlink], [disable the netlink kernel interface.])
124ARG_ENABL_SET([kernel-pfkey], [enable the PF_KEY kernel interface.])
125ARG_ENABL_SET([kernel-pfroute], [enable the PF_ROUTE kernel interface.])
126ARG_ENABL_SET([kernel-klips], [enable the KLIPS kernel interface.])
dab05604
MW
127ARG_DISBL_SET([socket-default], [disable default socket implementation for charon.])
128ARG_ENABL_SET([socket-raw], [enable raw socket implementation of charon, enforced if pluto is enabled])
9ed1bb48 129ARG_ENABL_SET([socket-dynamic], [enable dynamic socket implementation for charon])
0d7b48a3 130ARG_ENABL_SET([farp], [enable ARP faking plugin that responds to ARP requests to peers virtual IP])
b803bc82
MW
131ARG_ENABL_SET([nat-transport], [enable NAT traversal with IPsec transport mode in pluto.])
132ARG_DISBL_SET([vendor-id], [disable the sending of the strongSwan vendor ID in pluto.])
133ARG_DISBL_SET([xauth-vid], [disable the sending of the XAUTH vendor ID.])
134ARG_ENABL_SET([dumm], [enable the DUMM UML test framework.])
135ARG_ENABL_SET([fast], [enable libfast (FastCGI Application Server w/ templates.])
136ARG_ENABL_SET([manager], [enable web management console (proof of concept).])
137ARG_ENABL_SET([mediation], [enable IKEv2 Mediation Extension.])
138ARG_ENABL_SET([integrity-test], [enable integrity testing of libstrongswan and plugins.])
3de510ca 139ARG_DISBL_SET([load-warning], [disable the charon/pluto plugin load option warning in starter.])
b803bc82 140ARG_DISBL_SET([pluto], [disable the IKEv1 keying daemon pluto.])
26ec52a4 141ARG_DISBL_SET([xauth], [disable xauth plugin.])
b803bc82
MW
142ARG_DISBL_SET([threads], [disable the use of threads in pluto. Charon always uses threads.])
143ARG_DISBL_SET([charon], [disable the IKEv2 keying daemon charon.])
144ARG_DISBL_SET([tools], [disable additional utilities (openac, scepclient and pki).])
145ARG_DISBL_SET([scripts], [disable additional utilities (found in directory scripts).])
146ARG_DISBL_SET([updown], [disable updown firewall script plugin.])
147ARG_DISBL_SET([attr], [disable strongswan.conf based configuration attribute plugin.])
24779482 148ARG_ENABL_SET([attr-sql], [enable SQL based configuration attribute plugin.])
beaa048e 149ARG_ENABL_SET([dhcp], [enable DHCP based attribute provider plugin.])
4819ec6a 150ARG_DISBL_SET([resolve], [disable resolve DNS handler plugin.])
b803bc82
MW
151ARG_ENABL_SET([padlock], [enables VIA Padlock crypto plugin.])
152ARG_ENABL_SET([openssl], [enables the OpenSSL crypto plugin.])
153ARG_ENABL_SET([gcrypt], [enables the libgcrypt plugin.])
154ARG_ENABL_SET([agent], [enables the ssh-agent signing plugin.])
6e862e21 155ARG_ENABL_SET([pkcs11], [enables the PKCS11 token support plugin.])
272f0e1a 156ARG_ENABL_SET([ctr], [enables the Counter Mode wrapper crypto plugin.])
80a93a13 157ARG_ENABL_SET([ccm], [enables the CCM AEAD wrapper crypto plugin.])
1a649810 158ARG_ENABL_SET([gcm], [enables the GCM AEAD wrapper crypto plugin.])
5f9e62c5 159ARG_ENABL_SET([addrblock], [enables RFC 3779 address block constraint support.])
b803bc82 160ARG_ENABL_SET([uci], [enable OpenWRT UCI configuration plugin.])
55699f03 161ARG_ENABL_SET([android], [enable Android specific plugin.])
f79161e8 162ARG_ENABL_SET([maemo], [enable Maemo specific plugin.])
b803bc82 163ARG_ENABL_SET([nm], [enable NetworkManager plugin.])
e67f5136 164ARG_ENABL_SET([ha], [enable high availability cluster plugin.])
30cd31fb 165ARG_ENABL_SET([led], [enable plugin to control LEDs on IKEv2 activity using the Linux kernel LED subsystem.])
b803bc82 166ARG_ENABL_SET([vstr], [enforce using the Vstr string library to replace glibc-like printf hooks.])
3372ad14 167ARG_ENABL_SET([monolithic], [build monolithic version of libstrongswan that includes all enabled plugins. Similarly, the plugins of charon are assembled in libcharon.])
bf45d6dd 168
be0a03be
MW
169dnl =========================
170dnl set up compiler and flags
171dnl =========================
172
173if test -z "$CFLAGS"; then
f5410905 174 CFLAGS="-g -O2 -Wall -Wno-format -Wno-pointer-sign -Wno-strict-aliasing"
be0a03be
MW
175fi
176AC_PROG_CC
f5410905 177AC_LIB_PREFIX
be0a03be
MW
178AC_C_BIGENDIAN
179
f2c2d395
MW
180dnl =========================
181dnl check required programs
182dnl =========================
183
184AC_PROG_INSTALL
185AC_PROG_LIBTOOL
7d2b06da 186AC_PROG_EGREP
69fc7820 187AC_PROG_AWK
f2c2d395
MW
188AC_PROG_LEX
189AC_PROG_YACC
298b06c2 190AC_PATH_PROG([PERL], [perl], [], [$PATH:/bin:/usr/bin:/usr/local/bin])
69fc7820
TB
191AC_PATH_PROG([GPERF], [gperf], [], [$PATH:/bin:/usr/bin:/usr/local/bin])
192
193dnl because gperf is not needed by end-users we just report it but do not abort on failure
194AC_MSG_CHECKING([gperf version >= 3.0.0])
195if test -x "$GPERF"; then
196 if test "`$GPERF --version | $AWK -F' ' '/^GNU gperf/ { print $3 }' | $AWK -F. '{ print $1 }'`" -ge "3"; then
197 AC_MSG_RESULT([yes])
198 else
199 AC_MSG_RESULT([no])
200 fi
201else
202 AC_MSG_RESULT([not found])
203fi
f2c2d395 204
7d2b06da
TB
205dnl translate user/group to numercial ids
206AC_MSG_CHECKING([for uid of user "$ipsecuser"])
207ipsecuid=`id -u $ipsecuser 2>/dev/null`
208if test -n "$ipsecuid"; then
209 AC_MSG_RESULT([$ipsecuid])
210 AC_SUBST(ipsecuid)
211else
212 AC_MSG_ERROR([not found])
213fi
214AC_MSG_CHECKING([for gid of group "$ipsecgroup"])
6ff7ab85 215ipsecgid=`$EGREP "^$ipsecgroup:" /etc/group | $AWK -F: '{ print $3 }'`
7d2b06da
TB
216if test -n "$ipsecgid"; then
217 AC_MSG_RESULT([$ipsecgid])
218 AC_SUBST(ipsecgid)
219else
220 AC_MSG_ERROR([not found])
221fi
222
6b9290ff
MW
223dnl =========================
224dnl dependency calculation
225dnl =========================
f2c2d395 226
47208157 227if test x$eap_aka_3gpp2 = xtrue; then
a998276a 228 gmp=true;
47208157
MW
229fi
230
231if test x$eap_aka = xtrue; then
a998276a 232 fips_prf=true;
f8330d03 233 simaka=true;
a998276a
MW
234fi
235
236if test x$eap_sim = xtrue; then
237 fips_prf=true;
f8330d03 238 simaka=true;
a998276a
MW
239fi
240
26eb9b2d 241if test x$eap_tls = xtrue -o x$eap_ttls = xtrue; then
0f82a470
MW
242 tls=true;
243fi
244
a998276a 245if test x$fips_prf = xtrue; then
40f130da
MW
246 if test x$openssl = xfalse; then
247 sha1=true;
248 fi
a998276a
MW
249fi
250
6b9290ff
MW
251if test x$smp = xtrue; then
252 xml=true
253fi
254
255if test x$manager = xtrue; then
256 fast=true
257fi
258
782db7ed 259if test x$medsrv = xtrue; then
a7f79ee9 260 mediation=true
9529fb68 261 fast=true
782db7ed
MW
262fi
263
264if test x$medcli = xtrue; then
a7f79ee9 265 mediation=true
782db7ed
MW
266fi
267
dab05604
MW
268if test x$pluto = xtrue; then
269 if test x$socket_raw = xfalse; then
9ed1bb48 270 AC_MSG_NOTICE([Enforcing --enable-socket-raw, as pluto is enabled])
dab05604 271 socket_raw=true
0fa7d1ab
MW
272 if test x$socket_default_given = xfalse; then
273 socket_default=false
274 fi
dab05604
MW
275 fi
276fi
277
a9f56adb 278dnl ===========================================
6b9290ff 279dnl check required libraries and header files
a9f56adb
TB
280dnl ===========================================
281
282AC_HEADER_STDBOOL
8b6a5ce5 283AC_FUNC_ALLOCA
6b9290ff 284
3974b2fb
TB
285dnl libraries needed on some platforms but not on others
286dnl ====================================================
ea7e89c7 287saved_LIBS=$LIBS
3974b2fb 288
26965b4e 289dnl FreeBSD and Mac OS X have dlopen integrated in libc, Linux needs libdl
ea7e89c7
TB
290LIBS=""
291AC_SEARCH_LIBS(dlopen, dl, [DLLIB=$LIBS])
ea7e89c7
TB
292AC_SUBST(DLLIB)
293
3974b2fb
TB
294dnl glibc's backtrace() can be replicated on FreeBSD with libexecinfo
295LIBS=""
296AC_SEARCH_LIBS(backtrace, execinfo, [BTLIB=$LIBS])
297AC_CHECK_FUNCS(backtrace)
298AC_SUBST(BTLIB)
299
26965b4e
TB
300dnl OpenSolaris needs libsocket and libnsl for socket()
301LIBS=""
302AC_SEARCH_LIBS(socket, socket, [SOCKLIB=$LIBS],
303 [AC_CHECK_LIB(nsl, socket, [SOCKLIB="-lsocket -lnsl"], [], [-lsocket])]
304)
305AC_SUBST(SOCKLIB)
306
3f310c0d
MW
307dnl FreeBSD has clock_gettime in libc, Linux needs librt
308LIBS=""
309AC_SEARCH_LIBS(clock_gettime, rt, [RTLIB=$LIBS])
310AC_CHECK_FUNCS(clock_gettime)
311AC_SUBST(RTLIB)
312
070ac5b0
TB
313dnl Android has pthread_* functions in bionic (libc), others need libpthread
314LIBS=""
315AC_SEARCH_LIBS(pthread_create, pthread, [PTHREADLIB=$LIBS])
316AC_SUBST(PTHREADLIB)
317
3974b2fb
TB
318LIBS=$saved_LIBS
319dnl ======================
320
4f734a55
MW
321AC_MSG_CHECKING(for dladdr)
322AC_TRY_COMPILE(
323 [#define _GNU_SOURCE
324 #include <dlfcn.h>],
325 [Dl_info* info = 0;
326 dladdr(0, info);],
327 [AC_MSG_RESULT([yes]); AC_DEFINE([HAVE_DLADDR])],
328 [AC_MSG_RESULT([no])]
329)
330
3d5818ec
MW
331dnl check if pthread_condattr_setclock(CLOCK_MONOTONE) is supported
332saved_LIBS=$LIBS
070ac5b0 333LIBS=$PTHREADLIB
3d5818ec
MW
334AC_MSG_CHECKING([for pthread_condattr_setclock(CLOCK_MONOTONE)])
335AC_TRY_RUN(
336 [#include <pthread.h>
337 int main() { pthread_condattr_t attr;
338 pthread_condattr_init(&attr);
339 return pthread_condattr_setclock(&attr, CLOCK_MONOTONIC);}],
340 [AC_MSG_RESULT([yes]); AC_DEFINE([HAVE_CONDATTR_CLOCK_MONOTONIC])],
5269150e
MW
341 [AC_MSG_RESULT([no])],
342 dnl Check existence of pthread_condattr_setclock if cross-compiling
343 [AC_MSG_RESULT([unknown]);
344 AC_CHECK_FUNCS(pthread_condattr_setclock,
345 [AC_DEFINE([HAVE_CONDATTR_CLOCK_MONOTONIC])]
346 )]
3d5818ec 347)
866dc013
TB
348dnl check if we actually are able to configure attributes on cond vars
349AC_CHECK_FUNCS(pthread_condattr_init)
b2944d71
TB
350dnl instead of pthread_condattr_setclock Android has this function
351AC_CHECK_FUNCS(pthread_cond_timedwait_monotonic)
85202e87
TB
352dnl check if we can cancel threads
353AC_CHECK_FUNCS(pthread_cancel)
f36143b0
TB
354dnl check if native rwlocks are available
355AC_CHECK_FUNCS(pthread_rwlock_init)
3d5818ec
MW
356LIBS=$saved_LIBS
357
65ea37ab 358AC_CHECK_FUNCS(prctl)
65ea37ab 359
4f990932
MW
360AC_CHECK_FUNCS(mallinfo)
361
e580e0a9 362AC_CHECK_HEADERS(sys/sockio.h)
1e7b4b00 363AC_CHECK_HEADERS(net/pfkeyv2.h netipsec/ipsec.h netinet6/ipsec.h linux/udp.h)
ea7e89c7
TB
364
365AC_CHECK_MEMBERS([struct sockaddr.sa_len], [], [],
366[
367 #include <sys/types.h>
368 #include <sys/socket.h>
369])
370
371AC_CHECK_MEMBERS([struct sadb_x_policy.sadb_x_policy_priority], [], [],
372[
373 #include <sys/types.h>
374 #ifdef HAVE_NET_PFKEYV2_H
375 #include <net/pfkeyv2.h>
376 #else
377 #include <stdint.h>
378 #include <linux/pfkeyv2.h>
379 #endif
380])
e696757c 381
cb186f99
TB
382AC_MSG_CHECKING([for in6addr_any])
383AC_TRY_COMPILE(
384 [#include <sys/types.h>
385 #include <sys/socket.h>
386 #include <netinet/in.h>],
387 [struct in6_addr in6;
388 in6 = in6addr_any;],
389 [AC_MSG_RESULT([yes]); AC_DEFINE([HAVE_IN6ADDR_ANY])],
390 [AC_MSG_RESULT([no])]
391)
392
393AC_MSG_CHECKING([for in6_pktinfo])
394AC_TRY_COMPILE(
395 [#define _GNU_SOURCE
396 #include <sys/types.h>
397 #include <sys/socket.h>
398 #include <netinet/in.h>],
399 [struct in6_pktinfo pi;
400 if (pi.ipi6_ifindex)
401 {
402 return 0;
403 }],
404 [AC_MSG_RESULT([yes]); AC_DEFINE([HAVE_IN6_PKTINFO])],
405 [AC_MSG_RESULT([no])]
406)
407
617e59b7
TB
408AC_MSG_CHECKING([for IPSEC_MODE_BEET])
409AC_TRY_COMPILE(
a6ae2a14
TB
410 [#include <sys/types.h>
411 #ifdef HAVE_NETIPSEC_IPSEC_H
617e59b7
TB
412 #include <netipsec/ipsec.h>
413 #elif defined(HAVE_NETINET6_IPSEC_H)
414 #include <netinet6/ipsec.h>
415 #else
a6ae2a14 416 #include <stdint.h>
617e59b7
TB
417 #include <linux/ipsec.h>
418 #endif],
419 [int mode = IPSEC_MODE_BEET;
420 return mode;],
421 [AC_MSG_RESULT([yes]); AC_DEFINE([HAVE_IPSEC_MODE_BEET])],
422 [AC_MSG_RESULT([no])]
423)
424
425AC_MSG_CHECKING([for IPSEC_DIR_FWD])
426AC_TRY_COMPILE(
a6ae2a14
TB
427 [#include <sys/types.h>
428 #ifdef HAVE_NETIPSEC_IPSEC_H
617e59b7
TB
429 #include <netipsec/ipsec.h>
430 #elif defined(HAVE_NETINET6_IPSEC_H)
431 #include <netinet6/ipsec.h>
432 #else
a6ae2a14 433 #include <stdint.h>
617e59b7
TB
434 #include <linux/ipsec.h>
435 #endif],
436 [int dir = IPSEC_DIR_FWD;
437 return dir;],
438 [AC_MSG_RESULT([yes]); AC_DEFINE([HAVE_IPSEC_DIR_FWD])],
439 [AC_MSG_RESULT([no])]
440)
441
efd0fe21
MW
442AC_MSG_CHECKING([for gcc atomic operations])
443AC_TRY_RUN(
444[
445 int main() {
446 volatile int ref = 1;
447 __sync_fetch_and_add (&ref, 1);
448 __sync_sub_and_fetch (&ref, 1);
449 /* Make sure test fails if operations are not supported */
450 __sync_val_compare_and_swap(&ref, 1, 0);
451 return ref;
452 }
453],
454[AC_MSG_RESULT([yes]); AC_DEFINE(HAVE_GCC_ATOMIC_OPERATIONS)],
bb835afa 455[AC_MSG_RESULT([no])],
efd0fe21
MW
456[AC_MSG_RESULT([no])])
457
10bc5d96
MW
458dnl check for the new register_printf_specifier function with len argument,
459dnl or the deprecated register_printf_function without
d25ce370 460AC_CHECK_FUNC(
f6bbcec3 461 [register_printf_specifier],
f6bbcec3
MW
462 [AC_DEFINE(HAVE_PRINTF_SPECIFIER)],
463 [AC_CHECK_FUNC(
f6bbcec3
MW
464 [register_printf_function],
465 [AC_DEFINE(HAVE_PRINTF_FUNCTION)],
466 [
467 AC_MSG_NOTICE([printf does not support custom format specifiers!])
468 vstr=true
469 ]
470 )]
bf45d6dd
TB
471)
472
473if test x$vstr = xtrue; then
474 AC_HAVE_LIBRARY([vstr],[LIBS="$LIBS"],[AC_MSG_ERROR([Vstr string library not found])])
475 AC_DEFINE(USE_VSTR)
476fi
d25ce370 477
6b9290ff 478if test x$gmp = xtrue; then
3e35a6e7
MW
479 saved_LIBS=$LIBS
480 AC_HAVE_LIBRARY([gmp],,[AC_MSG_ERROR([GNU Multi Precision library gmp not found])])
481 AC_MSG_CHECKING([mpz_powm_sec])
482 if test x$mpz_powm_sec = xyes; then
483 AC_TRY_COMPILE(
484 [#include "gmp.h"],
485 [
486 void *x = mpz_powm_sec;
487 ],
488 [AC_MSG_RESULT([yes]); AC_DEFINE(HAVE_MPZ_POWM_SEC)], [AC_MSG_RESULT([no])]
489 )
490 else
491 AC_MSG_RESULT([disabled])
492 fi
493 LIBS=$saved_LIBS
6b9290ff
MW
494 AC_MSG_CHECKING([gmp.h version >= 4.1.4])
495 AC_TRY_COMPILE(
496 [#include "gmp.h"],
497 [
498 #if (__GNU_MP_VERSION*100 + __GNU_MP_VERSION_MINOR*10 + __GNU_MP_VERSION_PATCHLEVEL) < 414
499 #error bad gmp
500 #endif
8b3b4a24 501 ],
6b9290ff
MW
502 [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]); AC_MSG_ERROR([No usable gmp.h found!])]
503 )
f2c2d395 504fi
6b9290ff
MW
505
506if test x$ldap = xtrue; then
507 AC_HAVE_LIBRARY([ldap],[LIBS="$LIBS"],[AC_MSG_ERROR([LDAP library ldap not found])])
508 AC_HAVE_LIBRARY([lber],[LIBS="$LIBS"],[AC_MSG_ERROR([LDAP library lber not found])])
509 AC_CHECK_HEADER([ldap.h],,[AC_MSG_ERROR([LDAP header ldap.h not found!])])
f2c2d395
MW
510fi
511
6b9290ff
MW
512if test x$curl = xtrue; then
513 AC_HAVE_LIBRARY([curl],[LIBS="$LIBS"],[AC_MSG_ERROR([CURL library curl not found])])
514 AC_CHECK_HEADER([curl/curl.h],,[AC_MSG_ERROR([CURL header curl/curl.h not found!])])
515fi
516
517if test x$xml = xtrue; then
a47486b5 518 PKG_CHECK_MODULES(xml, [libxml-2.0])
f2d6355e
MW
519 AC_SUBST(xml_CFLAGS)
520 AC_SUBST(xml_LIBS)
521fi
522
a47486b5
MW
523if test x$dumm = xtrue; then
524 PKG_CHECK_MODULES(gtk, [gtk+-2.0 vte])
525 AC_SUBST(gtk_CFLAGS)
526 AC_SUBST(gtk_LIBS)
d2e9cbc9
TB
527 AC_CHECK_PROGS(RUBY, ruby)
528 AC_MSG_CHECKING([for Ruby header files])
529 if test -n "$RUBY"; then
530 RUBYDIR=`($RUBY -rmkmf -e 'print Config::CONFIG[["archdir"]] || $archdir') 2>/dev/null`
531 if test -n "$RUBYDIR"; then
532 dirs="$RUBYDIR"
533 RUBYINCLUDE=none
534 for i in $dirs; do
535 if test -r $i/ruby.h; then
536 AC_MSG_RESULT([$i])
537 RUBYINCLUDE="-I$i"
538 break;
539 fi
540 done
541 if test x"$RUBYINCLUDE" = xnone; then
542 AC_MSG_ERROR([ruby.h not found])
543 fi
544 AC_SUBST(RUBYINCLUDE)
545 else
546 AC_MSG_ERROR([unable to determine ruby configuration])
547 fi
548 else
549 AC_MSG_ERROR([don't know how to run ruby])
550 fi
a47486b5
MW
551fi
552
6b9290ff
MW
553if test x$fast = xtrue; then
554 AC_HAVE_LIBRARY([neo_cgi],[LIBS="$LIBS"],[AC_MSG_ERROR([ClearSilver library neo_cgi not found!])])
555 AC_HAVE_LIBRARY([neo_utl],[LIBS="$LIBS"],[AC_MSG_ERROR([ClearSilver library neo_utl not found!])])
556 AC_HAVE_LIBRARY([z],[LIBS="$LIBS"],[AC_MSG_ERROR([ClearSilver dependency zlib not found!])])
557dnl autoconf does not like CamelCase!? How to fix this?
558dnl AC_CHECK_HEADER([ClearSilver/ClearSilver.h],,[AC_MSG_ERROR([ClearSilver header file ClearSilver/ClearSilver.h not found!])])
8b3b4a24 559
6b9290ff
MW
560 AC_HAVE_LIBRARY([fcgi],[LIBS="$LIBS"],[AC_MSG_ERROR([FastCGI library fcgi not found!])])
561 AC_CHECK_HEADER([fcgiapp.h],,[AC_MSG_ERROR([FastCGI header file fcgiapp.h not found!])])
a84fb01b
MW
562fi
563
6b9290ff 564if test x$mysql = xtrue; then
84074347
MW
565 AC_PATH_PROG([MYSQLCONFIG], [mysql_config], [], [$PATH:/bin:/usr/bin:/usr/local/bin])
566 if test x$MYSQLCONFIG = x; then
567 AC_MSG_ERROR([mysql_config not found!])
568 fi
569 AC_SUBST(MYSQLLIB, `$MYSQLCONFIG --libs_r`)
570 AC_SUBST(MYSQLCFLAG, `$MYSQLCONFIG --cflags`)
6b9290ff 571fi
f2c2d395 572
f8277a83 573if test x$sqlite = xtrue; then
6b9290ff
MW
574 AC_HAVE_LIBRARY([sqlite3],[LIBS="$LIBS"],[AC_MSG_ERROR([SQLite library sqlite3 not found])])
575 AC_CHECK_HEADER([sqlite3.h],,[AC_MSG_ERROR([SQLite header sqlite3.h not found!])])
f8277a83
MW
576 AC_MSG_CHECKING([sqlite3_prepare_v2])
577 AC_TRY_COMPILE(
578 [#include <sqlite3.h>],
579 [
580 void *test = sqlite3_prepare_v2;
8b3b4a24 581 ],
f8277a83 582 [AC_MSG_RESULT([yes])]; AC_DEFINE_UNQUOTED(HAVE_SQLITE3_PREPARE_V2, 1), [AC_MSG_RESULT([no])])
7da767f7
MW
583 AC_MSG_CHECKING([sqlite3.h version >= 3.3.1])
584 AC_TRY_COMPILE(
585 [#include <sqlite3.h>],
586 [
587 #if SQLITE_VERSION_NUMBER < 3003001
588 #error bad sqlite
589 #endif
8b3b4a24 590 ],
7da767f7 591 [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]); AC_MSG_ERROR([SQLite version >= 3.3.1 required!])])
6b9290ff 592fi
f2c2d395 593
17353034 594if test x$openssl = xtrue; then
e581a31d 595 AC_HAVE_LIBRARY([crypto],[LIBS="$LIBS"],[AC_MSG_ERROR([OpenSSL crypto library not found])])
17353034
TB
596 AC_CHECK_HEADER([openssl/evp.h],,[AC_MSG_ERROR([OpenSSL header openssl/evp.h not found!])])
597fi
598
4977018c 599if test x$gcrypt = xtrue; then
322226c0 600 AC_HAVE_LIBRARY([gcrypt],[LIBS="$LIBS"],[AC_MSG_ERROR([gcrypt library not found])],[-lgpg-error])
1d39663f 601 AC_CHECK_HEADER([gcrypt.h],,[AC_MSG_ERROR([gcrypt header gcrypt.h not found!])])
62d6da67
MW
602 AC_MSG_CHECKING([gcrypt CAMELLIA cipher])
603 AC_TRY_COMPILE(
604 [#include <gcrypt.h>],
605 [enum gcry_cipher_algos alg = GCRY_CIPHER_CAMELLIA128;],
606 [AC_MSG_RESULT([yes]); AC_DEFINE([HAVE_GCRY_CIPHER_CAMELLIA])],
607 [AC_MSG_RESULT([no])]
608 )
4977018c
MW
609fi
610
61c46386
MW
611if test x$uci = xtrue; then
612 AC_HAVE_LIBRARY([uci],[LIBS="$LIBS"],[AC_MSG_ERROR([UCI library libuci not found])])
613 AC_CHECK_HEADER([uci.h],,[AC_MSG_ERROR([UCI header uci.h not found!])])
614fi
615
55699f03
MW
616if test x$android = xtrue; then
617 AC_HAVE_LIBRARY([cutils],[LIBS="$LIBS"],[AC_MSG_ERROR([Android library libcutils not found])])
618 AC_CHECK_HEADER([cutils/properties.h],,[AC_MSG_ERROR([Android header cutils/properties.h not found!])])
c711687c
TB
619 dnl we have to force the use of libdl here because the autodetection
620 dnl above does not work correctly when cross-compiling for android.
621 DLLIB="-ldl"
622 AC_SUBST(DLLIB)
55699f03
MW
623fi
624
2bce8141 625if test x$maemo = xtrue; then
8464e25a
TB
626 PKG_CHECK_MODULES(maemo, [glib-2.0 gthread-2.0 libosso osso-af-settings])
627 AC_SUBST(maemo_CFLAGS)
628 AC_SUBST(maemo_LIBS)
2bce8141
TB
629 dbusservicedir="/usr/share/dbus-1/system-services"
630 AC_SUBST(dbusservicedir)
631fi
632
6dbce9c8 633if test x$nm = xtrue; then
89d236f0
MW
634 PKG_CHECK_EXISTS([libnm-glib],
635 [PKG_CHECK_MODULES(nm, [NetworkManager gthread-2.0 libnm-glib libnm-glib-vpn])],
636 [PKG_CHECK_MODULES(nm, [NetworkManager gthread-2.0 libnm_glib libnm_glib_vpn])]
637 )
6dbce9c8
MW
638 AC_SUBST(nm_CFLAGS)
639 AC_SUBST(nm_LIBS)
640fi
641
1caa265c
MW
642if test x$eap_gtc = xtrue; then
643 AC_HAVE_LIBRARY([pam],[LIBS="$LIBS"],[AC_MSG_ERROR([PAM library not found])])
644 AC_CHECK_HEADER([security/pam_appl.h],,[AC_MSG_ERROR([PAM header security/pam_appl.h not found!])])
645fi
646
946be4d3
TB
647if test x$capabilities = xnative; then
648 AC_MSG_NOTICE([Usage of the native Linux capabilities interface is deprecated, use libcap instead])
649 dnl Linux requires the following for capset(), Android does not have it,
650 dnl but defines capset() in unistd.h instead.
651 AC_CHECK_HEADERS([sys/capability.h])
652 AC_CHECK_FUNC(capset,,[AC_MSG_ERROR([capset() not found!])])
653 AC_DEFINE(CAPABILITIES_NATIVE)
654fi
655
eb3e2705
MW
656if test x$capabilities = xlibcap; then
657 AC_HAVE_LIBRARY([cap],[LIBS="$LIBS"],[AC_MSG_ERROR([libcap library not found])])
946be4d3
TB
658 AC_CHECK_HEADER([sys/capability.h],
659 [AC_DEFINE(HAVE_SYS_CAPABILITY_H)],
660 [AC_MSG_ERROR([libcap header sys/capability.h not found!])])
661 AC_DEFINE(CAPABILITIES_LIBCAP)
eb3e2705
MW
662fi
663
e4e6a77a
MW
664if test x$integrity_test = xtrue; then
665 AC_MSG_CHECKING([for dladdr()])
666 AC_TRY_COMPILE(
667 [#define _GNU_SOURCE
668 #include <dlfcn.h>],
8b3b4a24 669 [Dl_info info; dladdr(main, &info);],
e4e6a77a
MW
670 [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]);
671 AC_MSG_ERROR([dladdr() not supported, required by integrity-test!])]
672 )
673 AC_MSG_CHECKING([for dl_iterate_phdr()])
674 AC_TRY_COMPILE(
675 [#define _GNU_SOURCE
676 #include <link.h>],
8b3b4a24 677 [dl_iterate_phdr((void*)0, (void*)0);],
e4e6a77a
MW
678 [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]);
679 AC_MSG_ERROR([dl_iterate_phdr() not supported, required by integrity-test!])]
680 )
681fi
682
8f018151
MW
683dnl ==============================================
684dnl collect plugin list for strongSwan components
685dnl ==============================================
1ba62b55 686
9e2c88b9
MW
687m4_include(m4/macros/add-plugin.m4)
688
8f018151
MW
689# plugin lists for all components
690libcharon_plugins=
de92b9e7 691pluto_plugins=
8f018151
MW
692pool_plugins=
693openac_plugins=
694scepclient_plugins=
695pki_plugins=
696scripts_plugins=
697manager_plugins=
698medsrv_plugins=
699
123a84d3
MW
700# location specific lists for checksumming,
701# for src/libcharon, src/pluto, src/libhydra and src/libstrongswan
702c_plugins=
703p_plugins=
704h_plugins=
705s_plugins=
706
707ADD_PLUGIN([test-vectors], [s libcharon pluto openac scepclient pki])
708ADD_PLUGIN([curl], [s libcharon pluto scepclient])
709ADD_PLUGIN([ldap], [s libcharon pluto scepclient])
710ADD_PLUGIN([mysql], [s libcharon pluto pool manager medsrv])
711ADD_PLUGIN([sqlite], [s libcharon pluto pool manager medsrv])
712ADD_PLUGIN([aes], [s libcharon pluto openac scepclient pki scripts])
713ADD_PLUGIN([des], [s libcharon pluto openac scepclient pki scripts])
714ADD_PLUGIN([blowfish], [s libcharon pluto openac scepclient pki scripts])
715ADD_PLUGIN([sha1], [s libcharon pluto openac scepclient pki scripts medsrv])
716ADD_PLUGIN([sha2], [s libcharon pluto openac scepclient pki scripts medsrv])
717ADD_PLUGIN([md4], [s libcharon openac manager scepclient pki])
718ADD_PLUGIN([md5], [s libcharon pluto openac scepclient pki])
3f5de7b6 719ADD_PLUGIN([random], [s libcharon pluto openac scepclient pki scripts medsrv])
f1a74a3c 720ADD_PLUGIN([x509], [s libcharon pluto openac scepclient pki scripts])
123a84d3
MW
721ADD_PLUGIN([revocation], [s libcharon])
722ADD_PLUGIN([pubkey], [s libcharon])
723ADD_PLUGIN([pkcs1], [s libcharon pluto openac scepclient pki scripts manager medsrv])
724ADD_PLUGIN([pgp], [s libcharon pluto])
725ADD_PLUGIN([dnskey], [s pluto])
726ADD_PLUGIN([pem], [s libcharon pluto openac scepclient pki scripts manager medsrv])
727ADD_PLUGIN([padlock], [s libcharon])
728ADD_PLUGIN([openssl], [s libcharon pluto openac scepclient pki scripts manager medsrv])
729ADD_PLUGIN([gcrypt], [s libcharon pluto openac scepclient pki scripts manager medsrv])
730ADD_PLUGIN([fips-prf], [s libcharon])
731ADD_PLUGIN([gmp], [s libcharon pluto openac scepclient pki scripts manager medsrv])
732ADD_PLUGIN([agent], [s libcharon])
733ADD_PLUGIN([pkcs11], [s libcharon pki])
734ADD_PLUGIN([xcbc], [s libcharon])
f1a74a3c 735ADD_PLUGIN([hmac], [s libcharon pluto scripts])
37e52c3f
MW
736ADD_PLUGIN([ctr], [s libcharon scripts])
737ADD_PLUGIN([ccm], [s libcharon scripts])
1a649810 738ADD_PLUGIN([gcm], [s libcharon scripts])
71c87e34 739ADD_PLUGIN([af-alg], [s libcharon pluto openac scepclient pki scripts medsrv])
123a84d3
MW
740ADD_PLUGIN([xauth], [p pluto])
741ADD_PLUGIN([attr], [h libcharon pluto])
742ADD_PLUGIN([attr-sql], [h libcharon pluto])
062a6022
TB
743ADD_PLUGIN([kernel-pfkey], [h libcharon pluto])
744ADD_PLUGIN([kernel-pfroute], [h libcharon pluto])
745ADD_PLUGIN([kernel-klips], [h libcharon pluto])
746ADD_PLUGIN([kernel-netlink], [h libcharon pluto])
123a84d3
MW
747ADD_PLUGIN([resolve], [h libcharon pluto])
748ADD_PLUGIN([load-tester], [c libcharon])
123a84d3
MW
749ADD_PLUGIN([socket-default], [c libcharon])
750ADD_PLUGIN([socket-raw], [c libcharon])
751ADD_PLUGIN([socket-dynamic], [c libcharon])
752ADD_PLUGIN([farp], [c libcharon])
753ADD_PLUGIN([stroke], [c libcharon])
754ADD_PLUGIN([smp], [c libcharon])
755ADD_PLUGIN([sql], [c libcharon])
756ADD_PLUGIN([updown], [c libcharon])
757ADD_PLUGIN([eap-identity], [c libcharon])
758ADD_PLUGIN([eap-sim], [c libcharon])
759ADD_PLUGIN([eap-sim-file], [c libcharon])
760ADD_PLUGIN([eap-simaka-sql], [c libcharon])
761ADD_PLUGIN([eap-simaka-pseudonym], [c libcharon])
762ADD_PLUGIN([eap-simaka-reauth], [c libcharon])
763ADD_PLUGIN([eap-aka], [c libcharon])
764ADD_PLUGIN([eap-aka-3gpp2], [c libcharon])
765ADD_PLUGIN([eap-md5], [c libcharon])
766ADD_PLUGIN([eap-gtc], [c libcharon])
767ADD_PLUGIN([eap-mschapv2], [c libcharon])
768ADD_PLUGIN([eap-radius], [c libcharon])
769ADD_PLUGIN([eap-tls], [c libcharon])
770ADD_PLUGIN([eap-ttls], [c libcharon])
d93e2e54 771ADD_PLUGIN([eap-tnc], [c libcharon])
37242cc3
AS
772ADD_PLUGIN([tnccs-20], [c libcharon])
773ADD_PLUGIN([tnccs-11], [c libcharon])
d1b94592
AS
774ADD_PLUGIN([tnc-imc], [c libcharon])
775ADD_PLUGIN([tnc-imv], [c libcharon])
123a84d3
MW
776ADD_PLUGIN([medsrv], [c libcharon])
777ADD_PLUGIN([medcli], [c libcharon])
778ADD_PLUGIN([nm], [c libcharon])
779ADD_PLUGIN([dhcp], [c libcharon])
780ADD_PLUGIN([android], [c libcharon])
781ADD_PLUGIN([ha], [c libcharon])
30cd31fb 782ADD_PLUGIN([led], [c libcharon])
f79161e8 783ADD_PLUGIN([maemo], [c libcharon])
123a84d3
MW
784ADD_PLUGIN([uci], [c libcharon])
785ADD_PLUGIN([addrblock], [c libcharon])
786ADD_PLUGIN([unit-tester], [c libcharon])
8f018151
MW
787
788AC_SUBST(libcharon_plugins)
de92b9e7 789AC_SUBST(pluto_plugins)
8f018151
MW
790AC_SUBST(pool_plugins)
791AC_SUBST(openac_plugins)
792AC_SUBST(scepclient_plugins)
793AC_SUBST(pki_plugins)
794AC_SUBST(scripts_plugins)
795AC_SUBST(manager_plugins)
796AC_SUBST(medsrv_plugins)
1ba62b55 797
123a84d3
MW
798AC_SUBST(c_plugins)
799AC_SUBST(p_plugins)
800AC_SUBST(h_plugins)
801AC_SUBST(s_plugins)
802
6b9290ff
MW
803dnl =========================
804dnl set Makefile.am vars
805dnl =========================
f2c2d395 806
1ba62b55
MW
807dnl libstrongswan plugins
808dnl =====================
81811a9d 809AM_CONDITIONAL(USE_TEST_VECTORS, test x$test_vectors = xtrue)
6b9290ff
MW
810AM_CONDITIONAL(USE_CURL, test x$curl = xtrue)
811AM_CONDITIONAL(USE_LDAP, test x$ldap = xtrue)
812AM_CONDITIONAL(USE_AES, test x$aes = xtrue)
813AM_CONDITIONAL(USE_DES, test x$des = xtrue)
d36ae9e3 814AM_CONDITIONAL(USE_BLOWFISH, test x$blowfish = xtrue)
1e0d1ae2 815AM_CONDITIONAL(USE_MD4, test x$md4 = xtrue)
6b9290ff
MW
816AM_CONDITIONAL(USE_MD5, test x$md5 = xtrue)
817AM_CONDITIONAL(USE_SHA1, test x$sha1 = xtrue)
818AM_CONDITIONAL(USE_SHA2, test x$sha2 = xtrue)
819AM_CONDITIONAL(USE_FIPS_PRF, test x$fips_prf = xtrue)
820AM_CONDITIONAL(USE_GMP, test x$gmp = xtrue)
6a365f07 821AM_CONDITIONAL(USE_RANDOM, test x$random = xtrue)
6b9290ff 822AM_CONDITIONAL(USE_X509, test x$x509 = xtrue)
c2e5cee4 823AM_CONDITIONAL(USE_REVOCATION, test x$revocation = xtrue)
affd7a90 824AM_CONDITIONAL(USE_PUBKEY, test x$pubkey = xtrue)
1e0f6937 825AM_CONDITIONAL(USE_PKCS1, test x$pkcs1 = xtrue)
9493dd2c 826AM_CONDITIONAL(USE_PGP, test x$pgp = xtrue)
5ef478aa 827AM_CONDITIONAL(USE_DNSKEY, test x$dnskey = xtrue)
160f4c22 828AM_CONDITIONAL(USE_PEM, test x$pem = xtrue)
6b9290ff 829AM_CONDITIONAL(USE_HMAC, test x$hmac = xtrue)
27d04e05 830AM_CONDITIONAL(USE_XCBC, test x$xcbc = xtrue)
6b9290ff
MW
831AM_CONDITIONAL(USE_MYSQL, test x$mysql = xtrue)
832AM_CONDITIONAL(USE_SQLITE, test x$sqlite = xtrue)
1ba62b55
MW
833AM_CONDITIONAL(USE_PADLOCK, test x$padlock = xtrue)
834AM_CONDITIONAL(USE_OPENSSL, test x$openssl = xtrue)
4977018c 835AM_CONDITIONAL(USE_GCRYPT, test x$gcrypt = xtrue)
21c95463 836AM_CONDITIONAL(USE_AGENT, test x$agent = xtrue)
6e862e21 837AM_CONDITIONAL(USE_PKCS11, test x$pkcs11 = xtrue)
272f0e1a 838AM_CONDITIONAL(USE_CTR, test x$ctr = xtrue)
80a93a13 839AM_CONDITIONAL(USE_CCM, test x$ccm = xtrue)
1a649810 840AM_CONDITIONAL(USE_GCM, test x$gcm = xtrue)
71c87e34 841AM_CONDITIONAL(USE_AF_ALG, test x$af_alg = xtrue)
1ba62b55
MW
842
843dnl charon plugins
844dnl ==============
6b9290ff 845AM_CONDITIONAL(USE_STROKE, test x$stroke = xtrue)
5b7ec6d4 846AM_CONDITIONAL(USE_MEDSRV, test x$medsrv = xtrue)
782db7ed 847AM_CONDITIONAL(USE_MEDCLI, test x$medcli = xtrue)
6dbce9c8 848AM_CONDITIONAL(USE_NM, test x$nm = xtrue)
61c46386 849AM_CONDITIONAL(USE_UCI, test x$uci = xtrue)
55699f03 850AM_CONDITIONAL(USE_ANDROID, test x$android = xtrue)
f79161e8 851AM_CONDITIONAL(USE_MAEMO, test x$maemo = xtrue)
6b9290ff
MW
852AM_CONDITIONAL(USE_SMP, test x$smp = xtrue)
853AM_CONDITIONAL(USE_SQL, test x$sql = xtrue)
ad3af574 854AM_CONDITIONAL(USE_UPDOWN, test x$updown = xtrue)
beaa048e 855AM_CONDITIONAL(USE_DHCP, test x$dhcp = xtrue)
b76b867c
MW
856AM_CONDITIONAL(USE_UNIT_TESTS, test x$unit_tests = xtrue)
857AM_CONDITIONAL(USE_LOAD_TESTER, test x$load_tester = xtrue)
e67f5136 858AM_CONDITIONAL(USE_HA, test x$ha = xtrue)
30cd31fb 859AM_CONDITIONAL(USE_LED, test x$led = xtrue)
6b9290ff 860AM_CONDITIONAL(USE_EAP_SIM, test x$eap_sim = xtrue)
79a87846 861AM_CONDITIONAL(USE_EAP_SIM_FILE, test x$eap_sim_file = xtrue)
d2c35874 862AM_CONDITIONAL(USE_EAP_SIMAKA_SQL, test x$eap_simaka_sql = xtrue)
edcb2dd3
MW
863AM_CONDITIONAL(USE_EAP_SIMAKA_PSEUDONYM, test x$eap_simaka_pseudonym = xtrue)
864AM_CONDITIONAL(USE_EAP_SIMAKA_REAUTH, test x$eap_simaka_reauth = xtrue)
6b9290ff
MW
865AM_CONDITIONAL(USE_EAP_IDENTITY, test x$eap_identity = xtrue)
866AM_CONDITIONAL(USE_EAP_MD5, test x$eap_md5 = xtrue)
1caa265c 867AM_CONDITIONAL(USE_EAP_GTC, test x$eap_gtc = xtrue)
6b9290ff 868AM_CONDITIONAL(USE_EAP_AKA, test x$eap_aka = xtrue)
47208157 869AM_CONDITIONAL(USE_EAP_AKA_3GPP2, test x$eap_aka_3gpp2 = xtrue)
f98cdf7a 870AM_CONDITIONAL(USE_EAP_MSCHAPV2, test x$eap_mschapv2 = xtrue)
21079538 871AM_CONDITIONAL(USE_EAP_TLS, test x$eap_tls = xtrue)
26eb9b2d 872AM_CONDITIONAL(USE_EAP_TTLS, test x$eap_ttls = xtrue)
d93e2e54 873AM_CONDITIONAL(USE_EAP_TNC, test x$eap_tnc = xtrue)
4a6b84a9 874AM_CONDITIONAL(USE_EAP_RADIUS, test x$eap_radius = xtrue)
8dcc56dc
AS
875AM_CONDITIONAL(USE_TNC_IMC, test x$tnc_imc = xtrue)
876AM_CONDITIONAL(USE_TNC_IMV, test x$tnc_imv = xtrue)
4e8e74fc 877AM_CONDITIONAL(USE_TNCCS_11, test x$tnccs_11 = xtrue)
6d0e9cf0 878AM_CONDITIONAL(USE_TNCCS_20, test x$tnccs_20 = xtrue)
dab05604
MW
879AM_CONDITIONAL(USE_SOCKET_DEFAULT, test x$socket_default = xtrue)
880AM_CONDITIONAL(USE_SOCKET_RAW, test x$socket_raw = xtrue)
9ed1bb48 881AM_CONDITIONAL(USE_SOCKET_DYNAMIC, test x$socket_dynamic = xtrue)
0d7b48a3 882AM_CONDITIONAL(USE_FARP, test x$farp = xtrue)
1c8c9246 883AM_CONDITIONAL(USE_ADDRBLOCK, test x$addrblock = xtrue)
1ba62b55 884
26ec52a4
AS
885dnl hydra plugins
886dnl =============
887AM_CONDITIONAL(USE_ATTR, test x$attr = xtrue)
888AM_CONDITIONAL(USE_ATTR_SQL, test x$attr_sql = xtrue -o x$sql = xtrue)
062a6022
TB
889AM_CONDITIONAL(USE_KERNEL_KLIPS, test x$kernel_klips = xtrue)
890AM_CONDITIONAL(USE_KERNEL_NETLINK, test x$kernel_netlink = xtrue)
891AM_CONDITIONAL(USE_KERNEL_PFKEY, test x$kernel_pfkey = xtrue)
892AM_CONDITIONAL(USE_KERNEL_PFROUTE, test x$kernel_pfroute = xtrue)
26ec52a4
AS
893AM_CONDITIONAL(USE_RESOLVE, test x$resolve = xtrue)
894
895dnl pluto plugins
896dnl =============
897AM_CONDITIONAL(USE_XAUTH, test x$xauth = xtrue)
898
1ba62b55
MW
899dnl other options
900dnl =============
901AM_CONDITIONAL(USE_SMARTCARD, test x$smartcard = xtrue)
902AM_CONDITIONAL(USE_CISCO_QUIRKS, test x$cisco_quirks = xtrue)
903AM_CONDITIONAL(USE_LEAK_DETECTIVE, test x$leak_detective = xtrue)
02140125 904AM_CONDITIONAL(USE_LOCK_PROFILER, test x$lock_profiler = xtrue)
6b9290ff
MW
905AM_CONDITIONAL(USE_NAT_TRANSPORT, test x$nat_transport = xtrue)
906AM_CONDITIONAL(USE_VENDORID, test x$vendor_id = xtrue)
907AM_CONDITIONAL(USE_XAUTH_VID, test x$xauth_vid = xtrue)
908AM_CONDITIONAL(USE_DUMM, test x$dumm = xtrue)
909AM_CONDITIONAL(USE_FAST, test x$fast = xtrue)
910AM_CONDITIONAL(USE_MANAGER, test x$manager = xtrue)
e20b7921 911AM_CONDITIONAL(USE_ME, test x$mediation = xtrue)
6b9290ff 912AM_CONDITIONAL(USE_INTEGRITY_TEST, test x$integrity_test = xtrue)
3de510ca 913AM_CONDITIONAL(USE_LOAD_WARNING, test x$load_warning = xtrue)
6b9290ff 914AM_CONDITIONAL(USE_PLUTO, test x$pluto = xtrue)
6905f794 915AM_CONDITIONAL(USE_THREADS, test x$threads = xtrue)
6b9290ff
MW
916AM_CONDITIONAL(USE_CHARON, test x$charon = xtrue)
917AM_CONDITIONAL(USE_TOOLS, test x$tools = xtrue)
cf00cffe 918AM_CONDITIONAL(USE_SCRIPTS, test x$scripts = xtrue)
4985ad6e 919AM_CONDITIONAL(USE_LIBSTRONGSWAN, test x$charon = xtrue -o x$pluto = xtrue -o x$tools = xtrue)
0bf68cbf 920AM_CONDITIONAL(USE_LIBHYDRA, test x$charon = xtrue -o x$pluto = xtrue)
6b9290ff 921AM_CONDITIONAL(USE_FILE_CONFIG, test x$pluto = xtrue -o x$stroke = xtrue)
b77e493b 922AM_CONDITIONAL(USE_LIBCAP, test x$capabilities = xlibcap)
d25ce370 923AM_CONDITIONAL(USE_VSTR, test x$vstr = xtrue)
f8330d03 924AM_CONDITIONAL(USE_SIMAKA, test x$simaka = xtrue)
0f82a470 925AM_CONDITIONAL(USE_TLS, test x$tls = xtrue)
3372ad14 926AM_CONDITIONAL(MONOLITHIC, test x$monolithic = xtrue)
f2c2d395 927
9e72d3bc
MW
928dnl ==============================
929dnl set global definitions
930dnl ==============================
931
a7f79ee9 932if test x$mediation = xtrue; then
9e72d3bc
MW
933 AC_DEFINE(ME)
934fi
946be4d3 935if test x$capabilities = xlibcap -o x$capabilities = xnative; then
eb3e2705
MW
936 AC_DEFINE(CAPABILITIES)
937fi
3372ad14
TB
938if test x$monolithic = xtrue; then
939 AC_DEFINE(MONOLITHIC)
940fi
941
9e72d3bc 942
f2c2d395
MW
943dnl ==============================
944dnl build Makefiles
945dnl ==============================
946
947AC_OUTPUT(
948 Makefile
0a1233e6 949 man/Makefile
f2c2d395 950 src/Makefile
04a7b6d8 951 src/include/Makefile
f2c2d395 952 src/libstrongswan/Makefile
552cc11b
MW
953 src/libstrongswan/plugins/aes/Makefile
954 src/libstrongswan/plugins/des/Makefile
d36ae9e3 955 src/libstrongswan/plugins/blowfish/Makefile
1e0d1ae2 956 src/libstrongswan/plugins/md4/Makefile
552cc11b
MW
957 src/libstrongswan/plugins/md5/Makefile
958 src/libstrongswan/plugins/sha1/Makefile
959 src/libstrongswan/plugins/sha2/Makefile
960 src/libstrongswan/plugins/fips_prf/Makefile
961 src/libstrongswan/plugins/gmp/Makefile
6a365f07 962 src/libstrongswan/plugins/random/Makefile
552cc11b 963 src/libstrongswan/plugins/hmac/Makefile
27d04e05 964 src/libstrongswan/plugins/xcbc/Makefile
552cc11b 965 src/libstrongswan/plugins/x509/Makefile
c2e5cee4 966 src/libstrongswan/plugins/revocation/Makefile
affd7a90 967 src/libstrongswan/plugins/pubkey/Makefile
1e0f6937 968 src/libstrongswan/plugins/pkcs1/Makefile
9493dd2c 969 src/libstrongswan/plugins/pgp/Makefile
5ef478aa 970 src/libstrongswan/plugins/dnskey/Makefile
160f4c22 971 src/libstrongswan/plugins/pem/Makefile
552cc11b
MW
972 src/libstrongswan/plugins/curl/Makefile
973 src/libstrongswan/plugins/ldap/Makefile
974 src/libstrongswan/plugins/mysql/Makefile
975 src/libstrongswan/plugins/sqlite/Makefile
36d62fac 976 src/libstrongswan/plugins/padlock/Makefile
17353034 977 src/libstrongswan/plugins/openssl/Makefile
4977018c 978 src/libstrongswan/plugins/gcrypt/Makefile
21c95463 979 src/libstrongswan/plugins/agent/Makefile
6e862e21 980 src/libstrongswan/plugins/pkcs11/Makefile
272f0e1a 981 src/libstrongswan/plugins/ctr/Makefile
80a93a13 982 src/libstrongswan/plugins/ccm/Makefile
1a649810 983 src/libstrongswan/plugins/gcm/Makefile
71c87e34 984 src/libstrongswan/plugins/af_alg/Makefile
81811a9d 985 src/libstrongswan/plugins/test_vectors/Makefile
0bf68cbf 986 src/libhydra/Makefile
a5ec3025 987 src/libhydra/plugins/attr/Makefile
75dc0192 988 src/libhydra/plugins/attr_sql/Makefile
062a6022
TB
989 src/libhydra/plugins/kernel_klips/Makefile
990 src/libhydra/plugins/kernel_netlink/Makefile
991 src/libhydra/plugins/kernel_pfkey/Makefile
992 src/libhydra/plugins/kernel_pfroute/Makefile
9a0333fa 993 src/libhydra/plugins/resolve/Makefile
f2c2d395 994 src/libfreeswan/Makefile
f8330d03 995 src/libsimaka/Makefile
0f82a470 996 src/libtls/Makefile
f2c2d395 997 src/pluto/Makefile
26ec52a4 998 src/pluto/plugins/xauth/Makefile
f2c2d395
MW
999 src/whack/Makefile
1000 src/charon/Makefile
bd3f8ea3
TB
1001 src/libcharon/Makefile
1002 src/libcharon/plugins/eap_aka/Makefile
1003 src/libcharon/plugins/eap_aka_3gpp2/Makefile
1004 src/libcharon/plugins/eap_identity/Makefile
1005 src/libcharon/plugins/eap_md5/Makefile
1006 src/libcharon/plugins/eap_gtc/Makefile
1007 src/libcharon/plugins/eap_sim/Makefile
1008 src/libcharon/plugins/eap_sim_file/Makefile
d2c35874 1009 src/libcharon/plugins/eap_simaka_sql/Makefile
bd3f8ea3
TB
1010 src/libcharon/plugins/eap_simaka_pseudonym/Makefile
1011 src/libcharon/plugins/eap_simaka_reauth/Makefile
1012 src/libcharon/plugins/eap_mschapv2/Makefile
21079538 1013 src/libcharon/plugins/eap_tls/Makefile
26eb9b2d 1014 src/libcharon/plugins/eap_ttls/Makefile
d93e2e54 1015 src/libcharon/plugins/eap_tnc/Makefile
bd3f8ea3 1016 src/libcharon/plugins/eap_radius/Makefile
8dcc56dc
AS
1017 src/libcharon/plugins/tnc_imc/Makefile
1018 src/libcharon/plugins/tnc_imv/Makefile
4e8e74fc 1019 src/libcharon/plugins/tnccs_11/Makefile
6d0e9cf0 1020 src/libcharon/plugins/tnccs_20/Makefile
bd3f8ea3
TB
1021 src/libcharon/plugins/socket_default/Makefile
1022 src/libcharon/plugins/socket_raw/Makefile
1023 src/libcharon/plugins/socket_dynamic/Makefile
0d7b48a3 1024 src/libcharon/plugins/farp/Makefile
bd3f8ea3
TB
1025 src/libcharon/plugins/smp/Makefile
1026 src/libcharon/plugins/sql/Makefile
1027 src/libcharon/plugins/medsrv/Makefile
1028 src/libcharon/plugins/medcli/Makefile
1029 src/libcharon/plugins/nm/Makefile
1c8c9246 1030 src/libcharon/plugins/addrblock/Makefile
bd3f8ea3 1031 src/libcharon/plugins/uci/Makefile
d8748966 1032 src/libcharon/plugins/ha/Makefile
30cd31fb 1033 src/libcharon/plugins/led/Makefile
bd3f8ea3 1034 src/libcharon/plugins/android/Makefile
f79161e8 1035 src/libcharon/plugins/maemo/Makefile
bd3f8ea3
TB
1036 src/libcharon/plugins/stroke/Makefile
1037 src/libcharon/plugins/updown/Makefile
beaa048e 1038 src/libcharon/plugins/dhcp/Makefile
bd3f8ea3
TB
1039 src/libcharon/plugins/unit_tester/Makefile
1040 src/libcharon/plugins/load_tester/Makefile
f2c2d395
MW
1041 src/stroke/Makefile
1042 src/ipsec/Makefile
1043 src/starter/Makefile
1044 src/_updown/Makefile
1045 src/_updown_espmark/Makefile
1046 src/_copyright/Makefile
1047 src/openac/Makefile
1048 src/scepclient/Makefile
7c577c8e 1049 src/pki/Makefile
f2d6355e 1050 src/dumm/Makefile
2d9ce480 1051 src/dumm/ext/extconf.rb
552cc11b 1052 src/libfast/Makefile
b8c7453a 1053 src/manager/Makefile
9529fb68 1054 src/medsrv/Makefile
67a7bb02 1055 src/checksum/Makefile
39b7780d 1056 scripts/Makefile
9ee1111d 1057 testing/Makefile
f2c2d395 1058)