summaryrefslogtreecommitdiff
path: root/Porting/check83.pl
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-09-22 13:38:49 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-09-22 13:38:49 +0000
commit8c284f99fe2ca8105343599e3b9e2f250ac27804 (patch)
treeb26b8b9245184d0af77c7aa2410890c9c5657e54 /Porting/check83.pl
parent201c2286cf70cefadf07007855d7f20f1f6be194 (diff)
downloadperl-8c284f99fe2ca8105343599e3b9e2f250ac27804.tar.gz
Find more conflicts by lowercasing.
p4raw-id: //depot/perl@12131
Diffstat (limited to 'Porting/check83.pl')
-rw-r--r--Porting/check83.pl46
1 files changed, 46 insertions, 0 deletions
diff --git a/Porting/check83.pl b/Porting/check83.pl
new file mode 100644
index 0000000000..51b2b11b8a
--- /dev/null
+++ b/Porting/check83.pl
@@ -0,0 +1,46 @@
+#!/usr/local/bin/perl
+
+# Check whether there are naming conflicts when names are truncated
+# to the DOSish case-ignoring 8.3 format
+
+sub eight_dot_three {
+ my ($dir, $base, $ext) = ($_[0] =~ m!^(?:(.+)/)?([^/.]+)(?:\.([^/.]+))?$!);
+ $base = substr($base, 0, 8);
+ $ext = substr($ext, 0, 3) if defined $ext;
+ if (defined $dir) {
+ return ($dir, defined $ext ? "$dir/$base.$ext" : "$dir/$base");
+ } else {
+ return ('.', defined $ext ? "$base.$ext" : $base);
+ }
+}
+
+my %dir;
+
+if (open(MANIFEST, "MANIFEST")) {
+ while (<MANIFEST>) {
+ chomp;
+ s/\s.+//;
+ unless (-f) {
+ warn "$_: missing\n";
+ next;
+ }
+ if (tr/././ > 1) {
+ print "$_: more than one dot\n";
+ next;
+ }
+ my ($dir, $edt) = eight_dot_three($_);
+ ($dir, $edt) = map { lc } ($dir, $edt);
+ push @{$dir{$dir}->{$edt}}, $_;
+ }
+} else {
+ die "$0: MANIFEST: $!\n";
+}
+
+for my $dir (sort keys %dir) {
+ for my $edt (keys %{$dir{$dir}}) {
+ my @files = @{$dir{$dir}->{$edt}};
+ if (@files > 1) {
+ print "@files: directory $dir conflict $edt\n";
+ }
+ }
+}