1 dnl configure.in for linux strongSwan
2 dnl Copyright (C) 2006 Martin Willi
3 dnl Hochschule fuer Technik Rapperswil
5 dnl This program is free software; you can redistribute it and/or modify it
6 dnl under the terms of the GNU General Public License as published by the
7 dnl Free Software Foundation; either version 2 of the License, or (at your
8 dnl option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 dnl This program is distributed in the hope that it will be useful, but
11 dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 dnl ===========================
16 dnl initialize & set some vars
17 dnl ===========================
19 AC_INIT(strongSwan,4.2.4)
20 AM_INIT_AUTOMAKE(tar-ustar)
22 AC_SUBST(confdir, '${sysconfdir}')
25 dnl =================================
26 dnl check --enable-xxx & --with-xxx
27 dnl =================================
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")]
38 AS_HELP_STRING([--with-xauth-module=lib],[set the path to the XAUTH module]),
39 [AC_DEFINE_UNQUOTED(XAUTH_DEFAULT_LIB, "$withval")],
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")]
50 AS_HELP_STRING([--with-resolv-conf=file],[set the file to store DNS server information other than "sysconfdir/resolv.conf"]),
51 [AC_SUBST(resolv_conf, "$withval")],
52 [AC_SUBST(resolv_conf, "${sysconfdir}/resolv.conf")]
57 AS_HELP_STRING([--with-strongswan-conf=file],[strongswan.conf file other than "sysconfdir/strongswan.conf"]),
58 [AC_SUBST(strongswan_conf, "$withval")],
59 [AC_SUBST(strongswan_conf, "${sysconfdir}/strongswan.conf")]
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")]
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")]
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")]
82 AC_SUBST(plugindir, "${ipsecdir}/plugins")
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")]
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")]
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")]
103 AC_SUBST(LINUX_HEADERS)
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")]
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")]
120 [uid],,[AC_MSG_ERROR([--with-uid is gone, use --with-user instead!])]
124 [gid],,[AC_MSG_ERROR([--with-gid is gone, use --with-group instead!])]
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")]
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")]
143 AS_HELP_STRING([--enable-curl],[enable CURL fetcher plugin to fetch files via libcurl (default is NO). Requires libcurl.]),
144 [if test x$enableval = xyes; then
151 AS_HELP_STRING([--enable-ldap],[enable LDAP fetching plugin to fetch files via libldap (default is NO). Requires openLDAP.]),
152 [if test x$enableval = xyes; then
159 AS_HELP_STRING([--disable-aes],[disable own AES software implementation plugin. (default is NO).]),
160 [if test x$enableval = xyes; then
170 AS_HELP_STRING([--disable-des],[disable own DES/3DES software implementation plugin. (default is NO).]),
171 [if test x$enableval = xyes; then
181 AS_HELP_STRING([--disable-md5],[disable own MD5 software implementation plugin. (default is NO).]),
182 [if test x$enableval = xyes; then
192 AS_HELP_STRING([--disable-sha1],[disable own SHA1 software implementation plugin. (default is NO).]),
193 [if test x$enableval = xyes; then
203 AS_HELP_STRING([--disable-sha2],[disable own SHA256/SHA384/SHA512 software implementation plugin. (default is NO).]),
204 [if test x$enableval = xyes; then
214 AS_HELP_STRING([--disable-fips-prf],[disable FIPS PRF software implementation plugin. (default is NO).]),
215 [if test x$enableval = xyes; then
225 AS_HELP_STRING([--disable-gmp],[disable own GNU MP (libgmp) based crypto implementation plugin. (default is NO).]),
226 [if test x$enableval = xyes; then
236 AS_HELP_STRING([--disable-random],[disable RNG implementation on top of /dev/(u)random. (default is NO).]),
237 [if test x$enableval = xyes; then
247 AS_HELP_STRING([--disable-x509],[disable own X509 certificate implementation plugin. (default is NO).]),
248 [if test x$enableval = xyes; then
258 AS_HELP_STRING([--disable-pubkey],[disable RAW public key support plugin. (default is NO).]),
259 [if test x$enableval = xyes; then
269 AS_HELP_STRING([--disable-hmac],[disable HMAC crypto implementation plugin. (default is NO).]),
270 [if test x$enableval = xyes; then
280 AS_HELP_STRING([--disable-xcbc],[disable xcbc crypto implementation plugin. (default is NO).]),
281 [if test x$enableval = xyes; then
291 AS_HELP_STRING([--enable-mysql],[enable MySQL database support (default is NO). Requires libmysqlclient_r.]),
292 [if test x$enableval = xyes; then
299 AS_HELP_STRING([--enable-sqlite],[enable SQLite database support (default is NO). Requires libsqlite3.]),
300 [if test x$enableval = xyes; then
307 AS_HELP_STRING([--disable-stroke],[disable charons stroke (pluto compatibility) configuration backend. (default is NO).]),
308 [if test x$enableval = xyes; then
318 AS_HELP_STRING([--enable-medsrv],[enable mediation server configuration database plugin (default is NO).]),
319 [if test x$enableval = xyes; then
326 AS_HELP_STRING([--enable-medcli],[enable mediation client configuration database plugin (default is NO).]),
327 [if test x$enableval = xyes; then
334 AS_HELP_STRING([--enable-smp],[enable SMP configuration and control interface (default is NO). Requires libxml.]),
335 [if test x$enableval = xyes; then
342 AS_HELP_STRING([--enable-sql],[enable SQL database configuration backend (default is NO).]),
343 [if test x$enableval = xyes; then
350 AS_HELP_STRING([--enable-smartcard],[enable smartcard support (default is NO).]),
351 [if test x$enableval = xyes; then
358 AS_HELP_STRING([--enable-cisco-quirks],[enable support of Cisco VPN client (default is NO).]),
359 [if test x$enableval = xyes; then
366 AS_HELP_STRING([--enable-leak-detective],[enable malloc hooks to find memory leaks (default is NO).]),
367 [if test x$enableval = xyes; then
374 AS_HELP_STRING([--enable-unit-tests],[enable unit tests on IKEv2 daemon startup (default is NO).]),
375 [if test x$enableval = xyes; then
382 AS_HELP_STRING([--enable-eap-sim],[build SIM authenication module for EAP (default is NO).]),
383 [if test x$enableval = xyes; then
390 AS_HELP_STRING([--enable-eap-identity],[build EAP module providing EAP-Identity helper (default is NO).]),
391 [if test x$enableval = xyes; then
398 AS_HELP_STRING([--enable-eap-md5],[build MD5 (CHAP) authenication module for EAP (default is NO).]),
399 [if test x$enableval = xyes; then
406 AS_HELP_STRING([--enable-eap-aka],[build AKA authentication module for EAP (default is NO).]),
407 [if test x$enableval = xyes; then
414 AS_HELP_STRING([--enable-nat-transport],[enable NAT traversal with IPsec transport mode (default is NO).]),
415 [if test x$enableval = xyes; then
422 AS_HELP_STRING([--disable-vendor-id],[disable the sending of the strongSwan vendor ID (default is NO).]),
423 [if test x$enableval = xyes; then
433 AS_HELP_STRING([--disable-xauth-vid],[disable the sending of the XAUTH vendor ID (default is NO).]),
434 [if test x$enableval = xyes; then
444 AS_HELP_STRING([--enable-dumm],[build the DUMM UML test framework (default is NO).]),
445 [if test x$enableval = xyes; then
452 AS_HELP_STRING([--enable-fast],[build libfast (FastCGI Application Server w/ templates (default is NO).]),
453 [if test x$enableval = xyes; then
460 AS_HELP_STRING([--enable-manager],[build web management console (default is NO).]),
461 [if test x$enableval = xyes; then
469 AS_HELP_STRING([--enable-mediation],[enable IKEv2 Mediation Extension (default is NO).]),
470 [if test x$enableval = xyes; then
477 AS_HELP_STRING([--enable-integrity-test],[enable the integrity test of the crypto library (default is NO).]),
478 [if test x$enableval = xyes; then
485 AS_HELP_STRING([--disable-self-test],[disable the self-test of the crypto library (default is NO).]),
486 [if test x$enableval = xyes; then
496 AS_HELP_STRING([--disable-pluto],[disable the IKEv1 keying daemon pluto. (default is NO).]),
497 [if test x$enableval = xyes; then
507 AS_HELP_STRING([--disable-charon],[disable the IKEv2 keying daemon charon. (default is NO).]),
508 [if test x$enableval = xyes; then
518 AS_HELP_STRING([--disable-tools],[disable additional utilities (openac and scepclient). (default is NO).]),
519 [if test x$enableval = xyes; then
529 AS_HELP_STRING([--enable-padlock],[enables VIA Padlock crypto plugin. (default is NO).]),
530 [if test x$enableval = xyes; then
539 AS_HELP_STRING([--enable-openssl],[enables the OpenSSL crypto plugin. (default is NO).]),
540 [if test x$enableval = xyes; then
547 dnl =========================
548 dnl check required programs
549 dnl =========================
556 AC_PATH_PROG([GPERF], [gperf], [], [$PATH:/bin:/usr/bin:/usr/local/bin])
557 AC_PATH_PROG([PERL], [perl], [], [$PATH:/bin:/usr/bin:/usr/local/bin])
559 dnl =========================
560 dnl dependency calculation
561 dnl =========================
563 if test x$pluto = xtrue; then
567 if test x$tools = xtrue; then
571 if test x$smp = xtrue; then
575 if test x$manager = xtrue; then
579 if test x$medsrv = xtrue; then
583 if test x$medcli = xtrue; then
587 dnl ==========================================
588 dnl check required libraries and header files
589 dnl ==========================================
592 AC_CHECK_FUNCS(backtrace)
593 AC_CHECK_FUNCS(dladdr)
595 AC_MSG_CHECKING([capset() definition])
597 [#include <linux/capset.h>],
601 [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]); AC_DEFINE_UNQUOTED(NO_CAPSET_DEFINED, 1)]
604 if test x$gmp = xtrue; then
605 AC_HAVE_LIBRARY([gmp],[LIBS="$LIBS"],[AC_MSG_ERROR([GNU Multi Precision library gmp not found])])
606 AC_MSG_CHECKING([gmp.h version >= 4.1.4])
610 #if (__GNU_MP_VERSION*100 + __GNU_MP_VERSION_MINOR*10 + __GNU_MP_VERSION_PATCHLEVEL) < 414
614 [AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no]); AC_MSG_ERROR([No usable gmp.h found!])]
618 if test x$ldap = xtrue; then
619 AC_HAVE_LIBRARY([ldap],[LIBS="$LIBS"],[AC_MSG_ERROR([LDAP library ldap not found])])
620 AC_HAVE_LIBRARY([lber],[LIBS="$LIBS"],[AC_MSG_ERROR([LDAP library lber not found])])
621 AC_CHECK_HEADER([ldap.h],,[AC_MSG_ERROR([LDAP header ldap.h not found!])])
624 if test x$curl = xtrue; then
625 AC_HAVE_LIBRARY([curl],[LIBS="$LIBS"],[AC_MSG_ERROR([CURL library curl not found])])
626 AC_CHECK_HEADER([curl/curl.h],,[AC_MSG_ERROR([CURL header curl/curl.h not found!])])
629 if test x$xml = xtrue; then
630 PKG_CHECK_MODULES(xml, [libxml-2.0])
635 if test x$dumm = xtrue; then
636 PKG_CHECK_MODULES(gtk, [gtk+-2.0 vte])
641 if test x$fast = xtrue; then
642 AC_HAVE_LIBRARY([neo_cgi],[LIBS="$LIBS"],[AC_MSG_ERROR([ClearSilver library neo_cgi not found!])])
643 AC_HAVE_LIBRARY([neo_utl],[LIBS="$LIBS"],[AC_MSG_ERROR([ClearSilver library neo_utl not found!])])
644 AC_HAVE_LIBRARY([z],[LIBS="$LIBS"],[AC_MSG_ERROR([ClearSilver dependency zlib not found!])])
645 dnl autoconf does not like CamelCase!? How to fix this?
646 dnl AC_CHECK_HEADER([ClearSilver/ClearSilver.h],,[AC_MSG_ERROR([ClearSilver header file ClearSilver/ClearSilver.h not found!])])
648 AC_HAVE_LIBRARY([fcgi],[LIBS="$LIBS"],[AC_MSG_ERROR([FastCGI library fcgi not found!])])
649 AC_CHECK_HEADER([fcgiapp.h],,[AC_MSG_ERROR([FastCGI header file fcgiapp.h not found!])])
652 if test x$mysql = xtrue; then
653 AC_HAVE_LIBRARY([mysqlclient_r],[LIBS="$LIBS"],[AC_MSG_ERROR([MySQL library mysqlclient_r not found])])
654 AC_CHECK_HEADER([mysql/mysql.h],,[AC_MSG_ERROR([MySQL header mysql/mysql.h not found!])])
657 if test x$sqlite = xtrue; then
658 AC_HAVE_LIBRARY([sqlite3],[LIBS="$LIBS"],[AC_MSG_ERROR([SQLite library sqlite3 not found])])
659 AC_CHECK_HEADER([sqlite3.h],,[AC_MSG_ERROR([SQLite header sqlite3.h not found!])])
660 AC_MSG_CHECKING([sqlite3_prepare_v2])
662 [#include <sqlite3.h>],
664 void *test = sqlite3_prepare_v2;
666 [AC_MSG_RESULT([yes])]; AC_DEFINE_UNQUOTED(HAVE_SQLITE3_PREPARE_V2, 1), [AC_MSG_RESULT([no])])
669 if test x$openssl = xtrue; then
670 AC_HAVE_LIBRARY([crypto],[LIBS="$LIBS"],[AC_MSG_ERROR([OpenSSL crypto library not found])])
671 AC_CHECK_HEADER([openssl/evp.h],,[AC_MSG_ERROR([OpenSSL header openssl/evp.h not found!])])
674 dnl ======================================
675 dnl collect all plugins for libstrongswan
676 dnl ======================================
678 libstrongswan_plugins=
680 if test x$curl = xtrue; then
681 libstrongswan_plugins+=" curl"
683 if test x$ldap = xtrue; then
684 libstrongswan_plugins+=" ldap"
686 if test x$aes = xtrue; then
687 libstrongswan_plugins+=" aes"
689 if test x$des = xtrue; then
690 libstrongswan_plugins+=" des"
692 if test x$md5 = xtrue; then
693 libstrongswan_plugins+=" md5"
695 if test x$sha1 = xtrue; then
696 libstrongswan_plugins+=" sha1"
698 if test x$sha2 = xtrue; then
699 libstrongswan_plugins+=" sha2"
701 if test x$fips_prf = xtrue; then
702 libstrongswan_plugins+=" fips-prf"
704 if test x$gmp = xtrue; then
705 libstrongswan_plugins+=" gmp"
707 if test x$random = xtrue; then
708 libstrongswan_plugins+=" random"
710 if test x$x509 = xtrue; then
711 libstrongswan_plugins+=" x509"
713 if test x$pubkey = xtrue; then
714 libstrongswan_plugins+=" pubkey"
716 if test x$hmac = xtrue; then
717 libstrongswan_plugins+=" hmac"
719 if test x$xcbc = xtrue; then
720 libstrongswan_plugins+=" xcbc"
722 if test x$mysql = xtrue; then
723 libstrongswan_plugins+=" mysql"
725 if test x$sqlite = xtrue; then
726 libstrongswan_plugins+=" sqlite"
728 if test x$padlock = xtrue; then
729 libstrongswan_plugins+=" padlock"
731 if test x$openssl = xtrue; then
732 libstrongswan_plugins+=" openssl"
735 AC_SUBST(libstrongswan_plugins)
737 dnl =========================
738 dnl set Makefile.am vars
739 dnl =========================
741 dnl libstrongswan plugins
742 dnl =====================
743 AM_CONDITIONAL(USE_CURL, test x$curl = xtrue)
744 AM_CONDITIONAL(USE_LDAP, test x$ldap = xtrue)
745 AM_CONDITIONAL(USE_AES, test x$aes = xtrue)
746 AM_CONDITIONAL(USE_DES, test x$des = xtrue)
747 AM_CONDITIONAL(USE_MD5, test x$md5 = xtrue)
748 AM_CONDITIONAL(USE_SHA1, test x$sha1 = xtrue)
749 AM_CONDITIONAL(USE_SHA2, test x$sha2 = xtrue)
750 AM_CONDITIONAL(USE_FIPS_PRF, test x$fips_prf = xtrue)
751 AM_CONDITIONAL(USE_GMP, test x$gmp = xtrue)
752 AM_CONDITIONAL(USE_RANDOM, test x$random = xtrue)
753 AM_CONDITIONAL(USE_X509, test x$x509 = xtrue)
754 AM_CONDITIONAL(USE_PUBKEY, test x$pubkey = xtrue)
755 AM_CONDITIONAL(USE_HMAC, test x$hmac = xtrue)
756 AM_CONDITIONAL(USE_XCBC, test x$xcbc = xtrue)
757 AM_CONDITIONAL(USE_MYSQL, test x$mysql = xtrue)
758 AM_CONDITIONAL(USE_SQLITE, test x$sqlite = xtrue)
759 AM_CONDITIONAL(USE_PADLOCK, test x$padlock = xtrue)
760 AM_CONDITIONAL(USE_OPENSSL, test x$openssl = xtrue)
764 AM_CONDITIONAL(USE_STROKE, test x$stroke = xtrue)
765 AM_CONDITIONAL(USE_MEDSRV, test x$medsrv = xtrue)
766 AM_CONDITIONAL(USE_MEDCLI, test x$medcli = xtrue)
767 AM_CONDITIONAL(USE_SMP, test x$smp = xtrue)
768 AM_CONDITIONAL(USE_SQL, test x$sql = xtrue)
769 AM_CONDITIONAL(USE_UNIT_TESTS, test x$unittest = xtrue)
770 AM_CONDITIONAL(USE_EAP_SIM, test x$eap_sim = xtrue)
771 AM_CONDITIONAL(USE_EAP_IDENTITY, test x$eap_identity = xtrue)
772 AM_CONDITIONAL(USE_EAP_MD5, test x$eap_md5 = xtrue)
773 AM_CONDITIONAL(USE_EAP_AKA, test x$eap_aka = xtrue)
777 AM_CONDITIONAL(USE_SMARTCARD, test x$smartcard = xtrue)
778 AM_CONDITIONAL(USE_CISCO_QUIRKS, test x$cisco_quirks = xtrue)
779 AM_CONDITIONAL(USE_LEAK_DETECTIVE, test x$leak_detective = xtrue)
780 AM_CONDITIONAL(USE_NAT_TRANSPORT, test x$nat_transport = xtrue)
781 AM_CONDITIONAL(USE_VENDORID, test x$vendor_id = xtrue)
782 AM_CONDITIONAL(USE_XAUTH_VID, test x$xauth_vid = xtrue)
783 AM_CONDITIONAL(USE_DUMM, test x$dumm = xtrue)
784 AM_CONDITIONAL(USE_FAST, test x$fast = xtrue)
785 AM_CONDITIONAL(USE_MANAGER, test x$manager = xtrue)
786 AM_CONDITIONAL(USE_ME, test x$me = xtrue)
787 AM_CONDITIONAL(USE_INTEGRITY_TEST, test x$integrity_test = xtrue)
788 AM_CONDITIONAL(USE_SELF_TEST, test x$self_test = xtrue)
789 AM_CONDITIONAL(USE_PLUTO, test x$pluto = xtrue)
790 AM_CONDITIONAL(USE_CHARON, test x$charon = xtrue)
791 AM_CONDITIONAL(USE_TOOLS, test x$tools = xtrue)
792 AM_CONDITIONAL(USE_PLUTO_OR_CHARON, test x$pluto = xtrue -o x$charon = xtrue)
793 AM_CONDITIONAL(USE_LIBSTRONGSWAN, test x$charon = xtrue -o x$tools = xtrue)
794 AM_CONDITIONAL(USE_FILE_CONFIG, test x$pluto = xtrue -o x$stroke = xtrue)
796 dnl ==============================
797 dnl set global definitions
798 dnl ==============================
800 if test x$me = xtrue; then
804 dnl ==============================
806 dnl ==============================
812 src/libstrongswan/Makefile
813 src/libstrongswan/plugins/aes/Makefile
814 src/libstrongswan/plugins/des/Makefile
815 src/libstrongswan/plugins/md5/Makefile
816 src/libstrongswan/plugins/sha1/Makefile
817 src/libstrongswan/plugins/sha2/Makefile
818 src/libstrongswan/plugins/fips_prf/Makefile
819 src/libstrongswan/plugins/gmp/Makefile
820 src/libstrongswan/plugins/random/Makefile
821 src/libstrongswan/plugins/hmac/Makefile
822 src/libstrongswan/plugins/xcbc/Makefile
823 src/libstrongswan/plugins/x509/Makefile
824 src/libstrongswan/plugins/pubkey/Makefile
825 src/libstrongswan/plugins/curl/Makefile
826 src/libstrongswan/plugins/ldap/Makefile
827 src/libstrongswan/plugins/mysql/Makefile
828 src/libstrongswan/plugins/sqlite/Makefile
829 src/libstrongswan/plugins/padlock/Makefile
830 src/libstrongswan/plugins/openssl/Makefile
831 src/libcrypto/Makefile
832 src/libfreeswan/Makefile
836 src/charon/plugins/eap_aka/Makefile
837 src/charon/plugins/eap_identity/Makefile
838 src/charon/plugins/eap_md5/Makefile
839 src/charon/plugins/eap_sim/Makefile
840 src/charon/plugins/smp/Makefile
841 src/charon/plugins/sql/Makefile
842 src/charon/plugins/medsrv/Makefile
843 src/charon/plugins/medcli/Makefile
844 src/charon/plugins/stroke/Makefile
845 src/charon/plugins/unit_tester/Makefile
850 src/_updown_espmark/Makefile
851 src/_copyright/Makefile
853 src/scepclient/Makefile