diff options
author | Jirka Hladky <jhladky@redhat.com> | 2021-01-01 20:57:51 +0100 |
---|---|---|
committer | Jirka Hladky <jhladky@redhat.com> | 2021-01-01 20:57:51 +0100 |
commit | 4338cfb82fbd1842142cbf103d5295aed3fa1314 (patch) | |
tree | c38e5a7f375046649f3efb3393660eb7c7a319f7 /configure.ac | |
parent | Merge pull request #52 from bitstreamout/boo1178738 (diff) | |
download | haveged-4338cfb82fbd1842142cbf103d5295aed3fa1314.tar.xz haveged-4338cfb82fbd1842142cbf103d5295aed3fa1314.zip |
Made enttest conditional
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index e55800c..e5db726 100644 --- a/configure.ac +++ b/configure.ac @@ -62,6 +62,11 @@ AC_ARG_ENABLE(nistest, AS_HELP_STRING([--enable-nistest=[no/yes]],[Run NIST test suite [default=no]]), , enable_nistest="no") +## Make ent self-test configurable +AC_ARG_ENABLE(enttest, + AS_HELP_STRING([--enable-enttest=[no/yes]],[Run ENT test suite [default=yes]]), + , enable_enttest="yes") + ## Make self test features configurable AC_ARG_ENABLE(olt, AS_HELP_STRING([--enable-olt=[yes/no]],[Enable online tests [default=yes]]), @@ -241,7 +246,7 @@ AM_CONDITIONAL(ENABLE_SYSV, test "$init_type" = "sysv") AM_CONDITIONAL(ENABLE_SYSTEMD, test "$init_type" = "systemd") AM_CONDITIONAL(ENABLE_SYSTEMD_LOOKUP, test "$enable_initdir" = "?") AM_CONDITIONAL(ENABLE_NOINIT, test "$init_type" = "none") -AM_CONDITIONAL(ENABLE_ENT_TEST, test "yes" = "yes") +AM_CONDITIONAL(ENABLE_ENT_TEST, test "$enable_enttest" = "yes") AM_CONDITIONAL(ENABLE_NIST_TEST, test "$enable_nistest" = "yes") ## Set hardware dependent define for the build |