diff options
author | Richard Levitte <levitte@openssl.org> | 2016-03-18 20:06:29 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-03-18 20:17:19 +0100 |
commit | f38526357e1423ab5712586dee40c1c728af526d (patch) | |
tree | 3d439c4155faeab3d824a3f45338cfc2398cae00 /apps/progs.pl | |
parent | apps/progs.pl: more consistent output for digests (diff) | |
download | openssl-f38526357e1423ab5712586dee40c1c728af526d.tar.xz openssl-f38526357e1423ab5712586dee40c1c728af526d.zip |
Implement support for no-ts
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'apps/progs.pl')
-rw-r--r-- | apps/progs.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/progs.pl b/apps/progs.pl index b601fefb1b..11bcbef8b8 100644 --- a/apps/progs.pl +++ b/apps/progs.pl @@ -75,6 +75,8 @@ foreach (@ARGV) { print "#ifndef OPENSSL_NO_OCSP\n${str}#endif\n"; } elsif (/^srp$/) { print "#ifndef OPENSSL_NO_SRP\n${str}#endif\n"; + } elsif (/^ts$/) { + print "#ifndef OPENSSL_NO_TS\n${str}#endif\n"; } else { print $str; } |