--enable eap-tls and --disable-load-warning in uml build

This commit is contained in:
Andreas Steffen 2010-08-04 07:47:08 +02:00
parent f8029ca3f9
commit 9dffc26b73
2 changed files with 7 additions and 0 deletions

View File

@ -127,6 +127,7 @@ echo "ln -sf /usr/share/zoneinfo/${TZUML} /etc/localtime" >> $INSTALLSHELL
echo "cd /root/${STRONGSWANVERSION}" >> $INSTALLSHELL
echo -n "./configure --sysconfdir=/etc" >> $INSTALLSHELL
echo -n " --with-random-device=/dev/urandom" >> $INSTALLSHELL
echo -n " --disable-load-warning" >> $INSTALLSHELL
if [ "$USE_LIBCURL" = "yes" ]
then
@ -171,6 +172,11 @@ then
echo -n " --enable-eap-radius" >> $INSTALLSHELL
fi
if [ "$USE_EAP_TLS" = "yes" ]
then
echo -n " --enable-eap-tls" >> $INSTALLSHELL
fi
if [ "$USE_SQL" = "yes" ]
then
echo -n " --enable-sql --enable-sqlite" >> $INSTALLSHELL

View File

@ -42,6 +42,7 @@ USE_EAP_MD5="yes"
USE_EAP_MSCHAPV2="yes"
USE_EAP_IDENTITY="yes"
USE_EAP_RADIUS="yes"
USE_EAP_TLS="yes"
USE_SQL="yes"
USE_MEDIATION="yes"
USE_OPENSSL="yes"