Integrate from mainperl.
[p5sagit/p5-mst-13.2.git] / pod / perldelta.pod
CommitLineData
ba8251e8 1=head1 NAME
2
e02fdbd2 3perldelta - what's new for perl5.006 (as of 5.005_54)
ba8251e8 4
5=head1 DESCRIPTION
6
7This document describes differences between the 5.005 release and this one.
8
9=head1 Incompatible Changes
10
e02fdbd2 11=head2 Perl Source Incompatibilities
12
13None known at this time.
14
15=head2 C Source Incompatibilities
16
17=over 4
18
19=item C<PERL_POLLUTE>
20
21Release 5.005 grandfathered old global symbol names by providing preprocessor
22macros for extension source compatibility. As of release 5.006, these
23preprocessor definitions are not available by default. You need to explicitly
24compile perl with C<-DPERL_POLLUTE> in order to get these definitions.
25
26=item C<PL_na> and C<dTHR> Issues
27
28The C<PL_na> global is now thread local, so a C<dTHR> declaration is needed
29in the scope in which it appears. XSUBs should handle this automatically,
30but if you have used C<PL_na> in support functions, you either need to
31change the C<PL_na> to a local variable (which is recommended), or put in
32a C<dTHR>.
33
34=back
35
36=head2 Binary Incompatibilities
37
38This release is not binary compatible with the 5.005 release and its
39maintenance versions.
40
ba8251e8 41=head1 Core Changes
42
5fdc711f 43=head2 Binary numbers supported
44
4f19785b 45Binary numbers are now supported as literals, in s?printf formats, and
46C<oct()>:
47
48 $answer = 0b101010;
49 printf "The answer is: %b\n", oct("0b101010");
50
5fdc711f 51=head2 syswrite() ease-of-use
52
6c67e1bb 53The length argument of C<syswrite()> is now optional.
54
5fdc711f 55=head2 64-bit support
56
6c67e1bb 57Better 64-bit support -- but full support still a distant goal. One
58must Configure with -Duse64bits to get Configure to probe for the
59extent of 64-bit support. Depending on the platform (hints file) more
60or less 64-awareness becomes available. As of 5.005_54 at least
61somewhat 64-bit aware platforms are HP-UX 11 or better, Solaris 2.6 or
62better, IRIX 6.2 or better. Naturally 64-bit platforms like Digital
63UNIX and UNICOS also have 64-bit support.
e02fdbd2 64
62c18ce2 65=head2 Better syntax checks on parenthesized unary operators
66
67Expressions such as:
68
69 print defined(&foo,&bar,&baz);
70 print uc("foo","bar","baz");
71 undef($foo,&bar);
72
73used to be accidentally allowed in earlier versions, and produced
74unpredictable behavior. Some of them produced ancillary warnings
75when used in this way, while others silently did the wrong thing.
76
77The parenthesized forms of most unary operators that expect a single
78argument will now ensure that they are not called with more than one
79argument, making the above cases syntax errors. Note that the usual
80behavior of:
81
82 print defined &foo, &bar, &baz;
83 print uc "foo", "bar", "baz";
84 undef $foo, &bar;
85
86remains unchanged. See L<perlop>.
87
ba8251e8 88=head1 Supported Platforms
89
5fdc711f 90=over 4
91
92=item *
93
6c67e1bb 94VM/ESA is now supported.
95
5fdc711f 96=item *
97
6c67e1bb 98Siemens BS200 is now supported.
99
5fdc711f 100=item *
101
6c67e1bb 102The Mach CThreads (NeXTstep) are now supported by the Thread extension.
103
5fdc711f 104=back
105
6c67e1bb 106=head1 New tests
107
108=over 4
109
110=item op/io_const
111
112IO constants (SEEK_*, _IO*).
113
114=item op/io_dir
115
116Directory-related IO methods (new, read, close, rewind, tied delete).
117
118=item op/io_multihomed
119
120INET sockets with multi-homed hosts.
121
122=item op/io_poll
123
124IO poll().
125
126=item op/io_unix
127
128UNIX sockets.
129
130=item op/filetest
131
132File test operators.
133
134=item op/lex_assign
135
5fdc711f 136Verify operations that access pad objects (lexicals and temporaries).
6c67e1bb 137
138=back
e02fdbd2 139
ba8251e8 140=head1 Modules and Pragmata
141
3e8c4fa0 142=head2 Modules
143
b7d8191e 144=over 4
145
146=item Dumpvalue
147
148Added Dumpvalue module provides screen dumps of Perl data.
149
150=item Benchmark
151
152You can now run tests for I<x> seconds instead of guessing the right
153number of tests to run.
154
155=item Fcntl
156
157More Fcntl constants added: F_SETLK64, F_SETLKW64, O_LARGEFILE for
158large (more than 4G) file access (the 64-bit support is not yet
159working, though, so no need to get overly excited), Free/Net/OpenBSD
160locking behaviour flags F_FLOCK, F_POSIX, Linux F_SHLCK, and
161O_ACCMODE: the mask of O_RDONLY, O_WRONLY, and O_RDWR.
162
163=item Math::Complex
164
165The accessors methods Re, Im, arg, abs, rho, theta, methods can
166($z->Re()) now also act as mutators ($z->Re(3)).
167
168=item Math::Trig
169
170A little bit of radial trigonometry (cylindrical and spherical) added,
171for example the great circle distance.
172
173=back
3e8c4fa0 174
175=head2 Pragmata
176
6c67e1bb 177Lexical warnings pragma, "use warning;", to control optional warnings.
178
179Filetest pragma, to control the behaviour of filetests (C<-r> C<-w> ...).
180Currently only one subpragma implemented, "use filetest 'access';",
181that enables the use of access(2) or equivalent to check the
182permissions instead of using stat(2) as usual. This matters
183in filesystems where there are ACLs (access control lists), the
184stat(2) might lie, while access(2) knows better.
185
ba8251e8 186=head1 Utility Changes
187
e02fdbd2 188Todo.
189
ba8251e8 190=head1 Documentation Changes
191
5fdc711f 192=over 4
193
194=item perlopentut.pod
f8284313 195
5fdc711f 196A tutorial on using open() effectively.
f8284313 197
5fdc711f 198=item perlreftut.pod
199
200A tutorial that introduces the essentials of references.
201
202=back
e02fdbd2 203
ba8251e8 204=head1 New Diagnostics
205
6b121555 206=item /%s/: Unrecognized escape \\%c passed through
207
208(W) You used a backslash-character combination which is not recognized
209by Perl. This combination appears in an interpolated variable or a
210C<'>-delimited regular expression.
211
212=item Unrecognized escape \\%c passed through
213
214(W) You used a backslash-character combination which is not recognized
215by Perl.
e02fdbd2 216
06eaf0bc 217=item Missing command in piped open
218
219(W) You used the C<open(FH, "| command")> or C<open(FH, "command |")>
220construction, but the command was missing or blank.
221
ba8251e8 222=head1 Obsolete Diagnostics
223
e02fdbd2 224Todo.
225
04d420f9 226=head1 Configuration Changes
227
228You can use "Configure -Uinstallusrbinperl" which causes installperl
229to skip installing perl also as /usr/bin/perl. This is useful if you
230prefer not to modify /usr/bin for some reason or another but harmful
555834d1 231because many scripts assume to find Perl in /usr/bin/perl.
232
233=head1 Configuration Changes
234
235You can use "Configure -Uinstallusrbinperl" which causes installperl
236to skip installing perl also as /usr/bin/perl. This is useful if you
237prefer not to modify /usr/bin for some reason or another but harmful
04d420f9 238because many scripts assume to find Perl in /usr/bin/perl.
239
ba8251e8 240=head1 BUGS
241
242If you find what you think is a bug, you might check the headers of
243recently posted articles in the comp.lang.perl.misc newsgroup.
244There may also be information at http://www.perl.com/perl/, the Perl
245Home Page.
246
247If you believe you have an unreported bug, please run the B<perlbug>
248program included with your release. Make sure you trim your bug down
249to a tiny but sufficient test case. Your bug report, along with the
250output of C<perl -V>, will be sent off to <F<perlbug@perl.com>> to be
251analysed by the Perl porting team.
252
253=head1 SEE ALSO
254
255The F<Changes> file for exhaustive details on what changed.
256
257The F<INSTALL> file for how to build Perl.
258
259The F<README> file for general stuff.
260
261The F<Artistic> and F<Copying> files for copyright information.
262
263=head1 HISTORY
264
265Written by Gurusamy Sarathy <F<gsar@umich.edu>>, with many contributions
266from The Perl Porters.
267
268Send omissions or corrections to <F<perlbug@perl.com>>.
269
270=cut