From 2bb4d4ac7a2751306ac55c3ce2fe3af26d8ef965 Mon Sep 17 00:00:00 2001 From: afresh1 <> Date: Thu, 17 Apr 2014 19:20:52 +0000 Subject: Remove unused ssl utils This code is the reason perl has a name as a write only language. ok deraadt miod --- src/lib/libcrypto/util/clean-depend.pl | 58 ---------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 src/lib/libcrypto/util/clean-depend.pl (limited to 'src/lib/libcrypto/util/clean-depend.pl') diff --git a/src/lib/libcrypto/util/clean-depend.pl b/src/lib/libcrypto/util/clean-depend.pl deleted file mode 100644 index d3525b0ed0..0000000000 --- a/src/lib/libcrypto/util/clean-depend.pl +++ /dev/null @@ -1,58 +0,0 @@ -#!/usr/local/bin/perl -w -# Clean the dependency list in a makefile of standard includes... -# Written by Ben Laurie 19 Jan 1999 - -use strict; - -while() { - print; - last if /^# DO NOT DELETE THIS LINE/; -} - -my %files; - -my $thisfile=""; -while() { - my ($dummy, $file,$deps)=/^((.*):)? (.*)$/; - my $origfile=""; - $thisfile=$file if defined $file; - next if !defined $deps; - $origfile=$thisfile; - $origfile=~s/\.o$/.c/; - my @deps=split ' ',$deps; - @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; -} - -my $file; -foreach $file (sort keys %files) { - my $len=0; - my $dep; - my $origfile=$file; - $origfile=~s/\.o$/.c/; - $file=~s/^\.\///; - push @{$files{$file}},$origfile; - my $prevdep=""; - - # Remove leading ./ before sorting - my @deps = map { $_ =~ s/^\.\///; $_ } @{$files{$file}}; - - foreach $dep (sort @deps) { - $dep=~s/^\.\///; - next if $prevdep eq $dep; # to exterminate duplicates... - $prevdep = $dep; - $len=0 if $len+length($dep)+1 >= 80; - if($len == 0) { - print "\n$file:"; - $len=length($file)+1; - } - print " $dep"; - $len+=length($dep)+1; - } -} - -print "\n"; -- cgit v1.2.3-55-g6feb