summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-05-12 13:13:07 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-05-12 13:13:07 +0000
commitb1d00b9611eaeedb66b6a91fd49018304f42a15c (patch)
tree98dad7c7378773d8b5af08ae8894d4131df1eb9e /util
parentc76e024dde123256d741c017c164ab66e903d607 (diff)
Add SSL_INTERN definition.
Diffstat (limited to 'util')
-rwxr-xr-xutil/mkdef.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl
index 9d53046278..aefc6d624c 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -112,7 +112,9 @@ my @known_algorithms = ( "RC2", "RC4", "RC5", "IDEA", "DES", "BF",
# NEXTPROTONEG
"NEXTPROTONEG",
# Deprecated functions
- "DEPRECATED" );
+ "DEPRECATED",
+ # Hide SSL internals
+ "SSL_INTERN");
my $options="";
open(IN,"<Makefile") || die "unable to open Makefile!\n";