Moving attr-sql plugin from libstrongswan to libhydra.
This commit is contained in:
+10
-8
@@ -632,11 +632,12 @@ if test x$integrity_test = xtrue; then
|
|||||||
)
|
)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl ======================================
|
dnl ==========================================================
|
||||||
dnl collect all plugins for libstrongswan
|
dnl collect all plugins for libstrongswan, libhydra and pluto
|
||||||
dnl ======================================
|
dnl ==========================================================
|
||||||
|
|
||||||
libstrongswan_plugins=
|
libstrongswan_plugins=
|
||||||
|
libhydra_plugins=
|
||||||
pluto_plugins=
|
pluto_plugins=
|
||||||
|
|
||||||
if test x$test_vectors = xtrue; then
|
if test x$test_vectors = xtrue; then
|
||||||
@@ -714,10 +715,6 @@ if test x$sqlite = xtrue; then
|
|||||||
libstrongswan_plugins=${libstrongswan_plugins}" sqlite"
|
libstrongswan_plugins=${libstrongswan_plugins}" sqlite"
|
||||||
pluto_plugins=${pluto_plugins}" sqlite"
|
pluto_plugins=${pluto_plugins}" sqlite"
|
||||||
fi
|
fi
|
||||||
if test x$attr_sql = xtrue -o x$sql = xtrue; then
|
|
||||||
libstrongswan_plugins=${libstrongswan_plugins}" attr-sql"
|
|
||||||
pluto_plugins=${pluto_plugins}" attr-sql"
|
|
||||||
fi
|
|
||||||
if test x$padlock = xtrue; then
|
if test x$padlock = xtrue; then
|
||||||
libstrongswan_plugins=${libstrongswan_plugins}" padlock"
|
libstrongswan_plugins=${libstrongswan_plugins}" padlock"
|
||||||
fi
|
fi
|
||||||
@@ -746,8 +743,13 @@ if test x$gmp = xtrue; then
|
|||||||
libstrongswan_plugins=${libstrongswan_plugins}" gmp"
|
libstrongswan_plugins=${libstrongswan_plugins}" gmp"
|
||||||
pluto_plugins=${pluto_plugins}" gmp"
|
pluto_plugins=${pluto_plugins}" gmp"
|
||||||
fi
|
fi
|
||||||
|
if test x$attr_sql = xtrue -o x$sql = xtrue; then
|
||||||
|
libhydra_plugins=${libhydra_plugins}" attr-sql"
|
||||||
|
pluto_plugins=${pluto_plugins}" attr-sql"
|
||||||
|
fi
|
||||||
|
|
||||||
AC_SUBST(libstrongswan_plugins)
|
AC_SUBST(libstrongswan_plugins)
|
||||||
|
AC_SUBST(libhydra_plugins)
|
||||||
AC_SUBST(pluto_plugins)
|
AC_SUBST(pluto_plugins)
|
||||||
|
|
||||||
dnl =========================
|
dnl =========================
|
||||||
@@ -892,13 +894,13 @@ AC_OUTPUT(
|
|||||||
src/libstrongswan/plugins/ldap/Makefile
|
src/libstrongswan/plugins/ldap/Makefile
|
||||||
src/libstrongswan/plugins/mysql/Makefile
|
src/libstrongswan/plugins/mysql/Makefile
|
||||||
src/libstrongswan/plugins/sqlite/Makefile
|
src/libstrongswan/plugins/sqlite/Makefile
|
||||||
src/libstrongswan/plugins/attr_sql/Makefile
|
|
||||||
src/libstrongswan/plugins/padlock/Makefile
|
src/libstrongswan/plugins/padlock/Makefile
|
||||||
src/libstrongswan/plugins/openssl/Makefile
|
src/libstrongswan/plugins/openssl/Makefile
|
||||||
src/libstrongswan/plugins/gcrypt/Makefile
|
src/libstrongswan/plugins/gcrypt/Makefile
|
||||||
src/libstrongswan/plugins/agent/Makefile
|
src/libstrongswan/plugins/agent/Makefile
|
||||||
src/libstrongswan/plugins/test_vectors/Makefile
|
src/libstrongswan/plugins/test_vectors/Makefile
|
||||||
src/libhydra/Makefile
|
src/libhydra/Makefile
|
||||||
|
src/libhydra/plugins/attr_sql/Makefile
|
||||||
src/libfreeswan/Makefile
|
src/libfreeswan/Makefile
|
||||||
src/libsimaka/Makefile
|
src/libsimaka/Makefile
|
||||||
src/pluto/Makefile
|
src/pluto/Makefile
|
||||||
|
|||||||
@@ -133,7 +133,7 @@ else
|
|||||||
SUBDIRS = .
|
SUBDIRS = .
|
||||||
endif
|
endif
|
||||||
|
|
||||||
PLUGINS = ${libstrongswan_plugins}
|
PLUGINS = ${libstrongswan_plugins} ${libhydra_plugins}
|
||||||
|
|
||||||
if USE_LOAD_TESTER
|
if USE_LOAD_TESTER
|
||||||
SUBDIRS += plugins/load_tester
|
SUBDIRS += plugins/load_tester
|
||||||
|
|||||||
@@ -21,10 +21,10 @@ else
|
|||||||
SUBDIRS = .
|
SUBDIRS = .
|
||||||
endif
|
endif
|
||||||
|
|
||||||
#if USE_FOO
|
if USE_ATTR_SQL
|
||||||
# SUBDIRS += plugins/foo
|
SUBDIRS += plugins/attr_sql
|
||||||
#if MONOLITHIC
|
if MONOLITHIC
|
||||||
# libhydra_la_LIBADD += plugins/foo/libstrongswan-foo.la
|
libhydra_la_LIBADD += plugins/attr_sql/libstrongswan-attr-sql.la
|
||||||
#endif
|
endif
|
||||||
#endif
|
endif
|
||||||
|
|
||||||
|
|||||||
@@ -269,13 +269,6 @@ if MONOLITHIC
|
|||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if USE_ATTR_SQL
|
|
||||||
SUBDIRS += plugins/attr_sql
|
|
||||||
if MONOLITHIC
|
|
||||||
libstrongswan_la_LIBADD += plugins/attr_sql/libstrongswan-attr-sql.la
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
if USE_PADLOCK
|
if USE_PADLOCK
|
||||||
SUBDIRS += plugins/padlock
|
SUBDIRS += plugins/padlock
|
||||||
if MONOLITHIC
|
if MONOLITHIC
|
||||||
|
|||||||
Reference in New Issue
Block a user