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