diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2008-03-29 19:33:02 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2008-03-29 19:33:02 +0000 |
commit | 1c65129148c00c0246c6fa2b7e59e01ca7c8957b (patch) | |
tree | 195fbf115f13b57e28ea8a200930b0735bfe23b9 | |
parent | dcc777652ea4481c073fb32cc2f0526224127fe1 (diff) | |
download | strongswan-1c65129148c00c0246c6fa2b7e59e01ca7c8957b.tar.bz2 strongswan-1c65129148c00c0246c6fa2b7e59e01ca7c8957b.tar.xz |
adapted configure options in testing.conf and build-umlrootfs
-rwxr-xr-x | testing/scripts/build-umlrootfs | 11 | ||||
-rwxr-xr-x | testing/testing.conf | 3 |
2 files changed, 10 insertions, 4 deletions
diff --git a/testing/scripts/build-umlrootfs b/testing/scripts/build-umlrootfs index dba999dfa..38160b79e 100755 --- a/testing/scripts/build-umlrootfs +++ b/testing/scripts/build-umlrootfs @@ -133,7 +133,7 @@ echo -n " --enable-integrity-test" >> $INSTALLSHELL if [ "$USE_LIBCURL" = "yes" ] then - echo -n " --enable-http" >> $INSTALLSHELL + echo -n " --enable-curl" >> $INSTALLSHELL fi if [ "$USE_LDAP" = "yes" ] @@ -151,11 +151,16 @@ then echo -n " --enable-eap-sim" >> $INSTALLSHELL fi -if [ "$USE_ME" = "yes" ] +if [ "$USE_MEDIATION" = "yes" ] then echo -n " --enable-mediation" >> $INSTALLSHELL fi - + +if [ "$USE_INTEGRITY_TEST" = "yes" ] +then + echo -n " --enable-integrity-test" >> $INSTALLSHELL +fi + if [ "$USE_LEAK_DETECTIVE" = "yes" ] then echo -n " --enable-leak-detective" >> $INSTALLSHELL diff --git a/testing/testing.conf b/testing/testing.conf index e14493c69..884b2616a 100755 --- a/testing/testing.conf +++ b/testing/testing.conf @@ -40,7 +40,8 @@ STRONGSWAN=$UMLTESTDIR/strongswan-4.2.0.tar.bz2 USE_LIBCURL="yes" USE_LDAP="yes" USE_EAP_AKA="yes" -USE_ME="yes" +USE_MEDIATION="yes" +USE_INTEGRITY_TEST="no" USE_LEAK_DETECTIVE="no" # Gentoo linux root filesystem |