diff options
Diffstat (limited to 'util/wrap.pl.in')
-rw-r--r-- | util/wrap.pl.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/util/wrap.pl.in b/util/wrap.pl.in index 7d11cb7c27..9b2b684c57 100644 --- a/util/wrap.pl.in +++ b/util/wrap.pl.in @@ -36,6 +36,18 @@ if ($ARGV[0] eq '-fips') { $std_openssl_conf_include = catdir($there, 'providers'); } +if ($ARGV[0] eq '-jitter') { + $std_openssl_conf = {- + use Cwd qw(abs_path); + + "'" . abs_path(catfile($config{sourcedir}, 'test/default-and-jitter.cnf')) . "'"; + -}; + shift; + + $std_openssl_conf_include = catdir($there, 'providers'); +} + + local $ENV{OPENSSL_CONF_INCLUDE} = $std_openssl_conf_include if defined $std_openssl_conf_include &&($ENV{OPENSSL_CONF_INCLUDE} // '') eq '' |