diff options
author | Tobias Brunner <tobias@strongswan.org> | 2013-11-14 15:34:50 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2013-11-27 18:35:44 +0100 |
commit | 228db0433d9e8dd11bb70992e4711e099567ae4d (patch) | |
tree | 575994b060e85f8291a8e8f21b10b2e8f515bf35 /configure.ac | |
parent | f5feeb04f3652fdc8c6fe904c0e489e28b978a2a (diff) | |
download | strongswan-228db0433d9e8dd11bb70992e4711e099567ae4d.tar.bz2 strongswan-228db0433d9e8dd11bb70992e4711e099567ae4d.tar.xz |
configure: Remove obsolete --enable-unit-tests option
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/configure.ac b/configure.ac index 0c5164f99..054870d46 100644 --- a/configure.ac +++ b/configure.ac @@ -261,7 +261,6 @@ ARG_ENABL_SET([vstr], [enforce using the Vstr string library to replac ARG_ENABL_SET([monolithic], [build monolithic version of libstrongswan that includes all enabled plugins. Similarly, the plugins of charon are assembled in libcharon.]) ARG_ENABL_SET([bfd-backtraces], [use binutils libbfd to resolve backtraces for memory leaks and segfaults.]) ARG_ENABL_SET([unwind-backtraces],[use libunwind to create backtraces for memory leaks and segfaults.]) -ARG_ENABL_SET([unit-tests], [enable unit tests using the check test framework.]) ARG_ENABL_SET([coverage], [enable lcov coverage report generation.]) ARG_ENABL_SET([tkm], [enable Trusted Key Manager support.]) ARG_ENABL_SET([cmd], [enable the command line IKE client charon-cmd.]) @@ -386,10 +385,6 @@ if test x$medcli = xtrue; then mediation=true fi -if test x$coverage = xtrue; then - unit_tests=true -fi - # =========================================== # check required libraries and header files # =========================================== @@ -945,12 +940,6 @@ if test x$tkm = xtrue; then AC_PATH_PROG([GPRBUILD], [gprbuild], [], [$PATH:/bin:/usr/bin:/usr/local/bin]) fi -if test x$unit_tests = xtrue; then - PKG_CHECK_MODULES(CHECK, [check >= 0.9.4]) - AC_SUBST(CHECK_CFLAGS) - AC_SUBST(CHECK_LIBS) -fi - if test x$coverage = xtrue; then AC_PATH_PROG([LCOV], [lcov], [], [$PATH:/bin:/usr/bin:/usr/local/bin]) if test x$LCOV = x; then @@ -1306,7 +1295,6 @@ AM_CONDITIONAL(USE_PTS, test x$pts = xtrue) AM_CONDITIONAL(USE_TROUSERS, test x$tss = xtrousers) AM_CONDITIONAL(MONOLITHIC, test x$monolithic = xtrue) AM_CONDITIONAL(USE_SILENT_RULES, test x$enable_silent_rules = xyes) -AM_CONDITIONAL(UNITTESTS, test x$unit_tests = xtrue) AM_CONDITIONAL(COVERAGE, test x$coverage = xtrue) AM_CONDITIONAL(USE_TKM, test x$tkm = xtrue) AM_CONDITIONAL(USE_CMD, test x$cmd = xtrue) |