]> git.ipfire.org Git - thirdparty/strongswan.git/blame - configure.in
ported openac to credential factory changes
[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
4dnl
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>.
9dnl
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
a9bb69c8 19AC_INIT(strongSwan,4.2.7)
5e5f0bd4 20AM_INIT_AUTOMAKE(tar-ustar)
f2c2d395 21AC_C_BIGENDIAN
f2c2d395 22AC_SUBST(confdir, '${sysconfdir}')
a47486b5 23PKG_PROG_PKG_CONFIG
f2c2d395 24
db26d00e
MW
25dnl =================================
26dnl check --enable-xxx & --with-xxx
27dnl =================================
28
db26d00e 29AC_ARG_WITH(
6b9290ff
MW
30 [default-pkcs11],
31 AS_HELP_STRING([--with-default-pkcs11=lib],[set the default PKCS11 library other than "/usr/lib/opensc-pkcs11.so"]),
32 [AC_DEFINE_UNQUOTED(PKCS11_DEFAULT_LIB, "$withval")],
33 [AC_DEFINE_UNQUOTED(PKCS11_DEFAULT_LIB, "/usr/lib/opensc-pkcs11.so")]
db26d00e
MW
34)
35
195307b5 36AC_ARG_WITH(
6b9290ff
MW
37 [xauth-module],
38 AS_HELP_STRING([--with-xauth-module=lib],[set the path to the XAUTH module]),
39 [AC_DEFINE_UNQUOTED(XAUTH_DEFAULT_LIB, "$withval")],
195307b5
AS
40)
41
db26d00e 42AC_ARG_WITH(
6b9290ff
MW
43 [random-device],
44 AS_HELP_STRING([--with-random-device=dev],[set the device for real random data other than "/dev/random"]),
45 [AC_DEFINE_UNQUOTED(DEV_RANDOM, "$withval")],
46 [AC_DEFINE_UNQUOTED(DEV_RANDOM, "/dev/random")]
db26d00e 47)
c60c7694 48AC_ARG_WITH(
6b9290ff
MW
49 [resolv-conf],
50 AS_HELP_STRING([--with-resolv-conf=file],[set the file to store DNS server information other than "sysconfdir/resolv.conf"]),
8cc16c9d
AS
51 [AC_SUBST(resolv_conf, "$withval")],
52 [AC_SUBST(resolv_conf, "${sysconfdir}/resolv.conf")]
c60c7694 53)
db26d00e 54
ff867d06
MW
55AC_ARG_WITH(
56 [strongswan-conf],
57 AS_HELP_STRING([--with-strongswan-conf=file],[strongswan.conf file other than "sysconfdir/strongswan.conf"]),
8cc16c9d
AS
58 [AC_SUBST(strongswan_conf, "$withval")],
59 [AC_SUBST(strongswan_conf, "${sysconfdir}/strongswan.conf")]
ff867d06
MW
60)
61
db26d00e 62AC_ARG_WITH(
6b9290ff
MW
63 [urandom-device],
64 AS_HELP_STRING([--with-urandom-device=dev],[set the device for pseudo random data other than "/dev/urandom"]),
65 [AC_DEFINE_UNQUOTED(DEV_URANDOM, "$withval")],
66 [AC_DEFINE_UNQUOTED(DEV_URANDOM, "/dev/urandom")]
db26d00e 67)
f2c2d395 68
dfc14c84 69AC_ARG_WITH(
6b9290ff
MW
70 [piddir],
71 AS_HELP_STRING([--with-piddir=dir],[path for PID and UNIX socket files other than "/var/run"]),
72 [AC_SUBST(piddir, "$withval")],
73 [AC_SUBST(piddir, "/var/run")]
dfc14c84
AS
74)
75
f27f6296 76AC_ARG_WITH(
6b9290ff
MW
77 [ipsecdir],
78 AS_HELP_STRING([--with-ipsecdir=dir],[installation path for ipsec tools other than "libexecdir/ipsec"]),
79 [AC_SUBST(ipsecdir, "$withval")],
80 [AC_SUBST(ipsecdir, "${libexecdir}/ipsec")]
f27f6296 81)
552cc11b 82AC_SUBST(plugindir, "${ipsecdir}/plugins")
f27f6296
MW
83
84AC_ARG_WITH(
6b9290ff
MW
85 [plugindir],
86 AS_HELP_STRING([--with-plugindir=dir],[installation path for plugins other than "ipsecdir/plugins"]),
87 [AC_SUBST(plugindir, "$withval")],
88 [AC_SUBST(plugindir, "${ipsecdir}/plugins")]
f27f6296
MW
89)
90
d560c849 91AC_ARG_WITH(
6b9290ff
MW
92 [sim-reader],
93 AS_HELP_STRING([--with-sim-reader=library.so],[library containing the sim_run_alg()/sim_get_triplet() function for EAP-SIM]),
94 [AC_SUBST(simreader, "$withval")],
95 [AC_SUBST(simreader, "${plugindir}/libeapsim-file.so")]
d560c849
MW
96)
97
04a7b6d8 98AC_ARG_WITH(
6b9290ff
MW
99 [linux-headers],
100 AS_HELP_STRING([--with-linux-headers=dir],[use the linux header files in dir instead of the supplied ones in "src/include"]),
101 [AC_SUBST(linuxdir, "$withval")], [AC_SUBST(linuxdir, "../include")]
04a7b6d8
MW
102)
103AC_SUBST(LINUX_HEADERS)
104
4e411c83 105AC_ARG_WITH(
6b9290ff
MW
106 [routing-table],
107 AS_HELP_STRING([--with-routing-table=num],[use routing table for IPsec routes (default: 220)]),
108 [AC_DEFINE_UNQUOTED(IPSEC_ROUTING_TABLE, $withval) AC_SUBST(IPSEC_ROUTING_TABLE, "$withval")],
109 [AC_DEFINE_UNQUOTED(IPSEC_ROUTING_TABLE, 220) AC_SUBST(IPSEC_ROUTING_TABLE, "220")]
0739cca9
MW
110)
111
112AC_ARG_WITH(
6b9290ff
MW
113 [routing-table-prio],
114 AS_HELP_STRING([--with-routing-table-prio=prio],[priority for IPsec routing table (default: 220)]),
115 [AC_DEFINE_UNQUOTED(IPSEC_ROUTING_TABLE_PRIO, $withval) AC_SUBST(IPSEC_ROUTING_TABLE_PRIO, "$withval")],
116 [AC_DEFINE_UNQUOTED(IPSEC_ROUTING_TABLE_PRIO, 220) AC_SUBST(IPSEC_ROUTING_TABLE_PRIO, "220")]
4e411c83
MW
117)
118
6874bf69 119AC_ARG_WITH(
25b12c69 120 [uid],,[AC_MSG_ERROR([--with-uid is gone, use --with-user instead!])]
6874bf69
MW
121)
122
123AC_ARG_WITH(
25b12c69
MW
124 [gid],,[AC_MSG_ERROR([--with-gid is gone, use --with-group instead!])]
125)
126
127AC_ARG_WITH(
128 [user],
129 AS_HELP_STRING([--with-user=user],[change user of the daemons to "user" after startup (default is 0).]),
130 [AC_DEFINE_UNQUOTED(IPSEC_USER, "$withval") AC_SUBST(ipsecuser, "$withval")],
131 [AC_SUBST(ipsecuser, "root")]
132)
133
134AC_ARG_WITH(
135 [group],
136 AS_HELP_STRING([--with-group=group],[change group of the daemons to "group" after startup (default is 0).]),
137 [AC_DEFINE_UNQUOTED(IPSEC_GROUP, "$withval") AC_SUBST(ipsecgroup, "$withval")],
138 [AC_SUBST(ipsecgroup, "root")]
6874bf69
MW
139)
140
eb3e2705
MW
141dnl Will be extended to --with-capabilities=libcap|libcap2
142AC_ARG_WITH(
143 [capabilities],
144 AS_HELP_STRING([--with-capabilities=libcap],[capability dropping using libcap. Currenlty only the value "libcap" is supported (default is NO).]),
145 [capabilities="$withval"],
146 [capabilities=no]
147)
148
f2c2d395 149AC_ARG_ENABLE(
6b9290ff
MW
150 [curl],
151 AS_HELP_STRING([--enable-curl],[enable CURL fetcher plugin to fetch files via libcurl (default is NO). Requires libcurl.]),
152 [if test x$enableval = xyes; then
153 curl=true
154 fi]
f2c2d395 155)
f2c2d395
MW
156
157AC_ARG_ENABLE(
6b9290ff
MW
158 [ldap],
159 AS_HELP_STRING([--enable-ldap],[enable LDAP fetching plugin to fetch files via libldap (default is NO). Requires openLDAP.]),
160 [if test x$enableval = xyes; then
161 ldap=true
162 fi]
f2c2d395 163)
552cc11b
MW
164
165AC_ARG_ENABLE(
6b9290ff
MW
166 [aes],
167 AS_HELP_STRING([--disable-aes],[disable own AES software implementation plugin. (default is NO).]),
168 [if test x$enableval = xyes; then
169 aes=true
170 else
171 aes=false
172 fi],
173 aes=true
552cc11b 174)
552cc11b
MW
175
176AC_ARG_ENABLE(
6b9290ff
MW
177 [des],
178 AS_HELP_STRING([--disable-des],[disable own DES/3DES software implementation plugin. (default is NO).]),
179 [if test x$enableval = xyes; then
180 des=true
181 else
182 des=false
183 fi],
184 des=true
552cc11b 185)
552cc11b
MW
186
187AC_ARG_ENABLE(
6b9290ff
MW
188 [md5],
189 AS_HELP_STRING([--disable-md5],[disable own MD5 software implementation plugin. (default is NO).]),
190 [if test x$enableval = xyes; then
191 md5=true
192 else
193 md5=false
194 fi],
195 md5=true
552cc11b 196)
552cc11b
MW
197
198AC_ARG_ENABLE(
6b9290ff
MW
199 [sha1],
200 AS_HELP_STRING([--disable-sha1],[disable own SHA1 software implementation plugin. (default is NO).]),
201 [if test x$enableval = xyes; then
202 sha1=true
203 else
204 sha1=false
205 fi],
206 sha1=true
552cc11b 207)
552cc11b
MW
208
209AC_ARG_ENABLE(
6b9290ff
MW
210 [sha2],
211 AS_HELP_STRING([--disable-sha2],[disable own SHA256/SHA384/SHA512 software implementation plugin. (default is NO).]),
212 [if test x$enableval = xyes; then
213 sha2=true
214 else
215 sha2=false
216 fi],
217 sha2=true
552cc11b 218)
552cc11b
MW
219
220AC_ARG_ENABLE(
6b9290ff
MW
221 [fips-prf],
222 AS_HELP_STRING([--disable-fips-prf],[disable FIPS PRF software implementation plugin. (default is NO).]),
223 [if test x$enableval = xyes; then
224 fips_prf=true
225 else
226 fips_prf=false
227 fi],
228 fips_prf=true
552cc11b 229)
552cc11b
MW
230
231AC_ARG_ENABLE(
6b9290ff
MW
232 [gmp],
233 AS_HELP_STRING([--disable-gmp],[disable own GNU MP (libgmp) based crypto implementation plugin. (default is NO).]),
234 [if test x$enableval = xyes; then
235 gmp=true
236 else
237 gmp=false
238 fi],
239 gmp=true
552cc11b 240)
552cc11b 241
6a365f07
MW
242AC_ARG_ENABLE(
243 [random],
244 AS_HELP_STRING([--disable-random],[disable RNG implementation on top of /dev/(u)random. (default is NO).]),
245 [if test x$enableval = xyes; then
246 random=true
247 else
248 random=false
249 fi],
250 random=true
251)
252
552cc11b 253AC_ARG_ENABLE(
6b9290ff
MW
254 [x509],
255 AS_HELP_STRING([--disable-x509],[disable own X509 certificate implementation plugin. (default is NO).]),
256 [if test x$enableval = xyes; then
257 x509=true
258 else
259 x509=false
260 fi],
261 x509=true
552cc11b 262)
552cc11b 263
affd7a90
MW
264AC_ARG_ENABLE(
265 [pubkey],
266 AS_HELP_STRING([--disable-pubkey],[disable RAW public key support plugin. (default is NO).]),
267 [if test x$enableval = xyes; then
268 pubkey=true
269 else
270 pubkey=false
271 fi],
272 pubkey=true
273)
274
552cc11b 275AC_ARG_ENABLE(
6b9290ff
MW
276 [hmac],
277 AS_HELP_STRING([--disable-hmac],[disable HMAC crypto implementation plugin. (default is NO).]),
278 [if test x$enableval = xyes; then
279 hmac=true
280 else
281 hmac=false
282 fi],
283 hmac=true
552cc11b 284)
552cc11b 285
27d04e05
MW
286AC_ARG_ENABLE(
287 [xcbc],
288 AS_HELP_STRING([--disable-xcbc],[disable xcbc crypto implementation plugin. (default is NO).]),
289 [if test x$enableval = xyes; then
290 xcbc=true
291 else
292 xcbc=false
293 fi],
294 xcbc=true
295)
296
552cc11b 297AC_ARG_ENABLE(
6b9290ff
MW
298 [mysql],
299 AS_HELP_STRING([--enable-mysql],[enable MySQL database support (default is NO). Requires libmysqlclient_r.]),
300 [if test x$enableval = xyes; then
301 mysql=true
302 fi]
552cc11b 303)
552cc11b
MW
304
305AC_ARG_ENABLE(
6b9290ff
MW
306 [sqlite],
307 AS_HELP_STRING([--enable-sqlite],[enable SQLite database support (default is NO). Requires libsqlite3.]),
308 [if test x$enableval = xyes; then
309 sqlite=true
310 fi]
552cc11b 311)
f2c2d395 312
cbfb2aff 313AC_ARG_ENABLE(
6b9290ff
MW
314 [stroke],
315 AS_HELP_STRING([--disable-stroke],[disable charons stroke (pluto compatibility) configuration backend. (default is NO).]),
316 [if test x$enableval = xyes; then
317 stroke=true
318 else
319 stroke=false
320 fi],
321 stroke=true
cbfb2aff 322)
cbfb2aff 323
552cc11b 324AC_ARG_ENABLE(
5b7ec6d4 325 [medsrv],
9529fb68 326 AS_HELP_STRING([--enable-medsrv],[enable mediation server web frontend and daemon plugin (default is NO).]),
6b9290ff 327 [if test x$enableval = xyes; then
5b7ec6d4 328 medsrv=true
6b9290ff 329 fi]
552cc11b 330)
552cc11b 331
782db7ed
MW
332AC_ARG_ENABLE(
333 [medcli],
334 AS_HELP_STRING([--enable-medcli],[enable mediation client configuration database plugin (default is NO).]),
335 [if test x$enableval = xyes; then
336 medcli=true
337 fi]
338)
339
a84fb01b 340AC_ARG_ENABLE(
6b9290ff
MW
341 [smp],
342 AS_HELP_STRING([--enable-smp],[enable SMP configuration and control interface (default is NO). Requires libxml.]),
343 [if test x$enableval = xyes; then
344 smp=true
345 fi]
a84fb01b 346)
a84fb01b
MW
347
348AC_ARG_ENABLE(
6b9290ff
MW
349 [sql],
350 AS_HELP_STRING([--enable-sql],[enable SQL database configuration backend (default is NO).]),
351 [if test x$enableval = xyes; then
352 sql=true
353 fi]
a84fb01b 354)
a84fb01b 355
8f561d44 356AC_ARG_ENABLE(
6b9290ff
MW
357 [smartcard],
358 AS_HELP_STRING([--enable-smartcard],[enable smartcard support (default is NO).]),
359 [if test x$enableval = xyes; then
360 smartcard=true
361 fi]
8f561d44 362)
8f561d44 363
f2c2d395 364AC_ARG_ENABLE(
6b9290ff
MW
365 [cisco-quirks],
366 AS_HELP_STRING([--enable-cisco-quirks],[enable support of Cisco VPN client (default is NO).]),
367 [if test x$enableval = xyes; then
368 cisco_quirks=true
369 fi]
f2c2d395 370)
f2c2d395 371
2df45a73 372AC_ARG_ENABLE(
6b9290ff
MW
373 [leak-detective],
374 AS_HELP_STRING([--enable-leak-detective],[enable malloc hooks to find memory leaks (default is NO).]),
375 [if test x$enableval = xyes; then
376 leak_detective=true
377 fi]
2df45a73 378)
2df45a73 379
f2c2d395 380AC_ARG_ENABLE(
6b9290ff
MW
381 [unit-tests],
382 AS_HELP_STRING([--enable-unit-tests],[enable unit tests on IKEv2 daemon startup (default is NO).]),
383 [if test x$enableval = xyes; then
384 unittest=true
385 fi]
f2c2d395 386)
f2c2d395 387
552cc11b 388AC_ARG_ENABLE(
6b9290ff
MW
389 [eap-sim],
390 AS_HELP_STRING([--enable-eap-sim],[build SIM authenication module for EAP (default is NO).]),
391 [if test x$enableval = xyes; then
392 eap_sim=true
393 fi]
552cc11b 394)
552cc11b 395
b0f24449 396AC_ARG_ENABLE(
6b9290ff
MW
397 [eap-identity],
398 AS_HELP_STRING([--enable-eap-identity],[build EAP module providing EAP-Identity helper (default is NO).]),
399 [if test x$enableval = xyes; then
400 eap_identity=true
401 fi]
b0f24449 402)
cbfb2aff
MW
403
404AC_ARG_ENABLE(
6b9290ff
MW
405 [eap-md5],
406 AS_HELP_STRING([--enable-eap-md5],[build MD5 (CHAP) authenication module for EAP (default is NO).]),
407 [if test x$enableval = xyes; then
408 eap_md5=true
409 fi]
cbfb2aff 410)
26e24676 411
1caa265c
MW
412AC_ARG_ENABLE(
413 [eap-gtc],
414 AS_HELP_STRING([--enable-eap-gtc],[build PAM based GTC authenication module for EAP (default is NO).]),
415 [if test x$enableval = xyes; then
416 eap_gtc=true
417 fi]
418)
419
26e24676 420AC_ARG_ENABLE(
6b9290ff
MW
421 [eap-aka],
422 AS_HELP_STRING([--enable-eap-aka],[build AKA authentication module for EAP (default is NO).]),
423 [if test x$enableval = xyes; then
424 eap_aka=true
425 fi]
26e24676 426)
b0f24449 427
7b0c588a 428AC_ARG_ENABLE(
6b9290ff
MW
429 [nat-transport],
430 AS_HELP_STRING([--enable-nat-transport],[enable NAT traversal with IPsec transport mode (default is NO).]),
431 [if test x$enableval = xyes; then
432 nat_transport=true
433 fi]
7b0c588a 434)
7b0c588a
AS
435
436AC_ARG_ENABLE(
6b9290ff
MW
437 [vendor-id],
438 AS_HELP_STRING([--disable-vendor-id],[disable the sending of the strongSwan vendor ID (default is NO).]),
439 [if test x$enableval = xyes; then
440 vendor_id=true
441 else
442 vendor_id=false
443 fi],
444 vendor_id=true
7b0c588a 445)
7b0c588a 446
0e307360 447AC_ARG_ENABLE(
6b9290ff
MW
448 [xauth-vid],
449 AS_HELP_STRING([--disable-xauth-vid],[disable the sending of the XAUTH vendor ID (default is NO).]),
450 [if test x$enableval = xyes; then
451 xauth_vid=true
452 else
453 xauth_vid=false
454 fi],
455 xauth_vid=true
0e307360 456)
0e307360 457
fd4ded97 458AC_ARG_ENABLE(
6b9290ff
MW
459 [dumm],
460 AS_HELP_STRING([--enable-dumm],[build the DUMM UML test framework (default is NO).]),
461 [if test x$enableval = xyes; then
462 dumm=true
463 fi]
fd4ded97 464)
fd4ded97 465
552cc11b 466AC_ARG_ENABLE(
6b9290ff
MW
467 [fast],
468 AS_HELP_STRING([--enable-fast],[build libfast (FastCGI Application Server w/ templates (default is NO).]),
469 [if test x$enableval = xyes; then
470 fast=true
471 fi]
552cc11b 472)
552cc11b 473
b8c7453a 474AC_ARG_ENABLE(
6b9290ff
MW
475 [manager],
476 AS_HELP_STRING([--enable-manager],[build web management console (default is NO).]),
477 [if test x$enableval = xyes; then
478 manager=true
479 xml=true
480 fi]
b8c7453a 481)
b8c7453a 482
d5cc1758 483AC_ARG_ENABLE(
6b9290ff
MW
484 [mediation],
485 AS_HELP_STRING([--enable-mediation],[enable IKEv2 Mediation Extension (default is NO).]),
486 [if test x$enableval = xyes; then
487 me=true
488 fi]
d5cc1758 489)
d5cc1758 490
9ee1111d 491AC_ARG_ENABLE(
6b9290ff
MW
492 [integrity-test],
493 AS_HELP_STRING([--enable-integrity-test],[enable the integrity test of the crypto library (default is NO).]),
494 [if test x$enableval = xyes; then
495 integrity_test=true
496 fi]
9ee1111d 497)
9ee1111d
AS
498
499AC_ARG_ENABLE(
6b9290ff
MW
500 [self-test],
501 AS_HELP_STRING([--disable-self-test],[disable the self-test of the crypto library (default is NO).]),
502 [if test x$enableval = xyes; then
503 self_test=true
504 else
505 self_test=false
506 fi],
507 self_test=true
9ee1111d 508)
9ee1111d 509
733f336a 510AC_ARG_ENABLE(
6b9290ff
MW
511 [pluto],
512 AS_HELP_STRING([--disable-pluto],[disable the IKEv1 keying daemon pluto. (default is NO).]),
513 [if test x$enableval = xyes; then
514 pluto=true
515 else
516 pluto=false
517 fi],
518 pluto=true
cbfb2aff 519)
cbfb2aff
MW
520
521AC_ARG_ENABLE(
6b9290ff
MW
522 [charon],
523 AS_HELP_STRING([--disable-charon],[disable the IKEv2 keying daemon charon. (default is NO).]),
524 [if test x$enableval = xyes; then
525 charon=true
526 else
527 charon=false
528 fi],
529 charon=true
cbfb2aff 530)
cbfb2aff
MW
531
532AC_ARG_ENABLE(
6b9290ff
MW
533 [tools],
534 AS_HELP_STRING([--disable-tools],[disable additional utilities (openac and scepclient). (default is NO).]),
535 [if test x$enableval = xyes; then
536 tools=true
537 else
538 tools=false
539 fi],
540 tools=true
733f336a 541)
733f336a 542
1e9c46f1
MW
543AC_ARG_ENABLE(
544 [updown],
545 AS_HELP_STRING([--disable-updown],[disable installation of firewall scripts. (default is NO).]),
546 [if test x$enableval = xyes; then
547 updown=true
548 else
549 updown=false
550 fi],
551 updown=true
552)
553
36d62fac
MW
554AC_ARG_ENABLE(
555 [padlock],
556 AS_HELP_STRING([--enable-padlock],[enables VIA Padlock crypto plugin. (default is NO).]),
557 [if test x$enableval = xyes; then
558 padlock=true
559 else
560 padlock=false
561 fi],
562)
563
17353034
TB
564AC_ARG_ENABLE(
565 [openssl],
566 AS_HELP_STRING([--enable-openssl],[enables the OpenSSL crypto plugin. (default is NO).]),
567 [if test x$enableval = xyes; then
568 openssl=true
569 else
570 openssl=false
571 fi],
572)
573
61c46386
MW
574AC_ARG_ENABLE(
575 [uci],
576 AS_HELP_STRING([--enable-uci],[enable OpenWRT UCI configuration plugin (default is NO).]),
577 [if test x$enableval = xyes; then
578 uci=true
579 fi]
580)
581
6dbce9c8
MW
582AC_ARG_ENABLE(
583 [nm],
584 AS_HELP_STRING([--enable-nm],[enable NetworkManager plugin (default is NO).]),
585 [if test x$enableval = xyes; then
586 nm=true
587 fi]
588)
589
f2c2d395
MW
590dnl =========================
591dnl check required programs
592dnl =========================
593
594AC_PROG_INSTALL
595AC_PROG_LIBTOOL
596AC_PROG_LEX
597AC_PROG_YACC
4986554f 598AC_PROG_CC()
298b06c2
MW
599AC_PATH_PROG([GPERF], [gperf], [], [$PATH:/bin:/usr/bin:/usr/local/bin])
600AC_PATH_PROG([PERL], [perl], [], [$PATH:/bin:/usr/bin:/usr/local/bin])
f2c2d395 601
6b9290ff
MW
602dnl =========================
603dnl dependency calculation
604dnl =========================
f2c2d395 605
6b9290ff
MW
606if test x$pluto = xtrue; then
607 gmp=true;
608fi
609
610if test x$tools = xtrue; then
611 gmp=true;
612fi
552cc11b 613
6b9290ff
MW
614if test x$smp = xtrue; then
615 xml=true
616fi
617
618if test x$manager = xtrue; then
619 fast=true
620fi
621
782db7ed
MW
622if test x$medsrv = xtrue; then
623 me=true
9529fb68 624 fast=true
782db7ed
MW
625fi
626
627if test x$medcli = xtrue; then
628 me=true
629fi
630
6b9290ff
MW
631dnl ==========================================
632dnl check required libraries and header files
633dnl ==========================================
634
635AC_HAVE_LIBRARY(dl)
4986554f 636AC_CHECK_FUNCS(backtrace)
552cc11b 637AC_CHECK_FUNCS(dladdr)
e696757c 638
6b9290ff 639if test x$gmp = xtrue; then
f8277a83 640 AC_HAVE_LIBRARY([gmp],[LIBS="$LIBS"],[AC_MSG_ERROR([GNU Multi Precision library gmp not found])])
6b9290ff
MW
641 AC_MSG_CHECKING([gmp.h version >= 4.1.4])
642 AC_TRY_COMPILE(
643 [#include "gmp.h"],
644 [
645 #if (__GNU_MP_VERSION*100 + __GNU_MP_VERSION_MINOR*10 + __GNU_MP_VERSION_PATCHLEVEL) < 414
646 #error bad gmp
647 #endif
648 ],
649 [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]); AC_MSG_ERROR([No usable gmp.h found!])]
650 )
f2c2d395 651fi
6b9290ff
MW
652
653if test x$ldap = xtrue; then
654 AC_HAVE_LIBRARY([ldap],[LIBS="$LIBS"],[AC_MSG_ERROR([LDAP library ldap not found])])
655 AC_HAVE_LIBRARY([lber],[LIBS="$LIBS"],[AC_MSG_ERROR([LDAP library lber not found])])
656 AC_CHECK_HEADER([ldap.h],,[AC_MSG_ERROR([LDAP header ldap.h not found!])])
f2c2d395
MW
657fi
658
6b9290ff
MW
659if test x$curl = xtrue; then
660 AC_HAVE_LIBRARY([curl],[LIBS="$LIBS"],[AC_MSG_ERROR([CURL library curl not found])])
661 AC_CHECK_HEADER([curl/curl.h],,[AC_MSG_ERROR([CURL header curl/curl.h not found!])])
662fi
663
664if test x$xml = xtrue; then
a47486b5 665 PKG_CHECK_MODULES(xml, [libxml-2.0])
f2d6355e
MW
666 AC_SUBST(xml_CFLAGS)
667 AC_SUBST(xml_LIBS)
668fi
669
a47486b5
MW
670if test x$dumm = xtrue; then
671 PKG_CHECK_MODULES(gtk, [gtk+-2.0 vte])
672 AC_SUBST(gtk_CFLAGS)
673 AC_SUBST(gtk_LIBS)
674fi
675
6b9290ff
MW
676if test x$fast = xtrue; then
677 AC_HAVE_LIBRARY([neo_cgi],[LIBS="$LIBS"],[AC_MSG_ERROR([ClearSilver library neo_cgi not found!])])
678 AC_HAVE_LIBRARY([neo_utl],[LIBS="$LIBS"],[AC_MSG_ERROR([ClearSilver library neo_utl not found!])])
679 AC_HAVE_LIBRARY([z],[LIBS="$LIBS"],[AC_MSG_ERROR([ClearSilver dependency zlib not found!])])
680dnl autoconf does not like CamelCase!? How to fix this?
681dnl AC_CHECK_HEADER([ClearSilver/ClearSilver.h],,[AC_MSG_ERROR([ClearSilver header file ClearSilver/ClearSilver.h not found!])])
682
683 AC_HAVE_LIBRARY([fcgi],[LIBS="$LIBS"],[AC_MSG_ERROR([FastCGI library fcgi not found!])])
684 AC_CHECK_HEADER([fcgiapp.h],,[AC_MSG_ERROR([FastCGI header file fcgiapp.h not found!])])
a84fb01b
MW
685fi
686
6b9290ff
MW
687if test x$mysql = xtrue; then
688 AC_HAVE_LIBRARY([mysqlclient_r],[LIBS="$LIBS"],[AC_MSG_ERROR([MySQL library mysqlclient_r not found])])
689 AC_CHECK_HEADER([mysql/mysql.h],,[AC_MSG_ERROR([MySQL header mysql/mysql.h not found!])])
690fi
f2c2d395 691
f8277a83 692if test x$sqlite = xtrue; then
6b9290ff
MW
693 AC_HAVE_LIBRARY([sqlite3],[LIBS="$LIBS"],[AC_MSG_ERROR([SQLite library sqlite3 not found])])
694 AC_CHECK_HEADER([sqlite3.h],,[AC_MSG_ERROR([SQLite header sqlite3.h not found!])])
f8277a83
MW
695 AC_MSG_CHECKING([sqlite3_prepare_v2])
696 AC_TRY_COMPILE(
697 [#include <sqlite3.h>],
698 [
699 void *test = sqlite3_prepare_v2;
700 ],
701 [AC_MSG_RESULT([yes])]; AC_DEFINE_UNQUOTED(HAVE_SQLITE3_PREPARE_V2, 1), [AC_MSG_RESULT([no])])
7da767f7
MW
702 AC_MSG_CHECKING([sqlite3.h version >= 3.3.1])
703 AC_TRY_COMPILE(
704 [#include <sqlite3.h>],
705 [
706 #if SQLITE_VERSION_NUMBER < 3003001
707 #error bad sqlite
708 #endif
709 ],
710 [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]); AC_MSG_ERROR([SQLite version >= 3.3.1 required!])])
6b9290ff 711fi
f2c2d395 712
17353034 713if test x$openssl = xtrue; then
e581a31d 714 AC_HAVE_LIBRARY([crypto],[LIBS="$LIBS"],[AC_MSG_ERROR([OpenSSL crypto library not found])])
17353034
TB
715 AC_CHECK_HEADER([openssl/evp.h],,[AC_MSG_ERROR([OpenSSL header openssl/evp.h not found!])])
716fi
717
61c46386
MW
718if test x$uci = xtrue; then
719 AC_HAVE_LIBRARY([uci],[LIBS="$LIBS"],[AC_MSG_ERROR([UCI library libuci not found])])
720 AC_CHECK_HEADER([uci.h],,[AC_MSG_ERROR([UCI header uci.h not found!])])
721fi
722
6dbce9c8
MW
723if test x$nm = xtrue; then
724 PKG_CHECK_MODULES(nm, [NetworkManager libnm_glib_vpn gthread-2.0])
725 AC_SUBST(nm_CFLAGS)
726 AC_SUBST(nm_LIBS)
727fi
728
1caa265c
MW
729if test x$eap_gtc = xtrue; then
730 AC_HAVE_LIBRARY([pam],[LIBS="$LIBS"],[AC_MSG_ERROR([PAM library not found])])
731 AC_CHECK_HEADER([security/pam_appl.h],,[AC_MSG_ERROR([PAM header security/pam_appl.h not found!])])
732fi
733
eb3e2705
MW
734if test x$capabilities = xlibcap; then
735 AC_HAVE_LIBRARY([cap],[LIBS="$LIBS"],[AC_MSG_ERROR([libcap library not found])])
736 AC_CHECK_HEADER([sys/capability.h],,[AC_MSG_ERROR([libcap header sys/capability.h not found!])])
737fi
738
1ba62b55
MW
739dnl ======================================
740dnl collect all plugins for libstrongswan
741dnl ======================================
742
743libstrongswan_plugins=
744
745if test x$curl = xtrue; then
29727a44 746 libstrongswan_plugins=${libstrongswan_plugins}" curl"
1ba62b55
MW
747fi
748if test x$ldap = xtrue; then
29727a44 749 libstrongswan_plugins=${libstrongswan_plugins}" ldap"
1ba62b55
MW
750fi
751if test x$aes = xtrue; then
29727a44 752 libstrongswan_plugins=${libstrongswan_plugins}" aes"
1ba62b55
MW
753fi
754if test x$des = xtrue; then
29727a44 755 libstrongswan_plugins=${libstrongswan_plugins}" des"
1ba62b55 756fi
1ba62b55 757if test x$sha1 = xtrue; then
29727a44 758 libstrongswan_plugins=${libstrongswan_plugins}" sha1"
1ba62b55
MW
759fi
760if test x$sha2 = xtrue; then
29727a44 761 libstrongswan_plugins=${libstrongswan_plugins}" sha2"
1ba62b55 762fi
e577ad39
MW
763if test x$md5 = xtrue; then
764 libstrongswan_plugins=${libstrongswan_plugins}" md5"
765fi
1ba62b55 766if test x$fips_prf = xtrue; then
29727a44 767 libstrongswan_plugins=${libstrongswan_plugins}" fips-prf"
1ba62b55 768fi
1ba62b55 769if test x$random = xtrue; then
29727a44 770 libstrongswan_plugins=${libstrongswan_plugins}" random"
1ba62b55
MW
771fi
772if test x$x509 = xtrue; then
29727a44 773 libstrongswan_plugins=${libstrongswan_plugins}" x509"
1ba62b55
MW
774fi
775if test x$pubkey = xtrue; then
29727a44 776 libstrongswan_plugins=${libstrongswan_plugins}" pubkey"
1ba62b55 777fi
1ba62b55 778if test x$xcbc = xtrue; then
29727a44 779 libstrongswan_plugins=${libstrongswan_plugins}" xcbc"
1ba62b55 780fi
e577ad39
MW
781if test x$hmac = xtrue; then
782 libstrongswan_plugins=${libstrongswan_plugins}" hmac"
783fi
1ba62b55 784if test x$mysql = xtrue; then
29727a44 785 libstrongswan_plugins=${libstrongswan_plugins}" mysql"
1ba62b55
MW
786fi
787if test x$sqlite = xtrue; then
29727a44 788 libstrongswan_plugins=${libstrongswan_plugins}" sqlite"
1ba62b55
MW
789fi
790if test x$padlock = xtrue; then
29727a44 791 libstrongswan_plugins=${libstrongswan_plugins}" padlock"
1ba62b55
MW
792fi
793if test x$openssl = xtrue; then
29727a44 794 libstrongswan_plugins=${libstrongswan_plugins}" openssl"
1ba62b55 795fi
e577ad39
MW
796if test x$gmp = xtrue; then
797 libstrongswan_plugins=${libstrongswan_plugins}" gmp"
798fi
1ba62b55
MW
799
800AC_SUBST(libstrongswan_plugins)
801
6b9290ff
MW
802dnl =========================
803dnl set Makefile.am vars
804dnl =========================
f2c2d395 805
1ba62b55
MW
806dnl libstrongswan plugins
807dnl =====================
6b9290ff
MW
808AM_CONDITIONAL(USE_CURL, test x$curl = xtrue)
809AM_CONDITIONAL(USE_LDAP, test x$ldap = xtrue)
810AM_CONDITIONAL(USE_AES, test x$aes = xtrue)
811AM_CONDITIONAL(USE_DES, test x$des = xtrue)
812AM_CONDITIONAL(USE_MD5, test x$md5 = xtrue)
813AM_CONDITIONAL(USE_SHA1, test x$sha1 = xtrue)
814AM_CONDITIONAL(USE_SHA2, test x$sha2 = xtrue)
815AM_CONDITIONAL(USE_FIPS_PRF, test x$fips_prf = xtrue)
816AM_CONDITIONAL(USE_GMP, test x$gmp = xtrue)
6a365f07 817AM_CONDITIONAL(USE_RANDOM, test x$random = xtrue)
6b9290ff 818AM_CONDITIONAL(USE_X509, test x$x509 = xtrue)
affd7a90 819AM_CONDITIONAL(USE_PUBKEY, test x$pubkey = xtrue)
6b9290ff 820AM_CONDITIONAL(USE_HMAC, test x$hmac = xtrue)
27d04e05 821AM_CONDITIONAL(USE_XCBC, test x$xcbc = xtrue)
6b9290ff
MW
822AM_CONDITIONAL(USE_MYSQL, test x$mysql = xtrue)
823AM_CONDITIONAL(USE_SQLITE, test x$sqlite = xtrue)
1ba62b55
MW
824AM_CONDITIONAL(USE_PADLOCK, test x$padlock = xtrue)
825AM_CONDITIONAL(USE_OPENSSL, test x$openssl = xtrue)
826
827dnl charon plugins
828dnl ==============
6b9290ff 829AM_CONDITIONAL(USE_STROKE, test x$stroke = xtrue)
5b7ec6d4 830AM_CONDITIONAL(USE_MEDSRV, test x$medsrv = xtrue)
782db7ed 831AM_CONDITIONAL(USE_MEDCLI, test x$medcli = xtrue)
6dbce9c8 832AM_CONDITIONAL(USE_NM, test x$nm = xtrue)
61c46386 833AM_CONDITIONAL(USE_UCI, test x$uci = xtrue)
6b9290ff
MW
834AM_CONDITIONAL(USE_SMP, test x$smp = xtrue)
835AM_CONDITIONAL(USE_SQL, test x$sql = xtrue)
6b9290ff
MW
836AM_CONDITIONAL(USE_UNIT_TESTS, test x$unittest = xtrue)
837AM_CONDITIONAL(USE_EAP_SIM, test x$eap_sim = xtrue)
838AM_CONDITIONAL(USE_EAP_IDENTITY, test x$eap_identity = xtrue)
839AM_CONDITIONAL(USE_EAP_MD5, test x$eap_md5 = xtrue)
1caa265c 840AM_CONDITIONAL(USE_EAP_GTC, test x$eap_gtc = xtrue)
6b9290ff 841AM_CONDITIONAL(USE_EAP_AKA, test x$eap_aka = xtrue)
1ba62b55
MW
842
843dnl other options
844dnl =============
845AM_CONDITIONAL(USE_SMARTCARD, test x$smartcard = xtrue)
846AM_CONDITIONAL(USE_CISCO_QUIRKS, test x$cisco_quirks = xtrue)
847AM_CONDITIONAL(USE_LEAK_DETECTIVE, test x$leak_detective = xtrue)
6b9290ff
MW
848AM_CONDITIONAL(USE_NAT_TRANSPORT, test x$nat_transport = xtrue)
849AM_CONDITIONAL(USE_VENDORID, test x$vendor_id = xtrue)
850AM_CONDITIONAL(USE_XAUTH_VID, test x$xauth_vid = xtrue)
851AM_CONDITIONAL(USE_DUMM, test x$dumm = xtrue)
852AM_CONDITIONAL(USE_FAST, test x$fast = xtrue)
853AM_CONDITIONAL(USE_MANAGER, test x$manager = xtrue)
854AM_CONDITIONAL(USE_ME, test x$me = xtrue)
855AM_CONDITIONAL(USE_INTEGRITY_TEST, test x$integrity_test = xtrue)
856AM_CONDITIONAL(USE_SELF_TEST, test x$self_test = xtrue)
eb3e2705 857AM_CONDITIONAL(USE_CAPABILITIES, test x$capabilities = xlibcap)
6b9290ff
MW
858AM_CONDITIONAL(USE_PLUTO, test x$pluto = xtrue)
859AM_CONDITIONAL(USE_CHARON, test x$charon = xtrue)
860AM_CONDITIONAL(USE_TOOLS, test x$tools = xtrue)
1e9c46f1 861AM_CONDITIONAL(USE_UPDOWN, test x$updown = xtrue)
6b9290ff
MW
862AM_CONDITIONAL(USE_LIBSTRONGSWAN, test x$charon = xtrue -o x$tools = xtrue)
863AM_CONDITIONAL(USE_FILE_CONFIG, test x$pluto = xtrue -o x$stroke = xtrue)
f2c2d395 864
9e72d3bc
MW
865dnl ==============================
866dnl set global definitions
867dnl ==============================
868
869if test x$me = xtrue; then
870 AC_DEFINE(ME)
871fi
eb3e2705
MW
872if test x$capabilities = xlibcap; then
873 AC_DEFINE(CAPABILITIES)
874fi
9e72d3bc 875
f2c2d395
MW
876dnl ==============================
877dnl build Makefiles
878dnl ==============================
879
880AC_OUTPUT(
881 Makefile
882 src/Makefile
04a7b6d8 883 src/include/Makefile
f2c2d395 884 src/libstrongswan/Makefile
552cc11b
MW
885 src/libstrongswan/plugins/aes/Makefile
886 src/libstrongswan/plugins/des/Makefile
887 src/libstrongswan/plugins/md5/Makefile
888 src/libstrongswan/plugins/sha1/Makefile
889 src/libstrongswan/plugins/sha2/Makefile
890 src/libstrongswan/plugins/fips_prf/Makefile
891 src/libstrongswan/plugins/gmp/Makefile
6a365f07 892 src/libstrongswan/plugins/random/Makefile
552cc11b 893 src/libstrongswan/plugins/hmac/Makefile
27d04e05 894 src/libstrongswan/plugins/xcbc/Makefile
552cc11b 895 src/libstrongswan/plugins/x509/Makefile
affd7a90 896 src/libstrongswan/plugins/pubkey/Makefile
552cc11b
MW
897 src/libstrongswan/plugins/curl/Makefile
898 src/libstrongswan/plugins/ldap/Makefile
899 src/libstrongswan/plugins/mysql/Makefile
900 src/libstrongswan/plugins/sqlite/Makefile
36d62fac 901 src/libstrongswan/plugins/padlock/Makefile
17353034 902 src/libstrongswan/plugins/openssl/Makefile
af165431 903 src/libstrongswan/fips/Makefile
f2c2d395
MW
904 src/libcrypto/Makefile
905 src/libfreeswan/Makefile
906 src/pluto/Makefile
907 src/whack/Makefile
908 src/charon/Makefile
552cc11b
MW
909 src/charon/plugins/eap_aka/Makefile
910 src/charon/plugins/eap_identity/Makefile
911 src/charon/plugins/eap_md5/Makefile
1caa265c 912 src/charon/plugins/eap_gtc/Makefile
552cc11b 913 src/charon/plugins/eap_sim/Makefile
6b9290ff 914 src/charon/plugins/smp/Makefile
552cc11b 915 src/charon/plugins/sql/Makefile
5b7ec6d4 916 src/charon/plugins/medsrv/Makefile
782db7ed 917 src/charon/plugins/medcli/Makefile
6dbce9c8 918 src/charon/plugins/nm/Makefile
61c46386 919 src/charon/plugins/uci/Makefile
552cc11b
MW
920 src/charon/plugins/stroke/Makefile
921 src/charon/plugins/unit_tester/Makefile
f2c2d395
MW
922 src/stroke/Makefile
923 src/ipsec/Makefile
924 src/starter/Makefile
925 src/_updown/Makefile
926 src/_updown_espmark/Makefile
927 src/_copyright/Makefile
928 src/openac/Makefile
929 src/scepclient/Makefile
f2d6355e 930 src/dumm/Makefile
552cc11b 931 src/libfast/Makefile
b8c7453a 932 src/manager/Makefile
9529fb68 933 src/medsrv/Makefile
39b7780d 934 scripts/Makefile
9ee1111d 935 testing/Makefile
f2c2d395 936)