X-Git-Url: https://git.strongswan.org/?p=strongswan.git;a=blobdiff_plain;f=configure.in;h=9ec34b8789b55afedf782a2e53a53e254cc7343b;hp=26c3e53692a113a655aed5a6f4f0352d6ada62cb;hb=36d62fac65f5e079d551d3aa18e2c4d2a8551b2b;hpb=65456bfe330ae9604e7f3b76cd01d66cfcf751b2 diff --git a/configure.in b/configure.in index 26c3e53..9ec34b8 100644 --- a/configure.in +++ b/configure.in @@ -486,6 +486,16 @@ AC_ARG_ENABLE( tools=true ) +AC_ARG_ENABLE( + [padlock], + AS_HELP_STRING([--enable-padlock],[enables VIA Padlock crypto plugin. (default is NO).]), + [if test x$enableval = xyes; then + padlock=true + else + padlock=false + fi], +) + dnl ========================= dnl check required programs dnl ========================= @@ -632,6 +642,7 @@ AM_CONDITIONAL(USE_TOOLS, test x$tools = xtrue) AM_CONDITIONAL(USE_PLUTO_OR_CHARON, test x$pluto = xtrue -o x$charon = xtrue) AM_CONDITIONAL(USE_LIBSTRONGSWAN, test x$charon = xtrue -o x$tools = xtrue) AM_CONDITIONAL(USE_FILE_CONFIG, test x$pluto = xtrue -o x$stroke = xtrue) +AM_CONDITIONAL(USE_PADLOCK, test x$padlock = xtrue) dnl ============================== dnl set global definitions @@ -664,6 +675,7 @@ AC_OUTPUT( src/libstrongswan/plugins/ldap/Makefile src/libstrongswan/plugins/mysql/Makefile src/libstrongswan/plugins/sqlite/Makefile + src/libstrongswan/plugins/padlock/Makefile src/libcrypto/Makefile src/libfreeswan/Makefile src/pluto/Makefile