diff options
author | Martin Willi <martin@strongswan.org> | 2007-03-13 15:01:02 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2007-03-13 15:01:02 +0000 |
commit | b0f24449ddaff4a66b7b88ceef796f511cb6cb6d (patch) | |
tree | bfe36c7acf4873c1daec42b11e8d0247f1c07dbf /configure.in | |
parent | d2940fd78cd62f3499415fc9b3235430d99e92f0 (diff) | |
download | strongswan-b0f24449ddaff4a66b7b88ceef796f511cb6cb6d.tar.bz2 strongswan-b0f24449ddaff4a66b7b88ceef796f511cb6cb6d.tar.xz |
added EAP-SIM authentication
client side only
uses an external SIM reader library specified with SIM_READER_LIB
untested
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.in b/configure.in index aa8b624fa..03f0f0e49 100644 --- a/configure.in +++ b/configure.in @@ -119,6 +119,13 @@ AC_ARG_ENABLE( ) AM_CONDITIONAL(USE_LEAK_DETECTIVE, test x$leak_detective = xtrue) +AC_ARG_ENABLE( + [eap-sim], + AS_HELP_STRING([--enable-eap-sim],[build SIM authenication module for EAP (default is NO).]), + eap_sim=true +) +AM_CONDITIONAL(BUILD_EAP_SIM, test x$eap_sim = xtrue) + dnl ========================= dnl check required programs dnl ========================= |