diff options
author | Rene Mayrhofer <rene@mayrhofer.eu.org> | 2009-02-28 22:02:31 +0000 |
---|---|---|
committer | Rene Mayrhofer <rene@mayrhofer.eu.org> | 2009-02-28 22:02:31 +0000 |
commit | 19364e11c66714324bd3d5d0dc9212db397085cb (patch) | |
tree | fe7f5e55f0474dad1d0c29ba7c0a6f4546c99c3a /testing/scripts/build-umlrootfs | |
parent | c7f1b0530b85bc7654e68992f25ed8ced5d0a80d (diff) | |
download | vyos-strongswan-19364e11c66714324bd3d5d0dc9212db397085cb.tar.gz vyos-strongswan-19364e11c66714324bd3d5d0dc9212db397085cb.zip |
[svn-upgrade] Integrating new upstream version, strongswan (4.2.12)
Diffstat (limited to 'testing/scripts/build-umlrootfs')
-rwxr-xr-x | testing/scripts/build-umlrootfs | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/testing/scripts/build-umlrootfs b/testing/scripts/build-umlrootfs index b54493de8..fad5b23d8 100755 --- a/testing/scripts/build-umlrootfs +++ b/testing/scripts/build-umlrootfs @@ -14,7 +14,7 @@ # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License # for more details. # -# RCSID $Id: build-umlrootfs 4425 2008-10-13 22:54:09Z andreas $ +# RCSID $Id: build-umlrootfs 4889 2009-02-19 22:02:28Z andreas $ DIR=`dirname $0` @@ -149,12 +149,18 @@ if [ "$USE_EAP_SIM" = "yes" ] then echo -n " --enable-eap-sim" >> $INSTALLSHELL echo -n " --enable-eap-sim-file" >> $INSTALLSHELL - fi +fi if [ "$USE_EAP_MD5" = "yes" ] then echo -n " --enable-eap-md5" >> $INSTALLSHELL - fi +fi + +if [ "$USE_EAP_MSCHAPV2" = "yes" ] +then + echo -n " --enable-md4" >> $INSTALLSHELL + echo -n " --enable-eap-mschapv2" >> $INSTALLSHELL +fi if [ "$USE_EAP_IDENTITY" = "yes" ] then @@ -191,6 +197,11 @@ then echo -n " --enable-leak-detective" >> $INSTALLSHELL fi +if [ "$USE_LOAD_TESTS" = "yes" ] +then + echo -n " --enable-load-tests" >> $INSTALLSHELL +fi + echo "" >> $INSTALLSHELL echo "make" >> $INSTALLSHELL echo "make install" >> $INSTALLSHELL |