diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-07-12 16:04:19 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-07-12 16:04:19 +0000 |
commit | 6a5ada239eeaf83e6f47b65aa763561ee128221a (patch) | |
tree | d2173f7d0ba654981920054a915cfab72b965f76 /pod | |
parent | 56acea6ff1302cdf8b9d387cd3766c26e5146dca (diff) | |
download | perl-6a5ada239eeaf83e6f47b65aa763561ee128221a.tar.gz |
readd missing perldelta.pod changes from changes#6339,6376
p4raw-link: @6376 on //depot/metaconfig: b8372171f570ef8413673058be4226bef77ffce2on //depot/cfgperl: 70e8c5e4f67dde6bf07eb296d727a29b95fe8b5b
p4raw-link: @6339 on //depot/cfgperl: f805f8cce32dfd1ced3ebf12975766f50f88ec0c
p4raw-id: //depot/perl@6384
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perldelta.pod | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 2a4ad88cbe..9afa44d27d 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -18,6 +18,13 @@ This document describes differences between the 5.6 release and this one. =head1 Installation and Configuration Improvements +=head2 gcc automatically tried if 'cc' does not seem to be working + +In many platforms the vendor-supplied 'cc' is too stripped-down to +build Perl (basically, the 'cc' doesn't do ANSI C). If this seems +to be the case and the 'cc' does not seem to be the GNU C compiler +'gcc', an automatic attempt is made to find and use 'gcc' instead. + =head1 Platform specific changes =head1 Significant bug fixes @@ -32,6 +39,13 @@ This document describes differences between the 5.6 release and this one. "Can't locate object method \"%s\" via package \"%s\"". It often means that a method requires a package that has not been loaded. +=item Ambiguous range in transliteration operator + +(F) You wrote something like C<tr/a-z-0//> which doesn't mean anything at +all. To include a C<-> character in a transliteration, put it either +first or last. (In the past, C<tr/a-z-0//> was synonymous with +C<tr/a-y//>, which was probably not what you would have expected.) + =back =head1 New tests |