Add POLLUTE=1 option to MakeMaker
[p5sagit/p5-mst-13.2.git] / pod / perldelta.pod
CommitLineData
ba8251e8 1=head1 NAME
2
2bb14304 3perldelta - what's new for perl5.006 (as of 5.005_56)
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
2aea4d40 24compile perl with C<-DPERL_POLLUTE> in order to get these definitions. For
25extensions that are still using the old symbols, this option can be
26specified via MakeMaker:
27
28 perl Makefile.PL POLLUTE=1
e02fdbd2 29
86058a2d 30=item C<PERL_POLLUTE_MALLOC>
31
32Enabling the use of Perl's malloc in release 5.005 and earlier caused
33the namespace of system versions of the malloc family of functions to
34be usurped by the Perl versions of these functions, since they used the
35same names by default.
36
37Besides causing problems on platforms that do not allow these functions to
38be cleanly replaced, this also meant that the system versions could not
39be called in programs that used Perl's malloc. Previous versions of Perl
40have allowed this behavior to be suppressed with the HIDEMYMALLOC and
41EMBEDMYMALLOC preprocessor definitions.
42
43As of release 5.006, Perl's malloc family of functions have default names
44distinct from the system versions. You need to explicitly compile perl with
45C<-DPERL_POLLUTE_MALLOC> in order to get the older behavior. HIDEMYMALLOC
46and EMBEDMYMALLOC have no effect, since the behavior they enabled is now
47the default.
48
49Note that these functions do B<not> constitute Perl's memory allocation API.
50See L<perlguts/"Memory Allocation"> for further information about that.
51
e02fdbd2 52=item C<PL_na> and C<dTHR> Issues
53
54The C<PL_na> global is now thread local, so a C<dTHR> declaration is needed
55in the scope in which it appears. XSUBs should handle this automatically,
56but if you have used C<PL_na> in support functions, you either need to
57change the C<PL_na> to a local variable (which is recommended), or put in
58a C<dTHR>.
59
60=back
61
cceca5ed 62=head2 Compatible C Source API Changes
63
64=over
65
66=item C<PATCHLEVEL> is now C<PERL_VERSION>
67
68The cpp macros C<PERL_REVISION>, C<PERL_VERSION> and C<PERL_SUBVERSION>
69are now available by default from perl.h, and reflect the base revision,
70patchlevel and subversion respectively. C<PERL_REVISION> had no
71prior equivalent, while C<PERL_VERSION> and C<PERL_SUBVERSION> were
72previously available as C<PATCHLEVEL> and C<SUBVERSION>.
73
74The new names cause less pollution of the cpp namespace, and reflect what
75the numbers have come to stand for in common practice. For compatibility,
76the old names are still supported when patchlevel.h is explicitly
77included (as required before), so there is no source incompatibility
78due to the change.
79
80=back
81
e02fdbd2 82=head2 Binary Incompatibilities
83
84This release is not binary compatible with the 5.005 release and its
85maintenance versions.
86
ba8251e8 87=head1 Core Changes
88
9d73390d 89=head2 Unicode and UTF-8 support
90
91Perl can optionally use UTF-8 as its internal representation for character
92strings. The C<use utf8> pragma enables this support in the current lexical
93scope. See L<utf8> for more information.
94
95=head2 Lexically scoped warning categories
96
97You can now control the granularity of warnings emitted by perl at a finer
98level using the C<use warning> pragma. See L<warning> for details.
99
5fdc711f 100=head2 Binary numbers supported
101
4f19785b 102Binary numbers are now supported as literals, in s?printf formats, and
103C<oct()>:
104
105 $answer = 0b101010;
106 printf "The answer is: %b\n", oct("0b101010");
107
5fdc711f 108=head2 syswrite() ease-of-use
109
6c67e1bb 110The length argument of C<syswrite()> is now optional.
111
5fdc711f 112=head2 64-bit support
113
6c67e1bb 114Better 64-bit support -- but full support still a distant goal. One
115must Configure with -Duse64bits to get Configure to probe for the
116extent of 64-bit support. Depending on the platform (hints file) more
117or less 64-awareness becomes available. As of 5.005_54 at least
118somewhat 64-bit aware platforms are HP-UX 11 or better, Solaris 2.6 or
119better, IRIX 6.2 or better. Naturally 64-bit platforms like Digital
120UNIX and UNICOS also have 64-bit support.
e02fdbd2 121
62c18ce2 122=head2 Better syntax checks on parenthesized unary operators
123
124Expressions such as:
125
126 print defined(&foo,&bar,&baz);
127 print uc("foo","bar","baz");
128 undef($foo,&bar);
129
7711098a 130used to be accidentally allowed in earlier versions, and produced
62c18ce2 131unpredictable behavior. Some of them produced ancillary warnings
132when used in this way, while others silently did the wrong thing.
133
134The parenthesized forms of most unary operators that expect a single
135argument will now ensure that they are not called with more than one
136argument, making the above cases syntax errors. Note that the usual
137behavior of:
138
139 print defined &foo, &bar, &baz;
140 print uc "foo", "bar", "baz";
141 undef $foo, &bar;
142
143remains unchanged. See L<perlop>.
144
5a929a98 145=head2 Improved C<qw//> operator
8127e0e3 146
26ef7447 147The C<qw//> operator is now evaluated at compile time into a true list
148instead of being replaced with a run time call to C<split()>. This
149removes the confusing behavior of C<qw//> in scalar context stemming from
7711098a 150the older implementation, which inherited the behavior from split().
26ef7447 151
152Thus:
153
154 $foo = ($bar) = qw(a b c); print "$foo|$bar\n";
155
156now correctly prints "3|a", instead of "2|a".
8127e0e3 157
5a929a98 158=head2 pack() format 'Z' supported
159
160The new format type 'Z' is useful for packing and unpacking null-terminated
161strings. See L<perlfunc/"pack">.
162
4d0c1c44 163=head2 pack() format modifier '!' supported
ee3907e2 164
20783b42 165The new format type modifer '!' is useful for packing and unpacking
ee3907e2 166native shorts, ints, and longs. See L<perlfunc/"pack">.
167
2b92dfce 168=head2 $^X variables may now have names longer than one character
169
170Formerly, $^X was synonymous with ${"\cX"}, but $^XY was a syntax
171error. Now variable names that begin with a control character may be
172arbitrarily long. However, for compatibility reasons, these variables
173I<must> be written with explicit braces, as C<${^XY}> for example.
174C<${^XYZ}> is synonymous with ${"\cXYZ"}. Variable names with more
175than one control character, such as C<${^XY^Z}>, are illegal.
176
177The old syntax has not changed. As before, the `^X' may either be a
178literal control-X character or the two character sequence `caret' plus
179`X'. When the braces are omitted, the variable name stops after the
180control character. Thus C<"$^XYZ"> continues to be synonymous with
7711098a 181C<$^X . "YZ"> as before.
2b92dfce 182
183As before, lexical variables may not have names beginning with control
184characters. As before, variables whose names begin with a control
185character are always forced to be in package `main'. These variables
186are all reserved for future extensions, except the ones that begin
187with C<^_>, which may be used by user programs and will not acquire a
188special meaning in any future version of Perl.
189
fbad3eb5 190=head1 Significant bug fixes
191
192=head2 E<lt>HANDLEE<gt> on empty files
193
194With C<$/> set to C<undef>, slurping an empty file returns a string of
195zero length (instead of C<undef>, as it used to) for the first time the
196HANDLE is read. Subsequent reads yield C<undef>.
197
198This means that the following will append "foo" to an empty file (it used
199to not do anything before):
200
201 perl -0777 -pi -e 's/^/foo/' empty_file
202
203Note that the behavior of:
204
205 perl -pi -e 's/^/foo/' empty_file
206
207is unchanged (it continues to leave the file empty).
208
0244c3a4 209=head2 C<eval '...'> improvements
210
211Line numbers (as reflected by caller() and most diagnostics) within
212C<eval '...'> were often incorrect when here documents were involved.
213This has been corrected.
214
215Lexical lookups for variables appearing in C<eval '...'> within
216functions that were themselves called within an C<eval '...'> were
217searching the wrong place for lexicals. They now correctly terminate
218the lexical search at the subroutine call boundary.
219
220Parsing of here documents used to be flawed when they appeared as
221the replacement expression in C<eval 's/.../.../e'>. This has
222been fixed.
223
45bc9206 224=head2 Automatic flushing of output buffers
225
226fork(), exec(), system(), qx// and pipe open()s now flush the buffers
227of all files that were opened for output at the time the operation
228was attempted. The mostly eliminates the often confusing effects of
229buffering mishaps suffered by users unaware of how Perl internally
230handled I/O.
231
ba8251e8 232=head1 Supported Platforms
233
5fdc711f 234=over 4
235
236=item *
237
6c67e1bb 238VM/ESA is now supported.
239
5fdc711f 240=item *
241
ee3907e2 242Siemens BS2000 is now supported under the POSIX Shell.
243
244=item *
245
2bb14304 246The Mach CThreads (NEXTSTEP, OPENSTEP) are now supported by the Thread
247extension.
6c67e1bb 248
5fdc711f 249=item *
250
ee3907e2 251GNU/Hurd is now supported.
6c67e1bb 252
00ad96e1 253=item *
254
255Rhapsody is now supported.
256
5fdc711f 257=back
258
6c67e1bb 259=head1 New tests
260
261=over 4
262
263=item op/io_const
264
265IO constants (SEEK_*, _IO*).
266
267=item op/io_dir
268
269Directory-related IO methods (new, read, close, rewind, tied delete).
270
271=item op/io_multihomed
272
273INET sockets with multi-homed hosts.
274
275=item op/io_poll
276
277IO poll().
278
279=item op/io_unix
280
281UNIX sockets.
282
283=item op/filetest
284
285File test operators.
286
287=item op/lex_assign
288
5fdc711f 289Verify operations that access pad objects (lexicals and temporaries).
6c67e1bb 290
291=back
e02fdbd2 292
ba8251e8 293=head1 Modules and Pragmata
294
3e8c4fa0 295=head2 Modules
296
b7d8191e 297=over 4
298
299=item Dumpvalue
300
301Added Dumpvalue module provides screen dumps of Perl data.
302
303=item Benchmark
304
868cb350 305You can now run tests for I<n> seconds instead of guessing the right
155776c0 306number of tests to run: e.g. timethese(-5, ...) will run each of the
307codes for at least 5 CPU seconds. Zero as the "number of repetitions"
308means "for at least 3 CPU seconds". The output format has also
309changed. For example:
310
311use Benchmark;$x=3;timethese(-5,{a=>sub{$x*$x},b=>sub{$x**2}})
312
313will now output something like this:
314
315Benchmark: running a, b, each for at least 5 CPU seconds...
316 a: 5 wallclock secs ( 5.77 usr + 0.00 sys = 5.77 CPU) @ 200551.91/s (n=1156516)
317 b: 4 wallclock secs ( 5.00 usr + 0.02 sys = 5.02 CPU) @ 159605.18/s (n=800686)
318
319New features: "each for at least N CPU seconds...", "wallclock secs",
320and the "@ operations/CPU second (n=operations)".
b7d8191e 321
f505c983 322=item Devel::Peek
323
324The Devel::Peek module provides access to the internal representation
325of Perl variables. It is a data debugging tool for the XS programmer.
326
b7d8191e 327=item Fcntl
328
329More Fcntl constants added: F_SETLK64, F_SETLKW64, O_LARGEFILE for
330large (more than 4G) file access (the 64-bit support is not yet
331working, though, so no need to get overly excited), Free/Net/OpenBSD
332locking behaviour flags F_FLOCK, F_POSIX, Linux F_SHLCK, and
333O_ACCMODE: the mask of O_RDONLY, O_WRONLY, and O_RDWR.
334
f505c983 335=item File::Spec
336
337New methods have been added to the File::Spec module: devnull() returns
338the name of the null device (/dev/null on UNIX) and tmpdir() the name of
339the temp directory (normally /tmp on UNIX). There are now also methods
340to convert between absolute and relative filenames: abs2rel() and
341rel2abs(). For compatibility with operating systems that specify volume
342names in file paths, the splitpath(), splitdir() and catdir() methods
343have been added.
344
345=item File::Spec::Functions
346
347The new File::Spec::Functions modules provides a function interface
348to the File::Spec module. Allows shorthand
349
350 $fullname = catfile($dir1, $dir2, $file);
351
352instead of
353
354 $fullname = File::Spec->catfile($dir1, $dir2, $file);
355
e16b8f49 356=item Math::BigInt
357
358The logical operations C<E<lt>E<lt>>, C<E<gt>E<gt>>, C<&>, C<|>
359and C<~> are now supported on bigints.
360
b7d8191e 361=item Math::Complex
7711098a 362
868cb350 363The accessor methods Re, Im, arg, abs, rho, and theta, can now also
364act as mutators (accessor $z->Re(), mutator $z->Re(3)).
b7d8191e 365
366=item Math::Trig
367
368A little bit of radial trigonometry (cylindrical and spherical) added,
868cb350 369radial coordinate conversions and the great circle distance.
b7d8191e 370
f4b9d880 371=item SDBM_File
372
373An EXISTS method has been added to this module (and sdbm_exists() has
374been added to the underlying sdbm library), so one can now call exists
375on an SDBM_File tied hash and get the correct result rather than a
376runtime error.
377
06ef4121 378=item Time::Local
379
380The timelocal() and timegm() functions used to silently return bogus
381results when the date exceeded the machine's integer range. They
382consistently croak() if the date falls in an unsupported range.
383
8fe0a5c4 384=item Win32
385
386The error return value in list context has been changed for all functions
387that return a list of values. Previously these functions returned a list
388with a single element C<undef> in case an error occurred. Now these functions
389return the empty list in these situations. This applies to the following
390functions:
391
392 Win32::FsType
393 Win32::GetOSVersion
394
395The remaining functions are unchanged and continue to return C<undef> on
396error even in list context.
397
398The Win32::SetLastError(ERROR) function has been added as a complement
399to the Win32::GetLastError() function.
400
401The new Win32::GetFullPathName(FILENAME) returns the full absolute
402pathname for FILENAME in scalar context. In list context it returns
403a two element list containing the fully qualified directory name and
404the filename.
405
9fe6733a 406=item DBM Filters
407
408A new feature called "DBM Filters" has been added to all the
409DBM modules -- DB_File, GDBM_File, NDBM_File, ODBM_File and SDBM_File.
410DBM Filters add four new methods to each of the DBM modules
411
412 filter_store_key
413 filter_store_value
414 filter_fetch_key
415 filter_fetch_value
416
417These can be used to filter the contents of keys/values before they are
418written to the database or just after they are read from the database.
419See L<perldbmfilter> for further information.
420
b7d8191e 421=back
3e8c4fa0 422
423=head2 Pragmata
424
9d73390d 425C<use utf8;>, to enable UTF-8 and Unicode support.
426
427Lexical warnings pragma, C<use warning;>, to control optional warnings.
6c67e1bb 428
9d73390d 429C<use filetest;>, to control the behaviour of filetests (C<-r> C<-w> ...).
6c67e1bb 430Currently only one subpragma implemented, "use filetest 'access';",
431that enables the use of access(2) or equivalent to check the
432permissions instead of using stat(2) as usual. This matters
433in filesystems where there are ACLs (access control lists), the
434stat(2) might lie, while access(2) knows better.
435
ba8251e8 436=head1 Utility Changes
437
e02fdbd2 438Todo.
439
ba8251e8 440=head1 Documentation Changes
441
5fdc711f 442=over 4
443
444=item perlopentut.pod
f8284313 445
5fdc711f 446A tutorial on using open() effectively.
447
448=item perlreftut.pod
449
450A tutorial that introduces the essentials of references.
451
452=back
e02fdbd2 453
ba8251e8 454=head1 New Diagnostics
455
6b121555 456=item /%s/: Unrecognized escape \\%c passed through
457
458(W) You used a backslash-character combination which is not recognized
7711098a 459by Perl. This combination appears in an interpolated variable or a
6b121555 460C<'>-delimited regular expression.
461
462=item Unrecognized escape \\%c passed through
463
464(W) You used a backslash-character combination which is not recognized
465by Perl.
e02fdbd2 466
06eaf0bc 467=item Missing command in piped open
468
469(W) You used the C<open(FH, "| command")> or C<open(FH, "command |")>
470construction, but the command was missing or blank.
471
ba8251e8 472=head1 Obsolete Diagnostics
473
e02fdbd2 474Todo.
475
04d420f9 476=head1 Configuration Changes
477
478You can use "Configure -Uinstallusrbinperl" which causes installperl
479to skip installing perl also as /usr/bin/perl. This is useful if you
480prefer not to modify /usr/bin for some reason or another but harmful
481because many scripts assume to find Perl in /usr/bin/perl.
482
ba8251e8 483=head1 BUGS
484
485If you find what you think is a bug, you might check the headers of
486recently posted articles in the comp.lang.perl.misc newsgroup.
487There may also be information at http://www.perl.com/perl/, the Perl
488Home Page.
489
490If you believe you have an unreported bug, please run the B<perlbug>
491program included with your release. Make sure you trim your bug down
492to a tiny but sufficient test case. Your bug report, along with the
493output of C<perl -V>, will be sent off to <F<perlbug@perl.com>> to be
494analysed by the Perl porting team.
495
496=head1 SEE ALSO
497
498The F<Changes> file for exhaustive details on what changed.
499
500The F<INSTALL> file for how to build Perl.
501
502The F<README> file for general stuff.
503
504The F<Artistic> and F<Copying> files for copyright information.
505
506=head1 HISTORY
507
508Written by Gurusamy Sarathy <F<gsar@umich.edu>>, with many contributions
509from The Perl Porters.
510
511Send omissions or corrections to <F<perlbug@perl.com>>.
512
513=cut