diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-06-16 18:05:59 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-06-16 18:06:16 +0200 |
commit | 9e533e3d8e61005cc41418c3bbb00a002338d447 (patch) | |
tree | d45469be24a6ee701d48ed27302e14482934d864 /testing/scripts/build-umlrootfs | |
parent | 280effc0346de0b768e3328035fab0d3d79ae3db (diff) | |
download | strongswan-9e533e3d8e61005cc41418c3bbb00a002338d447.tar.bz2 strongswan-9e533e3d8e61005cc41418c3bbb00a002338d447.tar.xz |
--enable-test-vectors and --enable-gcrypt in UML scenarios
Diffstat (limited to 'testing/scripts/build-umlrootfs')
-rwxr-xr-x | testing/scripts/build-umlrootfs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testing/scripts/build-umlrootfs b/testing/scripts/build-umlrootfs index 1f9c45c53..b3b14b27f 100755 --- a/testing/scripts/build-umlrootfs +++ b/testing/scripts/build-umlrootfs @@ -220,6 +220,16 @@ then echo -n " --enable-load-tests" >> $INSTALLSHELL fi +if [ "$USE_TEST_VECTORS" = "yes" ] +then + echo -n " --enable-test-vectors" >> $INSTALLSHELL +fi + +if [ "$USE_GCRYPT" = "yes" ] +then + echo -n " --enable-gcrypt" >> $INSTALLSHELL +fi + echo "" >> $INSTALLSHELL echo "make" >> $INSTALLSHELL echo "make install" >> $INSTALLSHELL |