diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-03 15:42:28 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-03 15:42:28 +0000 |
commit | c93fa8177be816b728baa070d16f5574403845f6 (patch) | |
tree | 4808e1f396a09528ccea5aca00bedca957836837 /pod | |
parent | 8c8ad484ae56ad5a81dc3b76a40859fc90c16a10 (diff) | |
parent | 7e6fa307436d3e019e355ee1012a967957762854 (diff) | |
download | perl-c93fa8177be816b728baa070d16f5574403845f6.tar.gz |
integrate cfgperl and vmsperl contents into mainline
p4raw-id: //depot/perl@5486
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perl.pod | 1 | ||||
-rw-r--r-- | pod/perldelta.pod | 25 | ||||
-rw-r--r-- | pod/perlre.pod | 2 | ||||
-rw-r--r-- | pod/pod2usage.PL | 4 | ||||
-rw-r--r-- | pod/podselect.PL | 4 |
5 files changed, 30 insertions, 6 deletions
diff --git a/pod/perl.pod b/pod/perl.pod index cb627cdb7a..a66e2c812a 100644 --- a/pod/perl.pod +++ b/pod/perl.pod @@ -52,6 +52,7 @@ sections: perlfork Perl fork() information perlthrtut Perl threads tutorial perllexwarn Perl warnings and their control + perlfilter Perl source filters perldbmfilter Perl DBM filters perlcompile Perl compiler suite intro diff --git a/pod/perldelta.pod b/pod/perldelta.pod index a443ff4ebf..964233c271 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -1262,7 +1262,30 @@ This port is still using its own builtin globbing. =head2 VMS -[TODO - Charles Bailey <bailey@newman.upenn.edu>] +Numerous revisions and extensions to configuration, build, testing, and +installation process to accomodate core changes and VMS-specific options + +Expand %ENV-handling code to allow runtime mapping to logical names, +CLI symbols, and CRTL environ array + +Extension of subprocess invocation code to accept filespecs as command "verbs" + +Add to Perl command line processing the ability to use default file types and +to recognize Unix-style C<2E<gt>&1>. + +Expansion of File::Spec::VMS routines, and integration into ExtUtils::MM_VMS + +Extension of ExtUtils::MM_VMS to handle complex extensions more flexibly + +Barewords at start of Unix-syntax paths may be treated as text rather than +only as logical names + +Optional secure translation of several logical names used internally by Perl + +Miscellaneous bugfixing and porting of new core code to VMS + +Thanks are gladly extended to the many people who have contributed VMS +patches, testing, and ideas. =head2 Win32 diff --git a/pod/perlre.pod b/pod/perlre.pod index 52eac04a34..64f7f1cdcb 100644 --- a/pod/perlre.pod +++ b/pod/perlre.pod @@ -250,7 +250,7 @@ The assumedly non-obviously named classes are: Any control character. Usually characters that don't produce output as such but instead control the terminal somehow: for example newline and backspace are control characters. All characters with ord() less than -32 are most often control classified as characters. +32 are most often classified as control characters. =item graph diff --git a/pod/pod2usage.PL b/pod/pod2usage.PL index 24e93fa350..e0f70b2ca4 100644 --- a/pod/pod2usage.PL +++ b/pod/pod2usage.PL @@ -16,8 +16,8 @@ use Cwd; $origdir = cwd; chdir(dirname($0)); ($file = basename($0)) =~ s/\.PL$//; -$file =~ s/\.pl$// - if ($^O eq 'VMS' or $^O eq 'os2' or $^O eq 'dos'); # "case-forgiving" +$file =~ s/\.pl$// if ($^O eq 'os2' or $^O eq 'dos'); # "case-forgiving" +$file =~ s/\.pl$/.com/ if ($^O eq 'VMS'); # "case-forgiving" open OUT,">$file" or die "Can't create $file: $!"; diff --git a/pod/podselect.PL b/pod/podselect.PL index 3fa411846b..f2ba80a73b 100644 --- a/pod/podselect.PL +++ b/pod/podselect.PL @@ -16,8 +16,8 @@ use Cwd; $origdir = cwd; chdir(dirname($0)); ($file = basename($0)) =~ s/\.PL$//; -$file =~ s/\.pl$// - if ($^O eq 'VMS' or $^O eq 'os2' or $^O eq 'dos'); # "case-forgiving" +$file =~ s/\.pl$// if ($^O eq 'os2' or $^O eq 'dos'); # "case-forgiving" +$file =~ s/\.pl$/.com/ if ($^O eq 'VMS'); # "case-forgiving" open OUT,">$file" or die "Can't create $file: $!"; |