summaryrefslogtreecommitdiffstats
path: root/apps/progs.pl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-03-18 20:06:29 +0100
committerRichard Levitte <levitte@openssl.org>2016-03-18 20:17:19 +0100
commitf38526357e1423ab5712586dee40c1c728af526d (patch)
tree3d439c4155faeab3d824a3f45338cfc2398cae00 /apps/progs.pl
parent03f03129361683ee3c5bab5aa82d7060cdfc2bea (diff)
Implement support for no-ts
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'apps/progs.pl')
-rw-r--r--apps/progs.pl2
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;
}