diff options
-rw-r--r-- | conf/Makefile.am | 1 | ||||
-rw-r--r-- | conf/options/aikgen.opt | 2 | ||||
-rw-r--r-- | configure.ac | 1 |
3 files changed, 4 insertions, 0 deletions
diff --git a/conf/Makefile.am b/conf/Makefile.am index 3b571f643..8ca797156 100644 --- a/conf/Makefile.am +++ b/conf/Makefile.am @@ -8,6 +8,7 @@ optionstemplatedir = $(templatesdir)/strongswan.d pluginstemplatedir = $(templatesdir)/plugins options = \ + options/aikgen.opt \ options/attest.opt \ options/charon.opt \ options/charon-logging.opt \ diff --git a/conf/options/aikgen.opt b/conf/options/aikgen.opt new file mode 100644 index 000000000..2d33947fd --- /dev/null +++ b/conf/options/aikgen.opt @@ -0,0 +1,2 @@ +aikgen.load = + Plugins to load in ipsec aikgen tool. diff --git a/configure.ac b/configure.ac index 9bea699cf..25b699fc0 100644 --- a/configure.ac +++ b/configure.ac @@ -1519,6 +1519,7 @@ fi strongswan_options= +AM_COND_IF([USE_AIKGEN], [strongswan_options=${strongswan_options}" aikgen"]) AM_COND_IF([USE_ATTR_SQL], [strongswan_options=${strongswan_options}" pool"]) AM_COND_IF([USE_CHARON], [strongswan_options=${strongswan_options}" charon charon-logging"]) AM_COND_IF([USE_FILE_CONFIG], [strongswan_options=${strongswan_options}" starter"]) |