diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2008-05-28 14:13:40 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2008-05-28 14:13:40 +0000 |
commit | 2e6749af0ad6b4cad402a3de23a7a71fb955986f (patch) | |
tree | bd48332711bc9b5cd50f12cc4aa47324915e8632 /testing | |
parent | 1cc594f9bc7e0fa00c421692e76bd07669e86779 (diff) | |
download | strongswan-2e6749af0ad6b4cad402a3de23a7a71fb955986f.tar.bz2 strongswan-2e6749af0ad6b4cad402a3de23a7a71fb955986f.tar.xz |
activate --enable-openssl option in uml scenarios
Diffstat (limited to 'testing')
-rwxr-xr-x | testing/scripts/build-umlrootfs | 10 | ||||
-rwxr-xr-x | testing/testing.conf | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/testing/scripts/build-umlrootfs b/testing/scripts/build-umlrootfs index cb49b738d..c3e3a50f8 100755 --- a/testing/scripts/build-umlrootfs +++ b/testing/scripts/build-umlrootfs @@ -150,6 +150,11 @@ then echo -n " --enable-eap-sim" >> $INSTALLSHELL fi +if [ "$USE_EAP_MD5" = "yes" ] +then + echo -n " --enable-eap-md5" >> $INSTALLSHELL + fi + if [ "$USE_SQL" = "yes" ] then echo -n " --enable-sql --enable-sqlite" >> $INSTALLSHELL @@ -159,6 +164,11 @@ if [ "$USE_MEDIATION" = "yes" ] then echo -n " --enable-mediation" >> $INSTALLSHELL fi + +if [ "$USE_OPENSSL" = "yes" ] +then + echo -n " --enable-openssl" >> $INSTALLSHELL +fi if [ "$USE_INTEGRITY_TEST" = "yes" ] then diff --git a/testing/testing.conf b/testing/testing.conf index f47944c2d..8b4961972 100755 --- a/testing/testing.conf +++ b/testing/testing.conf @@ -44,6 +44,7 @@ USE EAP_SIM="yes" USE_EAP_MD5="yes" USE_SQL="yes" USE_MEDIATION="yes" +USE_OPENSSL="yes" USE_INTEGRITY_TEST="no" USE_LEAK_DETECTIVE="no" |