diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2010-03-28 22:40:20 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2010-03-28 22:40:20 +0200 |
commit | 3ad78f02397af5bbe964705b7dfb1dffc8b864ce (patch) | |
tree | f25d35375850ff6801b87029a091029e6f1d3cf6 /testing/scripts/build-umlrootfs | |
parent | 5d91d4c6d71e3d6ef202db04d0a2fe27f414b62b (diff) | |
download | strongswan-3ad78f02397af5bbe964705b7dfb1dffc8b864ce.tar.bz2 strongswan-3ad78f02397af5bbe964705b7dfb1dffc8b864ce.tar.xz |
compile dhcp and farp plugins in UMLs
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 84413b908..a61cfbf20 100755 --- a/testing/scripts/build-umlrootfs +++ b/testing/scripts/build-umlrootfs @@ -226,6 +226,16 @@ then echo -n " --enable-socket-default" >> $INSTALLSHELL fi +if [ "$USE_DHCP" = "yes" ] +then + echo -n " --enable-dhcp" >> $INSTALLSHELL +fi + +if [ "$USE_FARP" = "yes" ] +then + echo -n " --enable-farp" >> $INSTALLSHELL +fi + echo "" >> $INSTALLSHELL echo "make" >> $INSTALLSHELL echo "make install" >> $INSTALLSHELL |