Add OS-specific modules in Module::Corelist generation script
Rafael Garcia-Suarez [Wed, 9 Aug 2006 09:52:38 +0000 (09:52 +0000)]
(hinted by Steve Hay)

p4raw-id: //depot/perl@28681

Porting/corelist.pl

index f76928f..f79cc15 100644 (file)
@@ -17,8 +17,8 @@ find(sub {
     defined $version or $version = 'undef';
     $version =~ /\d/ and $version = "'$version'";
     # some heuristics to figure out the module name from the file name
-    $module =~ s{^(lib|ext)/}{}
-       and $1 eq 'ext'
+    $module =~ s{^(lib|(win32/|vms/|symbian/)?ext)/}{}
+       and $1 ne 'lib'
        and ( $module =~ s{^(.*)/lib/\1\b}{$1},
              $module =~ s{(\w+)/\1\b}{$1},
              $module =~ s{^B/O}{O},
@@ -34,7 +34,7 @@ find(sub {
     $module =~ s{/}{::}g;
     $module =~ s/(\.pm|_pm\.PL)$//;
     push @lines, sprintf "\t%-24s=> $version,\n", "'$module'";
-}, 'lib', 'ext');
+}, 'lib', 'ext', 'win32/ext', 'vms/ext', 'symbian/ext');
 print "    $] => {\n";
 print sort @lines;
 print "    },\n";