Remove the never-functional no-sct

It was added as part of 2df84dd3299ff25fa078ca7ffbdeaac65b361feb
but has never actually been used for anything; presumably it was
a typo for one of SCTP or CT.

This removes the last '??' entry from INSTALL.

Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
Benjamin Kaduk 2016-04-20 13:51:58 -05:00 committed by Rich Salz
parent 1e8ead8688
commit 42a9f38613
3 changed files with 0 additions and 7 deletions

View File

@ -307,7 +307,6 @@ my @disablables = (
"ripemd",
"rmd160",
"scrypt",
"sct",
"sctp",
"seed",
"shared",

View File

@ -234,9 +234,6 @@
Don't build support for RFC3779 ("X.509 Extensions for IP
Addresses and AS Identifiers")
no-sct
??
sctp
Build support for SCTP

View File

@ -741,9 +741,6 @@ static void list_disabled(void)
#ifdef OPENSSL_NO_SCRYPT
BIO_puts(bio_out, "SCRYPT\n");
#endif
#ifdef OPENSSL_NO_SCT
BIO_puts(bio_out, "SCT\n");
#endif
#ifdef OPENSSL_NO_SCTP
BIO_puts(bio_out, "SCTP\n");
#endif