summaryrefslogtreecommitdiff
path: root/apps/progs.h
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-02-14 01:02:58 +0000
committerRichard Levitte <levitte@openssl.org>2003-02-14 01:02:58 +0000
commit85d686e7231b2cf04ec73457ac6d7009724569c0 (patch)
tree61f6aef96fd21b5932e86ce709a59bccb82bd54f /apps/progs.h
parent2d3de726c5cc64d419dcdebf427b0cb58c608b36 (diff)
downloadopenssl-new-85d686e7231b2cf04ec73457ac6d7009724569c0.tar.gz
Make it possible to disable OCSP, the speed application, and the use of sockets.
PR: 358
Diffstat (limited to 'apps/progs.h')
-rw-r--r--apps/progs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/progs.h b/apps/progs.h
index b551e1de95..131a721a39 100644
--- a/apps/progs.h
+++ b/apps/progs.h
@@ -102,7 +102,9 @@ FUNCTION functions[] = {
#if !defined(OPENSSL_NO_SOCK) && !(defined(OPENSSL_NO_SSL2) && defined(OPENSSL_NO_SSL3))
{FUNC_TYPE_GENERAL,"s_client",s_client_main},
#endif
+#ifndef OPENSSL_NO_SPEED
{FUNC_TYPE_GENERAL,"speed",speed_main},
+#endif
#if !defined(OPENSSL_NO_SOCK) && !(defined(OPENSSL_NO_SSL2) && defined(OPENSSL_NO_SSL3))
{FUNC_TYPE_GENERAL,"s_time",s_time_main},
#endif