summaryrefslogtreecommitdiffstats
path: root/util/clean-depend.pl
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-05-12 12:14:13 +0100
committerMatt Caswell <matt@openssl.org>2015-05-13 15:08:10 +0100
commite36827f6d10ed64abb1b374b6f11b79225d04205 (patch)
tree43f81b81c0ba112dd6e5d231ec50e5c1e9806a18 /util/clean-depend.pl
parent60b3d36df3625fad66b53ccc32dc31818cf3048e (diff)
Remove remaining Kerberos references
Following on from the removal of libcrypto and libssl support for Kerberos this commit removes all remaining references to Kerberos. Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'util/clean-depend.pl')
-rwxr-xr-xutil/clean-depend.pl2
1 files changed, 0 insertions, 2 deletions
diff --git a/util/clean-depend.pl b/util/clean-depend.pl
index d3525b0ed0..04d86b6d09 100755
--- a/util/clean-depend.pl
+++ b/util/clean-depend.pl
@@ -23,8 +23,6 @@ while(<STDIN>) {
@deps=grep(!/^\//,@deps);
@deps=grep(!/^\\$/,@deps);
@deps=grep(!/^$origfile$/,@deps);
-# pull out the kludged kerberos header (if present).
- @deps=grep(!/^[.\/]+\/krb5.h/,@deps);
push @{$files{$thisfile}},@deps;
}