diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2011-09-08 12:05:55 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2011-09-08 12:20:58 +0200 |
commit | 3ed943c34f1b8e5fa9e702ec79a9e65297dadc0f (patch) | |
tree | 118c8af3791342299da3be88d95158732da3f424 /configure.in | |
parent | 55cb8c213a6d72aebbfc370817433cecb23e72bc (diff) | |
download | strongswan-3ed943c34f1b8e5fa9e702ec79a9e65297dadc0f.tar.bz2 strongswan-3ed943c34f1b8e5fa9e702ec79a9e65297dadc0f.tar.xz |
created libpts
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 67e777ddc..3302a91ca 100644 --- a/configure.in +++ b/configure.in @@ -254,6 +254,10 @@ if test x$imc_test = xtrue -o x$imv_test = xtrue -o x$imc_scanner = xtrue -o x$i imcv=true; fi +if test x$imc_attestation = xtrue -o x$imv_attestation = xtrue; then + pts=true; +fi + if test x$fips_prf = xtrue; then if test x$openssl = xfalse; then sha1=true; @@ -1003,6 +1007,7 @@ AM_CONDITIONAL(USE_VSTR, test x$vstr = xtrue) AM_CONDITIONAL(USE_SIMAKA, test x$simaka = xtrue) AM_CONDITIONAL(USE_TLS, test x$tls = xtrue) AM_CONDITIONAL(USE_IMCV, test x$imcv = xtrue) +AM_CONDITIONAL(USE_PTS, test x$pts = xtrue) AM_CONDITIONAL(MONOLITHIC, test x$monolithic = xtrue) dnl ============================== @@ -1079,6 +1084,7 @@ AC_OUTPUT( src/libsimaka/Makefile src/libtls/Makefile src/libtncif/Makefile + src/libpts/Makefile src/libimcv/Makefile src/libimcv/plugins/imc_test/Makefile src/libimcv/plugins/imv_test/Makefile |