diff options
author | Martin Willi <martin@strongswan.org> | 2008-05-14 07:26:19 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2008-05-14 07:26:19 +0000 |
commit | 782db7edd1a6c2476cb5c3ca44c9d66440c11f57 (patch) | |
tree | 73e700b472193ef03e46e85105fcf005881f75ba /configure.in | |
parent | 0fd4caea6624ce250daa86f5ff8ef8a46a2f9f2b (diff) | |
download | strongswan-782db7edd1a6c2476cb5c3ca44c9d66440c11f57.tar.bz2 strongswan-782db7edd1a6c2476cb5c3ca44c9d66440c11f57.tar.xz |
prototype of mediation client database plugin
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/configure.in b/configure.in index cfc90ab19..6611330ee 100644 --- a/configure.in +++ b/configure.in @@ -323,6 +323,14 @@ AC_ARG_ENABLE( ) AC_ARG_ENABLE( + [medcli], + AS_HELP_STRING([--enable-medcli],[enable mediation client configuration database plugin (default is NO).]), + [if test x$enableval = xyes; then + medcli=true + fi] +) + +AC_ARG_ENABLE( [smp], AS_HELP_STRING([--enable-smp],[enable SMP configuration and control interface (default is NO). Requires libxml.]), [if test x$enableval = xyes; then @@ -569,6 +577,14 @@ if test x$manager = xtrue; then fast=true fi +if test x$medsrv = xtrue; then + me=true +fi + +if test x$medcli = xtrue; then + me=true +fi + dnl ========================================== dnl check required libraries and header files dnl ========================================== @@ -678,6 +694,7 @@ AM_CONDITIONAL(USE_MYSQL, test x$mysql = xtrue) AM_CONDITIONAL(USE_SQLITE, test x$sqlite = xtrue) AM_CONDITIONAL(USE_STROKE, test x$stroke = xtrue) AM_CONDITIONAL(USE_MEDSRV, test x$medsrv = xtrue) +AM_CONDITIONAL(USE_MEDCLI, test x$medcli = xtrue) AM_CONDITIONAL(USE_SMP, test x$smp = xtrue) AM_CONDITIONAL(USE_SQL, test x$sql = xtrue) AM_CONDITIONAL(USE_SMARTCARD, test x$smartcard = xtrue) @@ -753,6 +770,7 @@ AC_OUTPUT( src/charon/plugins/smp/Makefile src/charon/plugins/sql/Makefile src/charon/plugins/medsrv/Makefile + src/charon/plugins/medcli/Makefile src/charon/plugins/stroke/Makefile src/charon/plugins/unit_tester/Makefile src/stroke/Makefile |