summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2016-02-10 11:10:39 -0500
committerRich Salz <rsalz@openssl.org>2016-02-17 21:12:30 -0500
commite4ef2e25f11de9c3d729be15bef693a815c3dfe4 (patch)
tree44395f22251e1732935a09f8a650b43c4d4cabd1 /util
parent4418e0302f471750e643079a753ab43a2eb164b8 (diff)
Remove "experimental" in code and comments, too.
Thanks to Viktor for additional review. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'util')
-rwxr-xr-xutil/mk1mf.pl12
1 files changed, 0 insertions, 12 deletions
diff --git a/util/mk1mf.pl b/util/mk1mf.pl
index 085db5f4c5..41aa0ecab6 100755
--- a/util/mk1mf.pl
+++ b/util/mk1mf.pl
@@ -1481,18 +1481,6 @@ sub read_options
{return 1;}
return 0;
}
- # experimental-xxx is mostly like enable-xxx, but opensslconf.v
- # will still set OPENSSL_NO_xxx unless we set OPENSSL_EXPERIMENTAL_xxx.
- # (No need to fail if we don't know the algorithm -- this is for adventurous users only.)
- elsif (/^experimental-/)
- {
- my $algo, $ALGO;
- ($algo = $_) =~ s/^experimental-//;
- ($ALGO = $algo) =~ tr/[a-z]/[A-Z]/;
-
- $xcflags="-DOPENSSL_EXPERIMENTAL_$ALGO $xcflags";
-
- }
elsif (/^([^=]*)=(.*)$/){ $VARS{$1}=$2; }
elsif (/^-[lL].*$/) { $l_flags.="$_ "; }
elsif ((!/^-help/) && (!/^-h/) && (!/^-\?/) && /^-.*$/)