diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-01-04 14:26:27 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-01-04 14:26:27 +0000 |
commit | 2df45a738eb4c7008d41d959596d866a4b3f63e2 (patch) | |
tree | 1df25d4f8e53654f89251ff830c8c33e45e89e27 /configure.in | |
parent | fc9f75ed0f0b86d845ae41967ffa4beb0f1115f9 (diff) | |
download | strongswan-2df45a738eb4c7008d41d959596d866a4b3f63e2.tar.bz2 strongswan-2df45a738eb4c7008d41d959596d866a4b3f63e2.tar.xz |
added enable-cisco-quirks configure option
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 8cc897944..dbbc1e38e 100644 --- a/configure.in +++ b/configure.in @@ -74,6 +74,14 @@ AC_ARG_ENABLE( AM_CONDITIONAL(USE_SMARTCARD, test x$smartcard = xtrue) AC_ARG_ENABLE( + [cisco_quirks], + AS_HELP_STRING([--enable-cisco-quirks],[enable support of Cisco VPN client (default is NO).]), + cisco_quirks=true + AC_DEFINE(CISCO_QUIRKS) +) +AM_CONDITIONAL(USE_CISCO_QUIRKS, test x$cisco_quirks = xtrue) + +AC_ARG_ENABLE( [leak-detective], AS_HELP_STRING([--enable-leak-detective],[enable malloc hooks to find memory leaks (default is NO).]), leak_detective=true |