diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2008-04-06 12:05:42 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2008-04-06 12:05:42 +0000 |
commit | babaaa3c1108e4342977f2e5ba1ac94839dcc9af (patch) | |
tree | d79d0bb0f1ded88499c4e069b91e0b2dc63452be /testing/scripts/build-umlrootfs | |
parent | a9184df36b641aa73959125548144d6deb067b29 (diff) | |
download | strongswan-babaaa3c1108e4342977f2e5ba1ac94839dcc9af.tar.bz2 strongswan-babaaa3c1108e4342977f2e5ba1ac94839dcc9af.tar.xz |
support of SQL databases in UML scenarios
Diffstat (limited to 'testing/scripts/build-umlrootfs')
-rwxr-xr-x | testing/scripts/build-umlrootfs | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/testing/scripts/build-umlrootfs b/testing/scripts/build-umlrootfs index 38160b79e..cb49b738d 100755 --- a/testing/scripts/build-umlrootfs +++ b/testing/scripts/build-umlrootfs @@ -129,7 +129,6 @@ 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 " --enable-integrity-test" >> $INSTALLSHELL if [ "$USE_LIBCURL" = "yes" ] then @@ -151,16 +150,21 @@ then echo -n " --enable-eap-sim" >> $INSTALLSHELL fi +if [ "$USE_SQL" = "yes" ] +then + echo -n " --enable-sql --enable-sqlite" >> $INSTALLSHELL + fi + 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 |