Remove the never-functional no-sct
authorBenjamin Kaduk <bkaduk@akamai.com>
Wed, 20 Apr 2016 18:51:58 +0000 (13:51 -0500)
committerRich Salz <rsalz@openssl.org>
Tue, 26 Apr 2016 12:32:10 +0000 (08:32 -0400)
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>
Configure
INSTALL
apps/openssl.c

index b32cb942a7477ddd05fdc8b9d3496fab3a6dee17..54130e2a1de1bbe13006b2fed4a70b7002a28e15 100755 (executable)
--- a/Configure
+++ b/Configure
@@ -307,7 +307,6 @@ my @disablables = (
     "ripemd",
     "rmd160",
     "scrypt",
-    "sct",
     "sctp",
     "seed",
     "shared",
diff --git a/INSTALL b/INSTALL
index 2e06aa7b6066999c0192ff75ac00bbc57a7a79ad..7d8de3237f166c23f67b5d25a602162042094a3b 100644 (file)
--- a/INSTALL
+++ b/INSTALL
                    Don't build support for RFC3779 ("X.509 Extensions for IP
                    Addresses and AS Identifiers")
 
-  no-sct
-                   ??
-
   sctp
                    Build support for SCTP
 
index f2fb295fab5ace9460a05daad4ecb2a9c46325e8..7710c3a54c18a990042e621c078586696b45c547 100644 (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