diff options
author | Martin Willi <martin@strongswan.org> | 2009-10-15 10:34:49 +0200 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2009-10-15 10:36:17 +0200 |
commit | b76b867c700fc911bae721c2c21e96b15797c80b (patch) | |
tree | 513ad18e409981fb5a7ff95beb0524535ef1bc10 | |
parent | 406f335938645f60b67df4b35c64d4f43ae71f1a (diff) | |
download | strongswan-b76b867c700fc911bae721c2c21e96b15797c80b.tar.bz2 strongswan-b76b867c700fc911bae721c2c21e96b15797c80b.tar.xz |
Renamed --enable-load-tests to --enable-load-tester, like the plugin itself
-rw-r--r-- | configure.in | 6 | ||||
-rw-r--r-- | src/charon/Makefile.am | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in index 7db820390..4e0419ba0 100644 --- a/configure.in +++ b/configure.in @@ -98,7 +98,7 @@ ARG_ENABL_SET([cisco-quirks], [enable support of Cisco VPN client.]) ARG_ENABL_SET([leak-detective], [enable malloc hooks to find memory leaks.]) ARG_ENABL_SET([lock-profiler], [enable lock/mutex profiling code.]) ARG_ENABL_SET([unit-tests], [enable unit tests on IKEv2 daemon startup.]) -ARG_ENABL_SET([load-tests], [enable load testing plugin for IKEv2 daemon.]) +ARG_ENABL_SET([load-tester], [enable load testing plugin for IKEv2 daemon.]) ARG_ENABL_SET([eap-sim], [enable SIM authenication module for EAP.]) ARG_ENABL_SET([eap-sim-file], [enable EAP-SIM backend based on a triplet file.]) ARG_ENABL_SET([eap-identity], [enable EAP module providing EAP-Identity helper.]) @@ -701,8 +701,8 @@ AM_CONDITIONAL(USE_SQL, test x$sql = xtrue) AM_CONDITIONAL(USE_UPDOWN, test x$updown = xtrue) AM_CONDITIONAL(USE_ATTR, test x$attr = xtrue) AM_CONDITIONAL(USE_RESOLVE, test x$resolve = xtrue) -AM_CONDITIONAL(USE_UNIT_TESTS, test x$unittest = xtrue) -AM_CONDITIONAL(USE_LOAD_TESTS, test x$loadtest = xtrue) +AM_CONDITIONAL(USE_UNIT_TESTS, test x$unit_tests = xtrue) +AM_CONDITIONAL(USE_LOAD_TESTER, test x$load_tester = xtrue) AM_CONDITIONAL(USE_EAP_SIM, test x$eap_sim = xtrue) AM_CONDITIONAL(USE_EAP_SIM_FILE, test x$eap_sim_file = xtrue) AM_CONDITIONAL(USE_EAP_IDENTITY, test x$eap_identity = xtrue) diff --git a/src/charon/Makefile.am b/src/charon/Makefile.am index 0da3c3dfb..c77a8cc1b 100644 --- a/src/charon/Makefile.am +++ b/src/charon/Makefile.am @@ -135,7 +135,7 @@ endif SUBDIRS = . PLUGINS = ${libstrongswan_plugins} -if USE_LOAD_TESTS +if USE_LOAD_TESTER SUBDIRS += plugins/load_tester PLUGINS += load-tester endif |