prototype of mediation client database plugin

This commit is contained in:
Martin Willi
2008-05-14 07:26:19 +00:00
parent 0fd4caea66
commit 782db7edd1
10 changed files with 889 additions and 0 deletions
+18
View File
@@ -322,6 +322,14 @@ AC_ARG_ENABLE(
fi]
)
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.]),
@@ -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