diff options
author | Martin Willi <martin@strongswan.org> | 2009-10-19 15:37:36 +0200 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2009-11-12 10:33:58 +0100 |
commit | f8330d03953bb35fdaec91cabf6e0fd38dd5a144 (patch) | |
tree | 6124bcb001d78137d80f052615b953622e35b5d8 /configure.in | |
parent | 44e8eea17aeae8268ce695aa3674cbaa50f01a29 (diff) | |
download | strongswan-f8330d03953bb35fdaec91cabf6e0fd38dd5a144.tar.bz2 strongswan-f8330d03953bb35fdaec91cabf6e0fd38dd5a144.tar.xz |
Added a libsimaka library with shared message handling code for EAP-SIM/AKA
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.in b/configure.in index a6fdfa748..3edecc62e 100644 --- a/configure.in +++ b/configure.in @@ -201,10 +201,12 @@ fi if test x$eap_aka = xtrue; then fips_prf=true; sha1=true; + simaka=true; fi if test x$eap_sim = xtrue; then fips_prf=true; + simaka=true; fi if test x$fips_prf = xtrue; then @@ -745,6 +747,7 @@ AM_CONDITIONAL(USE_SCRIPTS, test x$scripts = xtrue) AM_CONDITIONAL(USE_LIBSTRONGSWAN, test x$charon = xtrue -o x$pluto = xtrue -o x$tools = xtrue) AM_CONDITIONAL(USE_FILE_CONFIG, test x$pluto = xtrue -o x$stroke = xtrue) AM_CONDITIONAL(USE_VSTR, test x$vstr = xtrue) +AM_CONDITIONAL(USE_SIMAKA, test x$simaka = xtrue) dnl ============================== dnl set global definitions @@ -795,6 +798,7 @@ AC_OUTPUT( src/libstrongswan/plugins/agent/Makefile src/libstrongswan/plugins/test_vectors/Makefile src/libfreeswan/Makefile + src/libsimaka/Makefile src/pluto/Makefile src/whack/Makefile src/charon/Makefile |