]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
added enable-cisco-quirks configure option
authorAndreas Steffen <andreas.steffen@strongswan.org>
Thu, 4 Jan 2007 14:26:27 +0000 (14:26 -0000)
committerAndreas Steffen <andreas.steffen@strongswan.org>
Thu, 4 Jan 2007 14:26:27 +0000 (14:26 -0000)
configure.in

index 8cc897944ddf5a3f0b1a7162c133590c7da57afb..dbbc1e38e036386b0257081cf87ff4a0381726ae 100644 (file)
@@ -73,6 +73,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).]),