Document the DJGPP status.
[p5sagit/p5-mst-13.2.git] / pod / perldelta.pod
1 =head1 NAME
2
3 perldelta - what is new for perl v5.8.0
4
5 =head1 DESCRIPTION
6
7 This document describes differences between the 5.6.0 release and
8 the 5.8.0 release.
9
10 Many of the bug fixes in 5.8.0 were already seen in the 5.6.1
11 maintenance release since the two releases were kept closely
12 coordinated (while 5.8.0 was still called 5.7.something).
13
14 Changes that were integrated into the 5.6.1 release are marked C<[561]>.
15 Many of these changes have been further developed since 5.6.1 was released,
16 those are marked C<[561+]>.
17
18 You can see the list of changes in the 5.6.1 release (both from the
19 5.005_03 release and the 5.6.0 release) by reading L<perl561delta>.
20
21 =head1 Highlights In 5.8.0
22
23 =over 4
24
25 =item *
26
27 Better Unicode support
28
29 =item *
30
31 New IO Implementation
32
33 =item *
34
35 New Thread Implementation
36
37 =item *
38
39 Better Numeric Accuracy
40
41 =item *
42
43 Safe Signals
44
45 =item *
46
47 Many New Modules
48
49 =item *
50
51 More Extensive Regression Testing
52
53 =back
54
55 =head1 Incompatible Changes
56
57 =head2 Binary Incompatibility
58
59 B<Perl 5.8 is not binary compatible with earlier releases of Perl.>
60
61 B<You have to recompile your XS modules.>
62
63 (Pure Perl modules should continue to work.)
64
65 The major reason for the discontinuity is the new IO architecture
66 called PerlIO.  PerlIO is the default configuration because without
67 it many new features of Perl 5.8 cannot be used.  In other words:
68 you just have to recompile your modules containing XS code, sorry
69 about that.
70
71 In future releases of Perl, non-PerlIO aware XS modules may become
72 completely unsupported.  This shouldn't be too difficult for module
73 authors, however: PerlIO has been designed as a drop-in replacement
74 (at the source code level) for the stdio interface.
75
76 Depending on your platform, there are also other reasons why
77 we decided to break binary compatibility, please read on.
78
79 =head2 64-bit platforms and malloc
80
81 If your pointers are 64 bits wide, the Perl malloc is no longer being
82 used because it does not work well with 8-byte pointers.  Also,
83 usually the system mallocs on such platforms are much better optimized
84 for such large memory models than the Perl malloc.  Some memory-hungry
85 Perl applications like the PDL don't work well with Perl's malloc.
86 Finally, other applications than Perl (such as mod_perl) tend to prefer
87 the system malloc.  Such platforms include Alpha and 64-bit HPPA,
88 MIPS, PPC, and Sparc.
89
90 =head2 AIX Dynaloading
91
92 The AIX dynaloading now uses in AIX releases 4.3 and newer the native
93 dlopen interface of AIX instead of the old emulated interface.  This
94 change will probably break backward compatibility with compiled
95 modules.  The change was made to make Perl more compliant with other
96 applications like mod_perl which are using the AIX native interface.
97
98 =head2 Attributes for C<my> variables now handled at run-time
99
100 The C<my EXPR : ATTRS> syntax now applies variable attributes at
101 run-time.  (Subroutine and C<our> variables still get attributes applied
102 at compile-time.)  See L<attributes> for additional details.  In particular,
103 however, this allows variable attributes to be useful for C<tie> interfaces,
104 which was a deficiency of earlier releases.  Note that the new semantics
105 doesn't work with the Attribute::Handlers module (as of version 0.76).
106
107 =head2 Socket Extension Dynamic in VMS
108
109 The Socket extension is now dynamically loaded instead of being
110 statically built in.  This may or may not be a problem with ancient
111 TCP/IP stacks of VMS: we do not know since we weren't able to test
112 Perl in such configurations.
113
114 =head2 IEEE-format Floating Point Default on OpenVMS Alpha
115
116 Perl now uses IEEE format (T_FLOAT) as the default internal floating
117 point format on OpenVMS Alpha, potentially breaking binary compatibility
118 with external libraries or existing data.  G_FLOAT is still available as
119 a configuration option.  The default on VAX (D_FLOAT) has not changed.
120
121 =head2 New Unicode Semantics (no more C<use utf8>, almost)
122
123 Previously in Perl 5.6 to use Unicode one would say "use utf8" and
124 then the operations (like string concatenation) were Unicode-aware
125 in that lexical scope.
126
127 This was found to be an inconvenient interface, and in Perl 5.8 the
128 Unicode model has completely changed: now the "Unicodeness" is bound
129 to the data itself, and for most of the time "use utf8" is not needed
130 at all.  The only remaining use of "use utf8" is when the Perl script
131 itself has been written in the UTF-8 encoding of Unicode.  (UTF-8 has
132 not been made the default since there are many Perl scripts out there
133 that are using various national eight-bit character sets, which would
134 be illegal in UTF-8.)
135
136 See L<perluniintro> for the explanation of the current model,
137 and L<utf8> for the current use of the utf8 pragma.
138
139 =head2 New Unicode Properties
140
141 Unicode I<scripts> are now supported. Scripts are similar to (and superior
142 to) Unicode I<blocks>. The difference between scripts and blocks is that
143 scripts are the glyphs used by a language or a group of languages, while
144 the blocks are more artificial groupings of (mostly) 256 characters based
145 on the Unicode numbering.
146
147 In general, scripts are more inclusive, but not universally so. For
148 example, while the script C<Latin> includes all the Latin characters and
149 their various diacritic-adorned versions, it does not include the various
150 punctuation or digits (since they are not solely C<Latin>).
151
152 A number of other properties are now supported, including C<\p{L&}>,
153 C<\p{Any}> C<\p{Assigned}>, C<\p{Unassigned}>, C<\p{Blank}> [561] and
154 C<\p{SpacePerl}> [561] (along with their C<\P{...}> versions, of course).
155 See L<perlunicode> for details, and more additions.
156
157 The C<In> or C<Is> prefix to names used with the C<\p{...}> and C<\P{...}>
158 are now almost always optional. The only exception is that a C<In> prefix
159 is required to signify a Unicode block when a block name conflicts with a
160 script name. For example, C<\p{Tibetan}> refers to the script, while
161 C<\p{InTibetan}> refers to the block. When there is no name conflict, you
162 can omit the C<In> from the block name (e.g. C<\p{BraillePatterns}>), but
163 to be safe, it's probably best to always use the C<In>).
164
165 =head2 REF(...) Instead Of SCALAR(...)
166
167 A reference to a reference now stringifies as "REF(0x81485ec)" instead
168 of "SCALAR(0x81485ec)" in order to be more consistent with the return
169 value of ref().
170
171 =head2 pack/unpack D/F recycled
172
173 The undocumented pack/unpack template letters D/F have been recycled
174 for better use: now they stand for long double (if supported by the
175 platform) and NV (Perl internal floating point type).  (They used
176 to be aliases for d/f, but you never knew that.)
177
178 =head2 glob() now returns filenames in alphabetical order
179
180 The list of filenames from glob() (or <...>) is now by default sorted
181 alphabetically to be csh-compliant (which is what happened before
182 in most UNIX platforms).  (bsd_glob() does still sort platform
183 natively, ASCII or EBCDIC, unless GLOB_ALPHASORT is specified.) [561]
184
185 =head2 Deprecations
186
187 =over 4
188
189 =item *
190
191 The semantics of bless(REF, REF) were unclear and until someone proves
192 it to make some sense, it is forbidden.
193
194 =item *
195
196 The obsolete chat2 library that should never have been allowed
197 to escape the laboratory has been decommissioned.
198
199 =item *
200
201 The builtin dump() function has probably outlived most of its
202 usefulness.  The core-dumping functionality will remain in future
203 available as an explicit call to C<CORE::dump()>, but in future
204 releases the behaviour of an unqualified C<dump()> call may change.
205
206 =item *
207
208 The very dusty examples in the eg/ directory have been removed.
209 Suggestions for new shiny examples welcome but the main issue is that
210 the examples need to be documented, tested and (most importantly)
211 maintained.
212
213 =item *
214
215 The (bogus) escape sequences \8 and \9 now give an optional warning
216 ("Unrecognized escape passed through").  There is no need to \-escape
217 any C<\w> character.
218
219 =item *
220
221 The *glob{FILEHANDLE} is deprecated, use *glob{IO} instead.
222
223 =item *
224
225 The C<package;> syntax (C<package> without an argument) has been
226 deprecated.  Its semantics were never that clear and its
227 implementation even less so.  If you have used that feature to
228 disallow all but fully qualified variables, C<use strict;> instead.
229
230 =item *
231
232 The unimplemented POSIX regex features [[.cc.]] and [[=c=]] are still
233 recognised but now cause fatal errors.  The previous behaviour of
234 ignoring them by default and warning if requested was unacceptable
235 since it, in a way, falsely promised that the features could be used.
236
237 =item *
238
239 In future releases, non-PerlIO aware XS modules may become completely
240 unsupported.  Since PerlIO is a drop-in replacement for stdio at the
241 source code level, this shouldn't be that drastic a change.
242
243 =item *
244
245 Previous versions of perl and some readings of some sections of Camel
246 III implied that the C<:raw> "discipline" was the inverse of C<:crlf>.
247 Turning off "clrfness" is no longer enough to make a stream truly
248 binary. So the PerlIO C<:raw> layer (or "discipline", to use the Camel
249 book's older terminology) is now formally defined as being equivalent
250 to binmode(FH) - which is in turn defined as doing whatever is
251 necessary to pass each byte as-is without any translation.  In
252 particular binmode(FH) - and hence C<:raw> - will now turn off both
253 CRLF and UTF-8 translation and remove other layers (e.g. :encoding())
254 which would modify byte stream.
255
256 =item *
257
258 The current user-visible implementation of pseudo-hashes (the weird
259 use of the first array element) is deprecated starting from Perl 5.8.0
260 and will be removed in Perl 5.10.0, and the feature will be
261 implemented differently.  Not only is the current interface rather
262 ugly, but the current implementation slows down normal array and hash
263 use quite noticeably. The C<fields> pragma interface will remain
264 available.  The I<restricted hashes> interface is expected to
265 be the replacement interface (see L<Hash::Util>).  If your existing
266 programs depends on the underlying implementation, consider using
267 L<Class::PseudoHash> from CPAN.
268
269 =item *
270
271 The syntaxes C<< @a->[...] >> and  C<< %h->{...} >> have now been deprecated.
272
273 =item *
274
275 After years of trying, suidperl is considered to be too complex to
276 ever be considered truly secure.  The suidperl functionality is likely
277 to be removed in a future release.
278
279 =item *
280
281 The 5.005 threads model (module C<Thread>) is deprecated and expected
282 to be removed in Perl 5.10.  Multithreaded code should be migrated to
283 the new ithreads model (see L<threads>, L<threads::shared> and
284 L<perlthrtut>).
285
286 =item *
287
288 The long deprecated uppercase aliases for the string comparison
289 operators (EQ, NE, LT, LE, GE, GT) have now been removed.
290
291 =item *
292
293 The tr///C and tr///U features have been removed and will not return;
294 the interface was a mistake.  Sorry about that.  For similar
295 functionality, see pack('U0', ...) and pack('C0', ...). [561]
296
297 =item *
298
299 Earlier Perls treated "sub foo (@bar)" as equivalent to "sub foo (@)".
300 The prototypes are now checked better at compile-time for invalid
301 syntax.  An optional warning is generated ("Illegal character in
302 prototype...")  but this may be upgraded to a fatal error in a future
303 release.
304
305 =item *
306
307 The C<exec LIST> and C<system LIST> operations now produce warnings on
308 tainted data and in some future release they will produce fatal errors.
309
310 =item *
311
312 The existing behaviour when localising tied arrays and hashes is wrong,
313 and will be changed in a future release, so do not rely on the existing
314 behaviour. See L<"Localising Tied Arrays and Hashes Is Broken">.
315
316 =back
317
318 =head1 Core Enhancements
319
320 =head2 Unicode Overhaul
321
322 Unicode in general should be now much more usable than in Perl 5.6.0
323 (or even in 5.6.1).  Unicode can be used in hash keys, Unicode in
324 regular expressions should work now, Unicode in tr/// should work now,
325 Unicode in I/O should work now.  See L<perluniintro> for introduction
326 and L<perlunicode> for details.
327
328 =over 4
329
330 =item *
331
332 The Unicode Character Database coming with Perl has been upgraded
333 to Unicode 3.2.0.  For more information, see http://www.unicode.org/ .
334 [561+] (5.6.1 has UCD 3.0.1.)
335
336 =item *
337
338 For developers interested in enhancing Perl's Unicode capabilities:
339 almost all the UCD files are included with the Perl distribution in
340 the F<lib/unicore> subdirectory.  The most notable omission, for space
341 considerations, is the Unihan database.
342
343 =item *
344
345 The properties \p{Blank} and \p{SpacePerl} have been added. "Blank" is like
346 C isblank(), that is, it contains only "horizontal whitespace" (the space
347 character is, the newline isn't), and the "SpacePerl" is the Unicode
348 equivalent of C<\s> (\p{Space} isn't, since that includes the vertical
349 tabulator character, whereas C<\s> doesn't.)
350
351 See "New Unicode Properties" earlier in this document for additional
352 information on changes with Unicode properties.
353
354 =back
355
356 =head2 PerlIO is Now The Default
357
358 =over 4
359
360 =item *
361
362 IO is now by default done via PerlIO rather than system's "stdio".
363 PerlIO allows "layers" to be "pushed" onto a file handle to alter the
364 handle's behaviour.  Layers can be specified at open time via 3-arg
365 form of open:
366
367    open($fh,'>:crlf :utf8', $path) || ...
368
369 or on already opened handles via extended C<binmode>:
370
371    binmode($fh,':encoding(iso-8859-7)');
372
373 The built-in layers are: unix (low level read/write), stdio (as in
374 previous Perls), perlio (re-implementation of stdio buffering in a
375 portable manner), crlf (does CRLF <=> "\n" translation as on Win32,
376 but available on any platform).  A mmap layer may be available if
377 platform supports it (mostly UNIXes).
378
379 Layers to be applied by default may be specified via the 'open' pragma.
380
381 See L</"Installation and Configuration Improvements"> for the effects
382 of PerlIO on your architecture name.
383
384 =item *
385
386 If your platform supports fork(), you can use the list form of C<open>
387 for pipes.  For example:
388
389     open KID_PS, "-|", "ps", "aux" or die $!;
390
391 forks the ps(1) command (without spawning a shell, as there are more
392 than three arguments to open()), and reads its standard output via the
393 C<KID_PS> filehandle.  See L<perlipc>.
394
395 =item *
396
397 File handles can be marked as accepting Perl's internal encoding of Unicode
398 (UTF-8 or UTF-EBCDIC depending on platform) by a pseudo layer ":utf8" :
399
400    open($fh,">:utf8","Uni.txt");
401
402 Note for EBCDIC users: the pseudo layer ":utf8" is erroneously named
403 for you since it's not UTF-8 what you will be getting but instead
404 UTF-EBCDIC.  See L<perlunicode>, L<utf8>, and
405 http://www.unicode.org/unicode/reports/tr16/ for more information.
406 In future releases this naming may change.  See L<perluniintro>
407 for more information about UTF-8.
408
409 =item *
410
411 If your environment variables (LC_ALL, LC_CTYPE, LANG, LANGUAGE) look
412 like you want to use UTF-8 (any of the the variables match C</utf-?8/i>),
413 your STDIN, STDOUT, STDERR handles and the default open layer
414 (see L<open>) are marked as UTF-8.  (This feature, like other new
415 features that combine Unicode and I/O, work only if you are using
416 PerlIO, but that's the default.)
417
418 Note that after this Perl really does assume that everything is UTF-8:
419 for example if some input handle is not, Perl will probably very soon
420 complain about the input data like this "Malformed UTF-8 ..." since
421 any old eight-bit data is not legal UTF-8.
422
423 Note for code authors: if you want to enable your users to use UTF-8
424 as their default encoding  but in your code still have eight-bit I/O streams
425 (such as images or zip files), you need to explicitly open() or binmode()
426 with C<:bytes> (see L<perlfunc/open> and L<perlfunc/binmode>), or you
427 can just use C<binmode(FH)> (nice for pre-5.8.0 backward compatibility).
428
429 =item *
430
431 File handles can translate character encodings from/to Perl's internal
432 Unicode form on read/write via the ":encoding()" layer.
433
434 =item *
435
436 File handles can be opened to "in memory" files held in Perl scalars via:
437
438    open($fh,'>', \$variable) || ...
439
440 =item *
441
442 Anonymous temporary files are available without need to
443 'use FileHandle' or other module via
444
445    open($fh,"+>", undef) || ...
446
447 That is a literal undef, not an undefined value.
448
449 =back
450
451 =head2 ithreads
452
453 The new interpreter threads ("ithreads" for short) implementation of
454 multithreading, by Arthur Bergman, replaces the old "5.005 threads"
455 implementation.  In the ithreads model any data sharing between
456 threads must be explicit, as opposed to the model where data sharing
457 was implicit.  See L<threads> and L<threads::shared>, and
458 L<perlthrtut>.
459
460 As a part of the ithreads implementation Perl will also use
461 any necessary and detectable reentrant libc interfaces.
462
463 =head2 Restricted Hashes
464
465 A restricted hash is restricted to a certain set of keys, no keys
466 outside the set can be added.  Also individual keys can be restricted
467 so that the key cannot be deleted and the value cannot be changed.
468 No new syntax is involved: the Hash::Util module is the interface.
469
470 =head2 Safe Signals
471
472 Perl used to be fragile in that signals arriving at inopportune moments
473 could corrupt Perl's internal state.  Now Perl postpones handling of
474 signals until it's safe (between opcodes).
475
476 This change may have surprising side effects because signals no longer
477 interrupt Perl instantly.  Perl will now first finish whatever it was
478 doing, like finishing an internal operation (like sort()) or an
479 external operation (like an I/O operation), and only then look at any
480 arrived signals (and before starting the next operation).  No more corrupt
481 internal state since the current operation is always finished first,
482 but the signal may take more time to get heard.  Note that breaking
483 out from potentially blocking operations should still work, though.
484
485 =head2 Understanding of Numbers
486
487 In general a lot of fixing has happened in the area of Perl's
488 understanding of numbers, both integer and floating point.  Since in
489 many systems the standard number parsing functions like C<strtoul()>
490 and C<atof()> seem to have bugs, Perl tries to work around their
491 deficiencies.  This results hopefully in more accurate numbers.
492
493 Perl now tries internally to use integer values in numeric conversions
494 and basic arithmetics (+ - * /) if the arguments are integers, and
495 tries also to keep the results stored internally as integers.
496 This change leads to often slightly faster and always less lossy
497 arithmetics. (Previously Perl always preferred floating point numbers
498 in its math.)
499
500 =head2 Arrays now always interpolate into double-quoted strings [561]
501
502 In double-quoted strings, arrays now interpolate, no matter what.  The
503 behavior in earlier versions of perl 5 was that arrays would interpolate
504 into strings if the array had been mentioned before the string was
505 compiled, and otherwise Perl would raise a fatal compile-time error.
506 In versions 5.000 through 5.003, the error was
507
508         Literal @example now requires backslash
509
510 In versions 5.004_01 through 5.6.0, the error was
511
512         In string, @example now must be written as \@example
513
514 The idea here was to get people into the habit of writing
515 C<"fred\@example.com"> when they wanted a literal C<@> sign, just as
516 they have always written C<"Give me back my \$5"> when they wanted a
517 literal C<$> sign.
518
519 Starting with 5.6.1, when Perl now sees an C<@> sign in a
520 double-quoted string, it I<always> attempts to interpolate an array,
521 regardless of whether or not the array has been used or declared
522 already.  The fatal error has been downgraded to an optional warning:
523
524         Possible unintended interpolation of @example in string
525
526 This warns you that C<"fred@example.com"> is going to turn into
527 C<fred.com> if you don't backslash the C<@>.
528 See http://www.plover.com/~mjd/perl/at-error.html for more details
529 about the history here.
530
531 =head2 Miscellaneous Changes
532
533 =over 4
534
535 =item *
536
537 AUTOLOAD is now lvaluable, meaning that you can add the :lvalue attribute
538 to AUTOLOAD subroutines and you can assign to the AUTOLOAD return value.
539
540 =item *
541
542 The $Config{byteorder} (and corresponding BYTEORDER in config.h) was
543 previously wrong in platforms if sizeof(long) was 4, but sizeof(IV)
544 was 8.  The byteorder was only sizeof(long) bytes long (1234 or 4321),
545 but now it is correctly sizeof(IV) bytes long, (12345678 or 87654321).
546 (This problem didn't affect Windows platforms.)
547
548 Also, $Config{byteorder} is now computed dynamically--this is more
549 robust with "fat binaries" where an executable image contains binaries
550 for more than one binary platform, and when cross-compiling.
551
552 =item *
553
554 C<perl -d:Module=arg,arg,arg> now works (previously one couldn't pass
555 in multiple arguments.)
556
557 =item *
558
559 C<do> followed by a bareword now ensures that this bareword isn't
560 a keyword (to avoid a bug where C<do q(foo.pl)> tried to call a
561 subroutine called C<q>).  This means that for example instead of
562 C<do format()> you must write C<do &format()>.
563
564 =item *
565
566 The builtin dump() now gives an optional warning
567 C<dump() better written as CORE::dump()>,
568 meaning that by default C<dump(...)> is resolved as the builtin
569 dump() which dumps core and aborts, not as (possibly) user-defined
570 C<sub dump>.  To call the latter, qualify the call as C<&dump(...)>.
571 (The whole dump() feature is to considered deprecated, and possibly
572 removed/changed in future releases.)
573
574 =item *
575
576 chomp() and chop() are now overridable.  Note, however, that their
577 prototype (as given by C<prototype("CORE::chomp")> is undefined,
578 because it cannot be expressed and therefore one cannot really write
579 replacements to override these builtins.
580
581 =item *
582
583 END blocks are now run even if you exit/die in a BEGIN block.
584 Internally, the execution of END blocks is now controlled by
585 PL_exit_flags & PERL_EXIT_DESTRUCT_END. This enables the new
586 behaviour for Perl embedders. This will default in 5.10. See
587 L<perlembed>.
588
589 =item *
590
591 Formats now support zero-padded decimal fields.
592
593 =item *
594
595 Although "you shouldn't do that", it was possible to write code that
596 depends on Perl's hashed key order (Data::Dumper does this).  The new
597 algorithm "One-at-a-Time" produces a different hashed key order.
598 More details are in L</"Performance Enhancements">.
599
600 =item *
601
602 lstat(FILEHANDLE) now gives a warning because the operation makes no sense.
603 In future releases this may become a fatal error.
604
605 =item *
606
607 Spurious syntax errors generated in certain situations, when glob()
608 caused File::Glob to be loaded for the first time, have been fixed. [561]
609
610 =item *
611
612 Lvalue subroutines can now return C<undef> in list context.  However,
613 the lvalue subroutine feature still remains experimental.  [561+]
614
615 =item *
616
617 A lost warning "Can't declare ... dereference in my" has been
618 restored (Perl had it earlier but it became lost in later releases.)
619
620 =item *
621
622 A new special regular expression variable has been introduced:
623 C<$^N>, which contains the most-recently closed group (submatch).
624
625 =item *
626
627 C<no Module;> does not produce an error even if Module does not have an
628 unimport() method.  This parallels the behavior of C<use> vis-a-vis
629 C<import>. [561]
630
631 =item *
632
633 The numerical comparison operators return C<undef> if either operand
634 is a NaN.  Previously the behaviour was unspecified.
635
636 =item *
637
638 C<our> can now have an experimental optional attribute C<unique> that
639 affects how global variables are shared among multiple interpreters,
640 see L<perlfunc/our>.
641
642 =item *
643
644 The following builtin functions are now overridable: each(), keys(),
645 pop(), push(), shift(), splice(), unshift(). [561]
646
647 =item *
648
649 C<pack() / unpack()> can now group template letters with C<()> and then
650 apply repetition/count modifiers on the groups.
651
652 =item *
653
654 C<pack() / unpack()> can now process the Perl internal numeric types:
655 IVs, UVs, NVs-- and also long doubles, if supported by the platform.
656 The template letters are C<j>, C<J>, C<F>, and C<D>.
657
658 =item *
659
660 C<pack('U0a*', ...)> can now be used to force a string to UTF8.
661
662 =item *
663
664 my __PACKAGE__ $obj now works. [561]
665
666 =item *
667
668 POSIX::sleep() now returns the number of I<unslept> seconds
669 (as the POSIX standard says), as opposed to CORE::sleep() which
670 returns the number of slept seconds.
671
672 =item *
673
674 The printf() and sprintf() now support parameter reordering using the
675 C<%\d+\$> and C<*\d+\$> syntaxes.  For example
676
677     print "%2\$s %1\$s\n", "foo", "bar";
678
679 will print "bar foo\n".  This feature helps in writing
680 internationalised software, and in general when the order
681 of the parameters can vary.
682
683 =item *
684
685 The (\&) prototype now works properly. [561]
686
687 =item *
688
689 prototype(\[$@%&]) is now available to implicitly create references
690 (useful for example if you want to emulate the tie() interface).
691
692 =item *
693
694 A new command-line option, C<-t> is available.  It is the
695 little brother of C<-T>: instead of dying on taint violations,
696 lexical warnings are given.  B<This is only meant as a temporary
697 debugging aid while securing the code of old legacy applications.
698 This is not a substitute for -T.>
699
700 =item *
701
702 In other taint news, the C<exec LIST> and C<system LIST> have now been
703 considered too risky (think C<exec @ARGV>: it can start any program
704 with any arguments), and now the said forms cause a warning under
705 lexical warnings.  You should carefully launder the arguments to
706 guarantee their validity.  In future releases of Perl the forms will
707 become fatal errors so consider starting laundering now.
708
709 =item *
710
711 Tied hash interfaces are now required to have the EXISTS and DELETE
712 methods (either own or inherited).
713
714 =item *
715
716 If tr/// is just counting characters, it doesn't attempt to
717 modify its target.
718
719 =item *
720
721 untie() will now call an UNTIE() hook if it exists.  See L<perltie>
722 for details. [561]
723
724 =item *
725
726 L<utime> now supports C<utime undef, undef, @files> to change the
727 file timestamps to the current time.
728
729 =item *
730
731 The rules for allowing underscores (underbars) in numeric constants
732 have been relaxed and simplified: now you can have an underscore
733 simply B<between digits>.
734
735 =item *
736
737 Rather than relying on C's argv[0] (which may not contain a full pathname)
738 where possible $^X is now set by asking the operating system.
739 (eg by reading F</proc/self/exe> on Linux, F</proc/curproc/file> on FreeBSD)
740
741 =item *
742
743 A new variable, C<${^TAINT}>, indicates whether taint mode is enabled.
744
745 =item *
746
747 You can now override the readline() builtin, and this overrides also
748 the <FILEHANDLE> angle bracket operator.
749
750 =item *
751
752 The command-line options -s and -F are now recognized on the shebang
753 (#!) line.
754
755 =item *
756
757 Use of the C</c> match modifier without an accompanying C</g> modifier
758 elicits a new warning: C<Use of /c modifier is meaningless without /g>.
759
760 Use of C</c> in substitutions, even with C</g>, elicits
761 C<Use of /c modifier is meaningless in s///>.
762
763 Use of C</g> with C<split> elicits C<Use of /g modifier is meaningless
764 in split>.
765
766 =item *
767
768 Support for the C<CLONE> special subroutine had been added.
769 With ithreads, when a new thread is created, all Perl data is cloned,
770 however non-Perl data cannot be cloned automatically.  In C<CLONE> you
771 can do whatever you need to do, like for example handle the cloning of
772 non-Perl data, if necessary.  C<CLONE> will be executed once for every
773 package that has it defined or inherited.  It will be called in the
774 context of the new thread, so all modifications are made in the new area.
775
776 See L<perlmod>
777
778 =back
779
780 =head1 Modules and Pragmata
781
782 =head2 New Modules and Pragmata
783
784 =over 4
785
786 =item *
787
788 C<Attribute::Handlers>, originally by Damian Conway and now maintained
789 by Arthur Bergman, allows a class to define attribute handlers.
790
791     package MyPack;
792     use Attribute::Handlers;
793     sub Wolf :ATTR(SCALAR) { print "howl!\n" }
794
795     # later, in some package using or inheriting from MyPack...
796
797     my MyPack $Fluffy : Wolf; # the attribute handler Wolf will be called
798
799 Both variables and routines can have attribute handlers.  Handlers can
800 be specific to type (SCALAR, ARRAY, HASH, or CODE), or specific to the
801 exact compilation phase (BEGIN, CHECK, INIT, or END).
802 See L<Attribute::Handlers>.
803
804 =item *
805
806 C<B::Concise>, by Stephen McCamant, is a new compiler backend for
807 walking the Perl syntax tree, printing concise info about ops.
808 The output is highly customisable.  See L<B::Concise>. [561+]
809
810 =item *
811
812 The new bignum, bigint, and bigrat pragmas, by Tels, implement
813 transparent bignum support (using the Math::BigInt, Math::BigFloat,
814 and Math::BigRat backends).
815
816 =item *
817
818 C<Class::ISA>, by Sean Burke, is a module for reporting the search
819 path for a class's ISA tree.  See L<Class::ISA>.
820
821 =item *
822
823 C<Cwd> now has a split personality: if possible, an XS extension is
824 used, (this will hopefully be faster, more secure, and more robust)
825 but if not possible, the familiar Perl implementation is used.
826
827 =item *
828
829 C<Devel::PPPort>, originally by Kenneth Albanowski and now
830 maintained by Paul Marquess, has been added.  It is primarily used
831 by C<h2xs> to enhance portability of XS modules between different
832 versions of Perl.  See L<Devel::PPPort>.
833
834 =item *
835
836 C<Digest>, frontend module for calculating digests (checksums), from
837 Gisle Aas, has been added.  See L<Digest>.
838
839 =item *
840
841 C<Digest::MD5> for calculating MD5 digests (checksums) as defined in
842 RFC 1321, from Gisle Aas, has been added.  See L<Digest::MD5>.
843
844     use Digest::MD5 'md5_hex';
845
846     $digest = md5_hex("Thirsty Camel");
847
848     print $digest, "\n"; # 01d19d9d2045e005c3f1b80e8b164de1
849
850 NOTE: the C<MD5> backward compatibility module is deliberately not
851 included since its further use is discouraged.
852
853 See also L<PerlIO::via::QuotedPrint>.
854
855 =item *
856
857 C<Encode>, originally by Nick Ing-Simmons and now maintained by Dan
858 Kogai, provides a mechanism to translate between different character
859 encodings.  Support for Unicode, ISO-8859-1, and ASCII are compiled in
860 to the module.  Several other encodings (like the rest of the
861 ISO-8859, CP*/Win*, Mac, KOI8-R, three variants EBCDIC, Chinese,
862 Japanese, and Korean encodings) are included and can be loaded at
863 runtime.  (For space considerations, the largest Chinese encodings
864 have been separated into their own CPAN module, Encode::HanExtra,
865 which Encode will use if available).  See L<Encode>.
866
867 Any encoding supported by Encode module is also available to the
868 ":encoding()" layer if PerlIO is used.
869
870 =item *
871
872 C<Hash::Util> is the interface to the new I<restricted hashes>
873 feature.  (Implemented by Jeffrey Friedl, Nick Ing-Simmons, and
874 Michael Schwern.)  See L<Hash::Util>.
875
876 =item *
877
878 C<I18N::Langinfo> can be used to query locale information.
879 See L<I18N::Langinfo>.
880
881 =item *
882
883 C<I18N::LangTags>, by Sean Burke, has functions for dealing with
884 RFC3066-style language tags.  See L<I18N::LangTags>.
885
886 =item *
887
888 C<ExtUtils::Constant>, by Nicholas Clark, is a new tool for extension
889 writers for generating XS code to import C header constants.
890 See L<ExtUtils::Constant>.
891
892 =item *
893
894 C<Filter::Simple>, by Damian Conway, is an easy-to-use frontend to
895 Filter::Util::Call.  See L<Filter::Simple>.
896
897     # in MyFilter.pm:
898
899     package MyFilter;
900
901     use Filter::Simple sub {
902         while (my ($from, $to) = splice @_, 0, 2) {
903                 s/$from/$to/g;
904         }
905     };
906
907     1;
908
909     # in user's code:
910
911     use MyFilter qr/red/ => 'green';
912
913     print "red\n";   # this code is filtered, will print "green\n"
914     print "bored\n"; # this code is filtered, will print "bogreen\n"
915
916     no MyFilter;
917
918     print "red\n";   # this code is not filtered, will print "red\n"
919
920 =item *
921
922 C<File::Temp>, by Tim Jenness, allows one to create temporary files
923 and directories in an easy, portable, and secure way.  See L<File::Temp>.
924 [561+]
925
926 =item *
927
928 C<Filter::Util::Call>, by Paul Marquess, provides you with the
929 framework to write I<source filters> in Perl.  For most uses, the
930 frontend Filter::Simple is to be preferred.  See L<Filter::Util::Call>.
931
932 =item *
933
934 C<if>, by Ilya Zakharevich, is a new pragma for conditional inclusion
935 of modules.
936
937 =item *
938
939 L<libnet>, by Graham Barr, is a collection of perl5 modules related
940 to network programming.  See L<Net::FTP>, L<Net::NNTP>, L<Net::Ping>
941 (not part of libnet, but related), L<Net::POP3>, L<Net::SMTP>,
942 and L<Net::Time>.
943
944 Perl installation leaves libnet unconfigured; use F<libnetcfg>
945 to configure it.
946
947 =item *
948
949 C<List::Util>, by Graham Barr, is a selection of general-utility
950 list subroutines, such as sum(), min(), first(), and shuffle().
951 See L<List::Util>.
952
953 =item *
954
955 C<Locale::Constants>, C<Locale::Country>, C<Locale::Currency>
956 C<Locale::Language>, and L<Locale::Script>, by Neil Bowers, have
957 been added.  They provide the codes for various locale standards, such
958 as "fr" for France, "usd" for US Dollar, and "ja" for Japanese.
959
960     use Locale::Country;
961
962     $country = code2country('jp');               # $country gets 'Japan'
963     $code    = country2code('Norway');           # $code gets 'no'
964
965 See L<Locale::Constants>, L<Locale::Country>, L<Locale::Currency>,
966 and L<Locale::Language>.
967
968 =item *
969
970 C<Locale::Maketext>, by Sean Burke, is a localization framework.  See
971 L<Locale::Maketext>, and L<Locale::Maketext::TPJ13>.  The latter is an
972 article about software localization, originally published in The Perl
973 Journal #13, and republished here with kind permission.
974
975 =item *
976
977 C<Math::BigRat> for big rational numbers, to accompany Math::BigInt and
978 Math::BigFloat, from Tels.  See L<Math::BigRat>.
979
980 =item *
981
982 C<Memoize> can make your functions faster by trading space for time,
983 from Mark-Jason Dominus.  See L<Memoize>.
984
985 =item *
986
987 C<MIME::Base64>, by Gisle Aas, allows you to encode data in base64,
988 as defined in RFC 2045 - I<MIME (Multipurpose Internet Mail
989 Extensions)>.
990
991     use MIME::Base64;
992
993     $encoded = encode_base64('Aladdin:open sesame');
994     $decoded = decode_base64($encoded);
995
996     print $encoded, "\n"; # "QWxhZGRpbjpvcGVuIHNlc2FtZQ=="
997
998 See L<MIME::Base64>.
999
1000 =item *
1001
1002 C<MIME::QuotedPrint>, by Gisle Aas, allows you to encode data
1003 in quoted-printable encoding, as defined in RFC 2045 - I<MIME
1004 (Multipurpose Internet Mail Extensions)>.
1005
1006     use MIME::QuotedPrint;
1007
1008     $encoded = encode_qp("Smiley in Unicode: \x{263a}");
1009     $decoded = decode_qp($encoded);
1010
1011     print $encoded, "\n"; # "Smiley in Unicode: =263A"
1012
1013 See also L<PerlIO::via::QuotedPrint>.
1014
1015 =item *
1016
1017 C<NEXT>, by Damian Conway, is a pseudo-class for method redispatch.
1018 See L<NEXT>.
1019
1020 =item *
1021
1022 C<open> is a new pragma for setting the default I/O layers
1023 for open().
1024
1025 =item *
1026
1027 C<PerlIO::scalar>, by Nick Ing-Simmons, provides the implementation
1028 of IO to "in memory" Perl scalars as discussed above.  It also serves
1029 as an example of a loadable PerlIO layer.  Other future possibilities
1030 include PerlIO::Array and PerlIO::Code.  See L<PerlIO::scalar>.
1031
1032 =item *
1033
1034 C<PerlIO::via>, by Nick Ing-Simmons, acts as a PerlIO layer and wraps
1035 PerlIO layer functionality provided by a class (typically implemented
1036 in Perl code).
1037
1038 =item *
1039
1040 C<PerlIO::via::QuotedPrint>, by Elizabeth Mattijsen, is an example
1041 of a C<PerlIO::via> class:
1042
1043     use PerlIO::via::QuotedPrint;
1044     open($fh,">:via(QuotedPrint)",$path);
1045
1046 This will automatically convert everything output to C<$fh> to
1047 Quoted-Printable.  See L<PerlIO::via> and L<PerlIO::via::QuotedPrint>.
1048
1049 =item *
1050
1051 C<Pod::ParseLink>, by Russ Allbery, has been added,
1052 to parse LZ<><> links in pods as described in the new
1053 perlpodspec.
1054
1055 =item *
1056
1057 C<Pod::Text::Overstrike>, by Joe Smith, has been added.
1058 It converts POD data to formatted overstrike text.
1059 See L<Pod::Text::Overstrike>. [561+]
1060
1061 =item *
1062
1063 C<Scalar::Util> is a selection of general-utility scalar subroutines,
1064 such as blessed(), reftype(), and tainted().  See L<Scalar::Util>.
1065
1066 =item *
1067
1068 C<sort> is a new pragma for controlling the behaviour of sort().
1069
1070 =item *
1071
1072 C<Storable> gives persistence to Perl data structures by allowing the
1073 storage and retrieval of Perl data to and from files in a fast and
1074 compact binary format.  Because in effect Storable does serialisation
1075 of Perl data structures, with it you can also clone deep, hierarchical
1076 datastructures.  Storable was originally created by Raphael Manfredi,
1077 but it is now maintained by Abhijit Menon-Sen.  Storable has been
1078 enhanced to understand the two new hash features, Unicode keys and
1079 restricted hashes.  See L<Storable>.
1080
1081 =item *
1082
1083 C<Switch>, by Damian Conway, has been added.  Just by saying
1084
1085     use Switch;
1086
1087 you have C<switch> and C<case> available in Perl.
1088
1089     use Switch;
1090
1091     switch ($val) {
1092
1093                 case 1          { print "number 1" }
1094                 case "a"        { print "string a" }
1095                 case [1..10,42] { print "number in list" }
1096                 case (@array)   { print "number in list" }
1097                 case /\w+/      { print "pattern" }
1098                 case qr/\w+/    { print "pattern" }
1099                 case (%hash)    { print "entry in hash" }
1100                 case (\%hash)   { print "entry in hash" }
1101                 case (\&sub)    { print "arg to subroutine" }
1102                 else            { print "previous case not true" }
1103     }
1104
1105 See L<Switch>.
1106
1107 =item *
1108
1109 C<Test::More>, by Michael Schwern, is yet another framework for writing
1110 test scripts, more extensive than Test::Simple.  See L<Test::More>.
1111
1112 =item *
1113
1114 C<Test::Simple>, by Michael Schwern, has basic utilities for writing
1115 tests.   See L<Test::Simple>.
1116
1117 =item *
1118
1119 C<Text::Balanced>, by Damian Conway, has been added, for extracting
1120 delimited text sequences from strings.
1121
1122     use Text::Balanced 'extract_delimited';
1123
1124     ($a, $b) = extract_delimited("'never say never', he never said", "'", '');
1125
1126 $a will be "'never say never'", $b will be ', he never said'.
1127
1128 In addition to extract_delimited(), there are also extract_bracketed(),
1129 extract_quotelike(), extract_codeblock(), extract_variable(),
1130 extract_tagged(), extract_multiple(), gen_delimited_pat(), and
1131 gen_extract_tagged().  With these, you can implement rather advanced
1132 parsing algorithms.  See L<Text::Balanced>.
1133
1134 =item *
1135
1136 C<threads>, by Arthur Bergman, is an interface to interpreter threads.
1137 Interpreter threads (ithreads) is the new thread model introduced in
1138 Perl 5.6 but only available as an internal interface for extension
1139 writers (and for Win32 Perl for C<fork()> emulation).  See L<threads>,
1140 L<threads::shared>, and L<perlthrtut>.
1141
1142 =item *
1143
1144 C<threads::shared>, by Arthur Bergman, allows data sharing for
1145 interpreter threads.  See L<threads::shared>.
1146
1147 =item *
1148
1149 C<Tie::File>, by Mark-Jason Dominus, associates a Perl array with the
1150 lines of a file.  See L<Tie::File>.
1151
1152 =item *
1153
1154 C<Tie::Memoize>, by Ilya Zakharevich, provides on-demand loaded hashes.
1155 See L<Tie::Memoize>.
1156
1157 =item *
1158
1159 C<Tie::RefHash::Nestable>, by Edward Avis, allows storing hash
1160 references (unlike the standard Tie::RefHash)  The module is contained
1161 within Tie::RefHash.  See L<Tie::RefHash>.
1162
1163 =item *
1164
1165 C<Time::HiRes>, by Douglas E. Wegscheid, provides high resolution
1166 timing (ualarm, usleep, and gettimeofday).  See L<Time::HiRes>.
1167
1168 =item *
1169
1170 C<Unicode::UCD> offers a querying interface to the Unicode Character
1171 Database.  See L<Unicode::UCD>.
1172
1173 =item *
1174
1175 C<Unicode::Collate>, by SADAHIRO Tomoyuki, implements the UCA
1176 (Unicode Collation Algorithm) for sorting Unicode strings.
1177 See L<Unicode::Collate>.
1178
1179 =item *
1180
1181 C<Unicode::Normalize>, by SADAHIRO Tomoyuki, implements the various
1182 Unicode normalization forms.  See L<Unicode::Normalize>.
1183
1184 =item *
1185
1186 C<XS::APItest>, by Tim Jenness, is a test extension that exercises XS
1187 APIs.  Currently only C<printf()> is tested: how to output various
1188 basic data types from XS.
1189
1190 =item *
1191
1192 C<XS::Typemap>, by Tim Jenness, is a test extension that exercises
1193 XS typemaps.  Nothing gets installed, but the code is worth studying
1194 for extension writers.
1195
1196 =back
1197
1198 =head2 Updated And Improved Modules and Pragmata
1199
1200 =over 4
1201
1202 =item *
1203
1204 The following independently supported modules have been updated to the
1205 newest versions from CPAN: CGI, CPAN, DB_File, File::Spec, File::Temp,
1206 Getopt::Long, Math::BigFloat, Math::BigInt, the podlators bundle
1207 (Pod::Man, Pod::Text), Pod::LaTeX [561+], Pod::Parser, Storable,
1208 Term::ANSIColor, Test, Text-Tabs+Wrap.
1209
1210 =item *
1211
1212 attributes::reftype() now works on tied arguments.
1213
1214 =item *
1215
1216 AutoLoader can now be disabled with C<no AutoLoader;>.
1217
1218 =item *
1219
1220 B::Deparse has been significantly enhanced by Robin Houston.  It can
1221 now deparse almost all of the standard test suite (so that the tests
1222 still succeed).  There is a make target "test.deparse" for trying this
1223 out.
1224
1225 =item *
1226
1227 Carp now has better interface documentation, and the @CARP_NOT
1228 interface has been added to get optional control over where errors
1229 are reported independently of @ISA, by Ben Tilly.
1230
1231 =item *
1232
1233 Class::Struct can now define the classes in compile time.
1234
1235 =item *
1236
1237 Class::Struct now assigns the array/hash element if the accessor
1238 is called with an array/hash element as the B<sole> argument.
1239
1240 =item *
1241
1242 The return value of Cwd::fastcwd() is now tainted.
1243
1244 =item *
1245
1246 Data::Dumper now has an option to sort hashes.
1247
1248 =item *
1249
1250 Data::Dumper now has an option to dump code references
1251 using B::Deparse.
1252
1253 =item *
1254
1255 DB_File now supports newer Berkeley DB versions, among
1256 other improvements.
1257
1258 =item *
1259
1260 Devel::Peek now has an interface for the Perl memory statistics
1261 (this works only if you are using perl's malloc, and if you have
1262 compiled with debugging).
1263
1264 =item *
1265
1266 The English module can now be used without the infamous performance
1267 hit by saying
1268
1269         use English '-no_match_vars';
1270
1271 (Assuming, of course, that you don't need the troublesome variables
1272 C<$`>, C<$&>, or C<$'>.)  Also, introduced C<@LAST_MATCH_START> and
1273 C<@LAST_MATCH_END> English aliases for C<@-> and C<@+>.
1274
1275 =item *
1276
1277 ExtUtils::MakeMaker has been significantly cleaned up and fixed.
1278 The enhanced version has also been backported to earlier releases
1279 of Perl and submitted to CPAN so that the earlier releases can
1280 enjoy the fixes.
1281
1282 =item *
1283
1284 The arguments of WriteMakefile() in Makefile.PL are now checked
1285 for sanity much more carefully than before.  This may cause new
1286 warnings when modules are being installed.  See L<ExtUtils::MakeMaker>
1287 for more details.
1288
1289 =item *
1290
1291 ExtUtils::MakeMaker now uses File::Spec internally, which hopefully
1292 leads to better portability.
1293
1294 =item *
1295
1296 Fcntl, Socket, and Sys::Syslog have been rewritten by Nicholas Clark
1297 to use the new-style constant dispatch section (see L<ExtUtils::Constant>).
1298 This means that they will be more robust and hopefully faster.
1299
1300 =item *
1301
1302 File::Find now chdir()s correctly when chasing symbolic links. [561]
1303
1304 =item *
1305
1306 File::Find now has pre- and post-processing callbacks.  It also
1307 correctly changes directories when chasing symbolic links.  Callbacks
1308 (naughtily) exiting with "next;" instead of "return;" now work.
1309
1310 =item *
1311
1312 File::Find is now (again) reentrant.  It also has been made
1313 more portable.
1314
1315 =item *
1316
1317 The warnings issued by File::Find now belong to their own category.
1318 You can enable/disable them with C<use/no warnings 'File::Find';>.
1319
1320 =item *
1321
1322 File::Glob::glob() has been renamed to File::Glob::bsd_glob()
1323 because the name clashes with the builtin glob().  The older
1324 name is still available for compatibility, but is deprecated. [561]
1325
1326 =item *
1327
1328 File::Glob now supports C<GLOB_LIMIT> constant to limit the size of
1329 the returned list of filenames.
1330
1331 =item *
1332
1333 IPC::Open3 now allows the use of numeric file descriptors.
1334
1335 =item *
1336
1337 IO::Socket now has an atmark() method, which returns true if the socket
1338 is positioned at the out-of-band mark.  The method is also exportable
1339 as a sockatmark() function.
1340
1341 =item *
1342
1343 IO::Socket::INET failed to open the specified port if the service name
1344 was not known.  It now correctly uses the supplied port number as is. [561]
1345
1346 =item *
1347
1348 IO::Socket::INET has support for the ReusePort option (if your
1349 platform supports it).  The Reuse option now has an alias, ReuseAddr.
1350 For clarity, you may want to prefer ReuseAddr.
1351
1352 =item *
1353
1354 IO::Socket::INET now supports a value of zero for C<LocalPort>
1355 (usually meaning that the operating system will make one up.)
1356
1357 =item *
1358
1359 'use lib' now works identically to @INC.  Removing directories
1360 with 'no lib' now works.
1361
1362 =item *
1363
1364 Math::BigFloat and Math::BigInt have undergone a full rewrite by Tels.
1365 They are now magnitudes faster, and they support various bignum
1366 libraries such as GMP and PARI as their backends.
1367
1368 =item *
1369
1370 Math::Complex handles inf, NaN etc., better.
1371
1372 =item *
1373
1374 Net::Ping has been considerably enhanced by Rob Brown: multihoming is
1375 now supported, Win32 functionality is better, there is now time
1376 measuring functionality (optionally high-resolution using
1377 Time::HiRes), and there is now "external" protocol which uses
1378 Net::Ping::External module which runs your external ping utility and
1379 parses the output.  A version of Net::Ping::External is available in
1380 CPAN.
1381
1382 Note that some of the Net::Ping tests are disabled when running
1383 under the Perl distribution since one cannot assume one or more
1384 of the following: enabled echo port at localhost, full Internet
1385 connectivity, or sympathetic firewalls.  You can set the environment
1386 variable PERL_TEST_Net_Ping to "1" (one) before running the Perl test
1387 suite to enable all the Net::Ping tests.
1388
1389 =item *
1390
1391 POSIX::sigaction() is now much more flexible and robust.
1392 You can now install coderef handlers, 'DEFAULT', and 'IGNORE'
1393 handlers, installing new handlers was not atomic.
1394
1395 =item *
1396
1397 In Safe, C<%INC> is now localised in a Safe compartment so that
1398 use/require work.
1399
1400 =item *
1401
1402 In SDBM_File on dosish platforms, some keys went missing because of
1403 lack of support for files with "holes".  A workaround for the problem
1404 has been added.
1405
1406 =item *
1407
1408 In Search::Dict one can now have a pre-processing hook for the
1409 lines being searched.
1410
1411 =item *
1412
1413 The Shell module now has an OO interface.
1414
1415 =item *
1416
1417 In Sys::Syslog there is now a failover mechanism that will go
1418 through alternative connection mechanisms until the message
1419 is successfully logged.
1420
1421 =item *
1422
1423 The Test module has been significantly enhanced.
1424
1425 =item *
1426
1427 Time::Local::timelocal() does not handle fractional seconds anymore.
1428 The rationale is that neither does localtime(), and timelocal() and
1429 localtime() are supposed to be inverses of each other.
1430
1431 =item *
1432
1433 The vars pragma now supports declaring fully qualified variables.
1434 (Something that C<our()> does not and will not support.)
1435
1436 =item *
1437
1438 The C<utf8::> name space (as in the pragma) provides various
1439 Perl-callable functions to provide low level access to Perl's
1440 internal Unicode representation.  At the moment only length()
1441 has been implemented.
1442
1443 =back
1444
1445 =head1 Utility Changes
1446
1447 =over 4
1448
1449 =item *
1450
1451 Emacs perl mode (emacs/cperl-mode.el) has been updated to version
1452 4.31.
1453
1454 =item *
1455
1456 F<emacs/e2ctags.pl> is now much faster.
1457
1458 =item *
1459
1460 C<enc2xs> is a tool for people adding their own encodings to the
1461 Encode module.
1462
1463 =item *
1464
1465 C<h2ph> now supports C trigraphs.
1466
1467 =item *
1468
1469 C<h2xs> now produces a template README.
1470
1471 =item *
1472
1473 C<h2xs> now uses C<Devel::PPPort> for better portability between
1474 different versions of Perl.
1475
1476 =item *
1477
1478 C<h2xs> uses the new L<ExtUtils::Constant|ExtUtils::Constant> module
1479 which will affect newly created extensions that define constants.
1480 Since the new code is more correct (if you have two constants where the
1481 first one is a prefix of the second one, the first constant B<never>
1482 got defined), less lossy (it uses integers for integer constant,
1483 as opposed to the old code that used floating point numbers even for
1484 integer constants), and slightly faster, you might want to consider
1485 regenerating your extension code (the new scheme makes regenerating
1486 easy).  L<h2xs> now also supports C trigraphs.
1487
1488 =item *
1489
1490 C<libnetcfg> has been added to configure libnet.
1491
1492 =item *
1493
1494 C<perlbug> is now much more robust.  It also sends the bug report to
1495 perl.org, not perl.com.
1496
1497 =item *
1498
1499 C<perlcc> has been rewritten and its user interface (that is,
1500 command line) is much more like that of the UNIX C compiler, cc.
1501 (The perlbc tools has been removed.  Use C<perlcc -B> instead.)
1502 B<Note that perlcc is still considered very experimental and
1503 unsupported.> [561]
1504
1505 =item *
1506
1507 C<perlivp> is a new Installation Verification Procedure utility
1508 for running any time after installing Perl.
1509
1510 =item *
1511
1512 C<piconv> is an implementation of the character conversion utility
1513 C<iconv>, demonstrating the new Encode module.
1514
1515 =item *
1516
1517 C<pod2html> now allows specifying a cache directory.
1518
1519 =item *
1520
1521 C<pod2html> now produces XHTML 1.0.
1522
1523 =item *
1524
1525 C<pod2html> now understands POD written using different line endings
1526 (PC-like CRLF versus UNIX-like LF versus MacClassic-like CR).
1527
1528 =item *
1529
1530 C<s2p> has been completely rewritten in Perl.  (It is in fact a full
1531 implementation of sed in Perl: you can use the sed functionality by
1532 using the C<psed> utility.)
1533
1534 =item *
1535
1536 C<xsubpp> now understands POD documentation embedded in the *.xs
1537 files. [561]
1538
1539 =item *
1540
1541 C<xsubpp> now supports the OUT keyword.
1542
1543 =back
1544
1545 =head1 New Documentation
1546
1547 =over 4
1548
1549 =item *
1550
1551 perl56delta details the changes between the 5.005 release and the
1552 5.6.0 release.
1553
1554 =item *
1555
1556 perlclib documents the internal replacements for standard C library
1557 functions.  (Interesting only for extension writers and Perl core
1558 hackers.) [561+]
1559
1560 =item *
1561
1562 perldebtut is a Perl debugging tutorial. [561+]
1563
1564 =item *
1565
1566 perlebcdic contains considerations for running Perl on EBCDIC
1567 platforms. [561+]
1568
1569 =item *
1570
1571 perlintro is a gentle introduction to Perl.
1572
1573 =item *
1574
1575 perliol documents the internals of PerlIO with layers.
1576
1577 =item *
1578
1579 perlmodstyle is a style guide for writing modules.
1580
1581 =item *
1582
1583 perlnewmod tells about writing and submitting a new module. [561+]
1584
1585 =item *
1586
1587 perlpacktut is a pack() tutorial.
1588
1589 =item *
1590
1591 perlpod has been rewritten to be clearer and to record the best
1592 practices gathered over the years.
1593
1594 =item *
1595
1596 perlpodspec is a more formal specification of the pod format,
1597 mainly of interest for writers of pod applications, not to
1598 people writing in pod.
1599
1600 =item *
1601
1602 perlretut is a regular expression tutorial. [561+]
1603
1604 =item *
1605
1606 perlrequick is a regular expressions quick-start guide.
1607 Yes, much quicker than perlretut. [561]
1608
1609 =item *
1610
1611 perltodo has been updated.
1612
1613 =item *
1614
1615 perltootc has been renamed as perltooc (to not to conflict
1616 with perltoot in filesystems restricted to "8.3" names).
1617
1618 =item *
1619
1620 perluniintro is an introduction to using Unicode in Perl.
1621 (perlunicode is more of a detailed reference and background
1622 information)
1623
1624 =item *
1625
1626 perlutil explains the command line utilities packaged with the Perl
1627 distribution. [561+]
1628
1629 =back
1630
1631 The following platform-specific documents are available before
1632 the installation as README.I<platform>, and after the installation
1633 as perlI<platform>:
1634
1635     perlaix perlamiga perlapollo perlbeos perlbs2000
1636     perlce perlcygwin perldgux perldos perlepoc perlfreebsd perlhpux
1637     perlhurd perlirix perlmachten perlmacos perlmint perlmpeix
1638     perlnetware perlos2 perlos390 perlplan9 perlqnx perlsolaris
1639     perltru64 perluts perlvmesa perlvms perlvos perlwin32
1640
1641 These documents usually detail one or more of the following subjects:
1642 configuring, building, testing, installing, and sometimes also using
1643 Perl on the said platform.
1644
1645 Eastern Asian Perl users are now welcomed in their own languages:
1646 README.jp (Japanese), README.ko (Korean), README.cn (simplified
1647 Chinese) and README.tw (traditional Chinese), which are written in
1648 normal pod but encoded in EUC-JP, EUC-KR, EUC-CN and Big5.  These
1649 will get installed as
1650
1651    perljp perlko perlcn perltw
1652
1653 =over 4
1654
1655 =item *
1656
1657 The documentation for the POSIX-BC platform is called "BS2000", to avoid
1658 confusion with the Perl POSIX module.
1659
1660 =item *
1661
1662 The documentation for the WinCE platform is called perlce (README.ce
1663 in the source code kit), to avoid confusion with the perlwin32
1664 documentation on 8.3-restricted filesystems.
1665
1666 =back
1667
1668 =head1 Performance Enhancements
1669
1670 =over 4
1671
1672 =item *
1673
1674 map() could get pathologically slow when the result list it generates
1675 is larger than the source list.  The performance has been improved for
1676 common scenarios. [561]
1677
1678 =item *
1679
1680 sort() is also fully reentrant, in the sense that the sort function
1681 can itself call sort().  This did not work reliably in previous
1682 releases. [561]
1683
1684 =item *
1685
1686 sort() has been changed to use primarily mergesort internally as
1687 opposed to the earlier quicksort.  For very small lists this may
1688 result in slightly slower sorting times, but in general the speedup
1689 should be at least 20%.  Additional bonuses are that the worst case
1690 behaviour of sort() is now better (in computer science terms it now
1691 runs in time O(N log N), as opposed to quicksort's Theta(N**2)
1692 worst-case run time behaviour), and that sort() is now stable
1693 (meaning that elements with identical keys will stay ordered as they
1694 were before the sort).  See the C<sort> pragma for information.
1695
1696 The story in more detail: suppose you want to serve yourself a little
1697 slice of Pi.
1698
1699     @digits = ( 3,1,4,1,5,9 );
1700
1701 A numerical sort of the digits will yield (1,1,3,4,5,9), as expected.
1702 Which C<1> comes first is hard to know, since one C<1> looks pretty
1703 much like any other.  You can regard this as totally trivial,
1704 or somewhat profound.  However, if you just want to sort the even
1705 digits ahead of the odd ones, then what will
1706
1707     sort { ($a % 2) <=> ($b % 2) } @digits;
1708
1709 yield?  The only even digit, C<4>, will come first.  But how about
1710 the odd numbers, which all compare equal?  With the quicksort algorithm
1711 used to implement Perl 5.6 and earlier, the order of ties is left up
1712 to the sort.  So, as you add more and more digits of Pi, the order
1713 in which the sorted even and odd digits appear will change.
1714 and, for sufficiently large slices of Pi, the quicksort algorithm
1715 in Perl 5.8 won't return the same results even if reinvoked with the
1716 same input.  The justification for this rests with quicksort's
1717 worst case behavior.  If you run
1718
1719    sort { $a <=> $b } ( 1 .. $N , 1 .. $N );
1720
1721 (something you might approximate if you wanted to merge two sorted
1722 arrays using sort), doubling $N doesn't just double the quicksort time,
1723 it I<quadruples> it.  Quicksort has a worst case run time that can
1724 grow like N**2, so-called I<quadratic> behaviour, and it can happen
1725 on patterns that may well arise in normal use.  You won't notice this
1726 for small arrays, but you I<will> notice it with larger arrays,
1727 and you may not live long enough for the sort to complete on arrays
1728 of a million elements.  So the 5.8 quicksort scrambles large arrays
1729 before sorting them, as a statistical defence against quadratic behaviour.
1730 But that means if you sort the same large array twice, ties may be
1731 broken in different ways.
1732
1733 Because of the unpredictability of tie-breaking order, and the quadratic
1734 worst-case behaviour, quicksort was I<almost> replaced completely with
1735 a stable mergesort.  I<Stable> means that ties are broken to preserve
1736 the original order of appearance in the input array.  So
1737
1738     sort { ($a % 2) <=> ($b % 2) } (3,1,4,1,5,9);
1739
1740 will yield (4,3,1,1,5,9), guaranteed.  The even and odd numbers
1741 appear in the output in the same order they appeared in the input.
1742 Mergesort has worst case O(N log N) behaviour, the best value
1743 attainable.  And, ironically, this mergesort does particularly
1744 well where quicksort goes quadratic:  mergesort sorts (1..$N, 1..$N)
1745 in O(N) time.  But quicksort was rescued at the last moment because
1746 it is faster than mergesort on certain inputs and platforms.
1747 For example, if you really I<don't> care about the order of even
1748 and odd digits, quicksort will run in O(N) time; it's very good
1749 at sorting many repetitions of a small number of distinct elements.
1750 The quicksort divide and conquer strategy works well on platforms
1751 with relatively small, very fast, caches.  Eventually, the problem gets
1752 whittled down to one that fits in the cache, from which point it
1753 benefits from the increased memory speed.
1754
1755 Quicksort was rescued by implementing a sort pragma to control aspects
1756 of the sort.  The B<stable> subpragma forces stable behaviour,
1757 regardless of algorithm.  The B<_quicksort> and B<_mergesort>
1758 subpragmas are heavy-handed ways to select the underlying implementation.
1759 The leading C<_> is a reminder that these subpragmas may not survive
1760 beyond 5.8.  More appropriate mechanisms for selecting the implementation
1761 exist, but they wouldn't have arrived in time to save quicksort.
1762
1763 =item *
1764
1765 Hashes now use Bob Jenkins "One-at-a-Time" hashing key algorithm
1766 ( http://burtleburtle.net/bob/hash/doobs.html ).  This algorithm is
1767 reasonably fast while producing a much better spread of values than
1768 the old hashing algorithm (originally by Chris Torek, later tweaked by
1769 Ilya Zakharevich).  Hash values output from the algorithm on a hash of
1770 all 3-char printable ASCII keys comes much closer to passing the
1771 DIEHARD random number generation tests.  According to perlbench, this
1772 change has not affected the overall speed of Perl.
1773
1774 =item *
1775
1776 unshift() should now be noticeably faster.
1777
1778 =back
1779
1780 =head1 Installation and Configuration Improvements
1781
1782 =head2 Generic Improvements
1783
1784 =over 4
1785
1786 =item *
1787
1788 INSTALL now explains how you can configure Perl to use 64-bit
1789 integers even on non-64-bit platforms.
1790
1791 =item *
1792
1793 Policy.sh policy change: if you are reusing a Policy.sh file
1794 (see INSTALL) and you use Configure -Dprefix=/foo/bar and in the old
1795 Policy $prefix eq $siteprefix and $prefix eq $vendorprefix, all of
1796 them will now be changed to the new prefix, /foo/bar.  (Previously
1797 only $prefix changed.)  If you do not like this new behaviour,
1798 specify prefix, siteprefix, and vendorprefix explicitly.
1799
1800 =item *
1801
1802 A new optional location for Perl libraries, otherlibdirs, is available.
1803 It can be used for example for vendor add-ons without disturbing Perl's
1804 own library directories.
1805
1806 =item *
1807
1808 In many platforms, the vendor-supplied 'cc' is too stripped-down to
1809 build Perl (basically, 'cc' doesn't do ANSI C).  If this seems
1810 to be the case and 'cc' does not seem to be the GNU C compiler
1811 'gcc', an automatic attempt is made to find and use 'gcc' instead.
1812
1813 =item *
1814
1815 gcc needs to closely track the operating system release to avoid
1816 build problems. If Configure finds that gcc was built for a different
1817 operating system release than is running, it now gives a clearly visible
1818 warning that there may be trouble ahead.
1819
1820 =item *
1821
1822 Since Perl 5.8 is not binary-compatible with previous releases
1823 of Perl, Configure no longer suggests including the 5.005
1824 modules in @INC.
1825
1826 =item *
1827
1828 Configure C<-S> can now run non-interactively. [561]
1829
1830 =item *
1831
1832 Configure support for pdp11-style memory models has been removed due
1833 to obsolescence. [561]
1834
1835 =item *
1836
1837 configure.gnu now works with options with whitespace in them.
1838
1839 =item *
1840
1841 installperl now outputs everything to STDERR.
1842
1843 =item *
1844
1845 Because PerlIO is now the default on most platforms, "-perlio" doesn't
1846 get appended to the $Config{archname} (also known as $^O) anymore.
1847 Instead, if you explicitly choose not to use perlio (Configure command
1848 line option -Uuseperlio), you will get "-stdio" appended.
1849
1850 =item *
1851
1852 Another change related to the architecture name is that "-64all"
1853 (-Duse64bitall, or "maximally 64-bit") is appended only if your
1854 pointers are 64 bits wide.  (To be exact, the use64bitall is ignored.)
1855
1856 =item *
1857
1858 In AFS installations, one can configure the root of the AFS to be
1859 somewhere else than the default F</afs> by using the Configure
1860 parameter C<-Dafsroot=/some/where/else>.
1861
1862 =item *
1863
1864 APPLLIB_EXP, a lesser-known configuration-time definition, has been
1865 documented.  It can be used to prepend site-specific directories
1866 to Perl's default search path (@INC); see INSTALL for information.
1867
1868 =item *
1869
1870 The version of Berkeley DB used when the Perl (and, presumably, the
1871 DB_File extension) was built is now available as
1872 C<@Config{qw(db_version_major db_version_minor db_version_patch)}>
1873 from Perl and as C<DB_VERSION_MAJOR_CFG DB_VERSION_MINOR_CFG
1874 DB_VERSION_PATCH_CFG> from C.
1875
1876 =item *
1877
1878 Building Berkeley DB3 for compatibility modes for DB, NDBM, and ODBM
1879 has been documented in INSTALL.
1880
1881 =item *
1882
1883 If you have CPAN access (either network or a local copy such as a
1884 CD-ROM) you can during specify extra modules to Configure to build and
1885 install with Perl using the -Dextras=...  option.  See INSTALL for
1886 more details.
1887
1888 =item *
1889
1890 In addition to config.over, a new override file, config.arch, is
1891 available.  This file is supposed to be used by hints file writers
1892 for architecture-wide changes (as opposed to config.over which is
1893 for site-wide changes).
1894
1895 =item *
1896
1897 If your file system supports symbolic links, you can build Perl outside
1898 of the source directory by
1899
1900         mkdir /tmp/perl/build/directory
1901         cd /tmp/perl/build/directory
1902         sh /path/to/perl/source/Configure -Dmksymlinks ...
1903
1904 This will create in /tmp/perl/build/directory a tree of symbolic links
1905 pointing to files in /path/to/perl/source.  The original files are left
1906 unaffected.  After Configure has finished, you can just say
1907
1908         make all test
1909
1910 and Perl will be built and tested, all in /tmp/perl/build/directory.
1911 [561]
1912
1913 =item *
1914
1915 For Perl developers, several new make targets for profiling
1916 and debugging have been added; see L<perlhack>.
1917
1918 =over 8
1919
1920 =item *
1921
1922 Use of the F<gprof> tool to profile Perl has been documented in
1923 L<perlhack>.  There is a make target called "perl.gprof" for
1924 generating a gprofiled Perl executable.
1925
1926 =item *
1927
1928 If you have GCC 3, there is a make target called "perl.gcov" for
1929 creating a gcoved Perl executable for coverage analysis.  See
1930 L<perlhack>.
1931
1932 =item *
1933
1934 If you are on IRIX or Tru64 platforms, new profiling/debugging options
1935 have been added; see L<perlhack> for more information about pixie and
1936 Third Degree.
1937
1938 =back
1939
1940 =item *
1941
1942 Guidelines of how to construct minimal Perl installations have
1943 been added to INSTALL.
1944
1945 =item *
1946
1947 The Thread extension is now not built at all under ithreads
1948 (C<Configure -Duseithreads>) because it wouldn't work anyway (the
1949 Thread extension requires being Configured with C<-Duse5005threads>).
1950
1951 B<Note that the 5.005 threads are unsupported and deprecated: if you
1952 have code written for the old threads you should migrate it to the
1953 new ithreads model.>
1954
1955 =item *
1956
1957 The Gconvert macro ($Config{d_Gconvert}) used by perl for stringifying
1958 floating-point numbers is now more picky about using sprintf %.*g
1959 rules for the conversion.  Some platforms that used to use gcvt may
1960 now resort to the slower sprintf.
1961
1962 =item *
1963
1964 The obsolete method of making a special (e.g., debugging) flavor
1965 of perl by saying
1966
1967         make LIBPERL=libperld.a
1968
1969 has been removed. Use -DDEBUGGING instead.
1970
1971 =back
1972
1973 =head2 New Or Improved Platforms
1974
1975 For the list of platforms known to support Perl,
1976 see L<perlport/"Supported Platforms">.
1977
1978 =over 4
1979
1980 =item *
1981
1982 AIX dynamic loading should be now better supported.
1983
1984 =item *
1985
1986 AIX should now work better with gcc, threads, and 64-bitness.  Also the
1987 long doubles support in AIX should be better now.  See L<perlaix>.
1988
1989 =item *
1990
1991 AtheOS ( http://www.atheos.cx/ ) is a new platform.
1992
1993 =item *
1994
1995 BeOS has been reclaimed.
1996
1997 =item *
1998
1999 The DG/UX platform now supports 5.005-style threads.
2000 See L<perldgux>.
2001
2002 =item *
2003
2004 The DYNIX/ptx platform (also known as dynixptx) is supported at or
2005 near osvers 4.5.2.
2006
2007 =item *
2008
2009 EBCDIC platforms (z/OS (also known as OS/390), POSIX-BC, and VM/ESA)
2010 have been regained.  Many test suite tests still fail and the
2011 co-existence of Unicode and EBCDIC isn't quite settled, but the
2012 situation is much better than with Perl 5.6.  See L<perlos390>,
2013 L<perlbs2000> (for POSIX-BC), and L<perlvmesa> for more information.
2014
2015 =item *
2016
2017 Building perl with -Duseithreads or -Duse5005threads now works under
2018 HP-UX 10.20 (previously it only worked under 10.30 or later). You will
2019 need a thread library package installed. See README.hpux. [561]
2020
2021 =item *
2022
2023 Mac OS Classic is now supported in the mainstream source package
2024 (MacPerl has of course been available since perl 5.004 but now the
2025 source code bases of standard Perl and MacPerl have been synchronised)
2026 [561]
2027
2028 =item *
2029
2030 Mac OS X (or Darwin) should now be able to build Perl even on HFS+
2031 filesystems.  (The case-insensitivity used to confuse the Perl build
2032 process.)
2033
2034 =item *
2035
2036 NCR MP-RAS is now supported. [561]
2037
2038 =item *
2039
2040 All the NetBSD specific patches (except for the installation
2041 specific ones) have been merged back to the main distribution.
2042
2043 =item *
2044
2045 NetWare from Novell is now supported.  See L<perlnetware>.
2046
2047 =item *
2048
2049 NonStop-UX is now supported. [561]
2050
2051 =item *
2052
2053 NEC SUPER-UX is now supported.
2054
2055 =item *
2056
2057 All the OpenBSD specific patches (except for the installation
2058 specific ones) have been merged back to the main distribution.
2059
2060 =item *
2061
2062 Perl has been tested with the GNU pth userlevel thread package
2063 ( http://www.gnu.org/software/pth/pth.html ).  All thread tests
2064 of Perl now work, but not without adding some yield()s to the tests,
2065 so while pth (and other userlevel thread implementations) can be
2066 considered to be "working" with Perl ithreads, keep in mind the
2067 possible non-preemptability of the underlying thread implementation.
2068
2069 =item *
2070
2071 Stratus VOS is now supported using Perl's native build method
2072 (Configure).  This is the recommended method to build Perl on
2073 VOS.  The older methods, which build miniperl, are still
2074 available.  See L<perlvos>. [561+]
2075
2076 =item *
2077
2078 The Amdahl UTS UNIX mainframe platform is now supported. [561]
2079
2080 =item *
2081
2082 WinCE is now supported.  See L<perlce>.
2083
2084 =item *
2085
2086 z/OS (formerly known as OS/390, formerly known as MVS OE) now has
2087 support for dynamic loading.  This is not selected by default,
2088 however, you must specify -Dusedl in the arguments of Configure. [561]
2089
2090 =back
2091
2092 =head1 Selected Bug Fixes
2093
2094 Numerous memory leaks and uninitialized memory accesses have been
2095 hunted down.  Most importantly, anonymous subs used to leak quite
2096 a bit. [561]
2097
2098 =over 4
2099
2100 =item *
2101
2102 The autouse pragma didn't work for Multi::Part::Function::Names.
2103
2104 =item *
2105
2106 caller() could cause core dumps in certain situations.  Carp was
2107 sometimes affected by this problem.  In particular, caller() now
2108 returns a subroutine name of C<(unknown)> for subroutines that have
2109 been removed from the symbol table.
2110
2111 =item *
2112
2113 chop(@list) in list context returned the characters chopped in
2114 reverse order.  This has been reversed to be in the right order. [561]
2115
2116 =item *
2117
2118 Configure no longer includes the DBM libraries (dbm, gdbm, db, ndbm)
2119 when building the Perl binary.  The only exception to this is SunOS 4.x,
2120 which needs them. [561]
2121
2122 =item *
2123
2124 The behaviour of non-decimal but numeric string constants such as
2125 "0x23" was platform-dependent: in some platforms that was seen as 35,
2126 in some as 0, in some as a floating point number (don't ask).  This
2127 was caused by Perl's using the operating system libraries in a situation
2128 where the result of the string to number conversion is undefined: now
2129 Perl consistently handles such strings as zero in numeric contexts.
2130
2131 =item *
2132
2133 Several debugger fixes: exit code now reflects the script exit code,
2134 condition C<"0"> now treated correctly, the C<d> command now checks
2135 line number, C<$.> no longer gets corrupted, and all debugger output
2136 now goes correctly to the socket if RemotePort is set. [561]
2137
2138 =item *
2139
2140 The debugger (perl5db.pl) has been modified to present a more
2141 consistent commands interface, via (CommandSet=580).  perl5db.t was
2142 also added to test the changes, and as a placeholder for further tests.
2143
2144 See L<perldebug>.
2145
2146 =item *
2147
2148 The debugger has a new C<dumpDepth> option to control the maximum
2149 depth to which nested structures are dumped.  The C<x> command has
2150 been extended so that C<x N EXPR> dumps out the value of I<EXPR> to a
2151 depth of at most I<N> levels.
2152
2153 =item *
2154
2155 The debugger can now show lexical variables if you have the CPAN
2156 module PadWalker installed.
2157
2158 =item *
2159
2160 The order of DESTROYs has been made more predictable.
2161
2162 =item *
2163
2164 Perl 5.6.0 could emit spurious warnings about redefinition of
2165 dl_error() when statically building extensions into perl.
2166 This has been corrected. [561]
2167
2168 =item *
2169
2170 L<dprofpp> -R didn't work.
2171
2172 =item *
2173
2174 C<*foo{FORMAT}> now works.
2175
2176 =item *
2177
2178 Infinity is now recognized as a number.
2179
2180 =item *
2181
2182 UNIVERSAL::isa no longer caches methods incorrectly.  (This broke
2183 the Tk extension with 5.6.0.) [561]
2184
2185 =item *
2186
2187 Lexicals I: lexicals outside an eval "" weren't resolved
2188 correctly inside a subroutine definition inside the eval "" if they
2189 were not already referenced in the top level of the eval""ed code.
2190
2191 =item *
2192
2193 Lexicals II: lexicals leaked at file scope into subroutines that
2194 were declared before the lexicals.
2195
2196 =item *
2197
2198 Lexical warnings now propagating correctly between scopes
2199 and into C<eval "...">.
2200
2201 =item *
2202
2203 C<use warnings qw(FATAL all)> did not work as intended.  This has been
2204 corrected. [561]
2205
2206 =item *
2207
2208 warnings::enabled() now reports the state of $^W correctly if the caller
2209 isn't using lexical warnings. [561]
2210
2211 =item *
2212
2213 Line renumbering with eval and C<#line> now works. [561]
2214
2215 =item *
2216
2217 Fixed numerous memory leaks, especially in eval "".
2218
2219 =item *
2220
2221 Localised tied variables no longer leak memory
2222
2223     use Tie::Hash;
2224     tie my %tied_hash => 'Tie::StdHash';
2225
2226     ...
2227
2228     # Used to leak memory every time local() was called;
2229     # in a loop, this added up.
2230     local($tied_hash{Foo}) = 1;
2231
2232 =item *
2233
2234 Localised hash elements (and %ENV) are correctly unlocalised to not
2235 exist, if they didn't before they were localised.
2236
2237
2238     use Tie::Hash;
2239     tie my %tied_hash => 'Tie::StdHash';
2240
2241     ...
2242
2243     # Nothing has set the FOO element so far
2244
2245     { local $tied_hash{FOO} = 'Bar' }
2246
2247     # This used to print, but not now.
2248     print "exists!\n" if exists $tied_hash{FOO};
2249
2250 As a side effect of this fix, tied hash interfaces B<must> define
2251 the EXISTS and DELETE methods.
2252
2253 =item *
2254
2255 mkdir() now ignores trailing slashes in the directory name,
2256 as mandated by POSIX.
2257
2258 =item *
2259
2260 Some versions of glibc have a broken modfl().  This affects builds
2261 with C<-Duselongdouble>.  This version of Perl detects this brokenness
2262 and has a workaround for it.  The glibc release 2.2.2 is known to have
2263 fixed the modfl() bug.
2264
2265 =item *
2266
2267 Modulus of unsigned numbers now works (4063328477 % 65535 used to
2268 return 27406, instead of 27047). [561]
2269
2270 =item *
2271
2272 Some "not a number" warnings introduced in 5.6.0 eliminated to be
2273 more compatible with 5.005.  Infinity is now recognised as a number. [561]
2274
2275 =item *
2276
2277 Numeric conversions did not recognize changes in the string value
2278 properly in certain circumstances. [561]
2279
2280 =item *
2281
2282 Attributes (such as :shared) didn't work with our().
2283
2284 =item *
2285
2286 our() variables will not cause bogus "Variable will not stay shared"
2287 warnings. [561]
2288
2289 =item *
2290
2291 "our" variables of the same name declared in two sibling blocks
2292 resulted in bogus warnings about "redeclaration" of the variables.
2293 The problem has been corrected. [561]
2294
2295 =item *
2296
2297 pack "Z" now correctly terminates the string with "\0".
2298
2299 =item *
2300
2301 Fix password routines which in some shadow password platforms
2302 (e.g. HP-UX) caused getpwent() to return every other entry.
2303
2304 =item *
2305
2306 The PERL5OPT environment variable (for passing command line arguments
2307 to Perl) didn't work for more than a single group of options. [561]
2308
2309 =item *
2310
2311 PERL5OPT with embedded spaces didn't work.
2312
2313 =item *
2314
2315 printf() no longer resets the numeric locale to "C".
2316
2317 =item *
2318
2319 C<qw(a\\b)> now parses correctly as C<'a\\b'>: that is, as three
2320 characters, not four. [561]
2321
2322 =item *
2323
2324 pos() did not return the correct value within s///ge in earlier
2325 versions.  This is now handled correctly. [561]
2326
2327 =item *
2328
2329 Printing quads (64-bit integers) with printf/sprintf now works
2330 without the q L ll prefixes (assuming you are on a quad-capable platform).
2331
2332 =item *
2333
2334 Regular expressions on references and overloaded scalars now work. [561+]
2335
2336 =item *
2337
2338 Right-hand side magic (GMAGIC) could in many cases such as string
2339 concatenation be invoked too many times.
2340
2341 =item *
2342
2343 scalar() now forces scalar context even when used in void context.
2344
2345 =item *
2346
2347 SOCKS support is now much more robust.
2348
2349 =item *
2350
2351 sort() arguments are now compiled in the right wantarray context
2352 (they were accidentally using the context of the sort() itself).
2353 The comparison block is now run in scalar context, and the arguments
2354 to be sorted are always provided list context. [561]
2355
2356 =item *
2357
2358 Changed the POSIX character class C<[[:space:]]> to include the (very
2359 rarely used) vertical tab character.  Added a new POSIX-ish character
2360 class C<[[:blank:]]> which stands for horizontal whitespace
2361 (currently, the space and the tab).
2362
2363 =item *
2364
2365 The tainting behaviour of sprintf() has been rationalized.  It does
2366 not taint the result of floating point formats anymore, making the
2367 behaviour consistent with that of string interpolation. [561]
2368
2369 =item *
2370
2371 Some cases of inconsistent taint propagation (such as within hash
2372 values) have been fixed.
2373
2374 =item *
2375
2376 The RE engine found in Perl 5.6.0 accidentally pessimised certain kinds
2377 of simple pattern matches.  These are now handled better. [561]
2378
2379 =item *
2380
2381 Regular expression debug output (whether through C<use re 'debug'>
2382 or via C<-Dr>) now looks better. [561]
2383
2384 =item *
2385
2386 Multi-line matches like C<"a\nxb\n" =~ /(?!\A)x/m> were flawed.  The
2387 bug has been fixed. [561]
2388
2389 =item *
2390
2391 Use of $& could trigger a core dump under some situations.  This
2392 is now avoided. [561]
2393
2394 =item *
2395
2396 The regular expression captured submatches ($1, $2, ...) are now
2397 more consistently unset if the match fails, instead of leaving false
2398 data lying around in them. [561]
2399
2400 =item *
2401
2402 readline() on files opened in "slurp" mode could return an extra
2403 "" (blank line) at the end in certain situations.  This has been
2404 corrected. [561]
2405
2406 =item *
2407
2408 Autovivification of symbolic references of special variables described
2409 in L<perlvar> (as in C<${$num}>) was accidentally disabled.  This works
2410 again now. [561]
2411
2412 =item *
2413
2414 Sys::Syslog ignored the C<LOG_AUTH> constant.
2415
2416 =item *
2417
2418 $AUTOLOAD, sort(), lock(), and spawning subprocesses
2419 in multiple threads simultaneously are now thread-safe.
2420
2421 =item *
2422
2423 Tie::Array's SPLICE method was broken.
2424
2425 =item *
2426
2427 Allow a read-only string on the left-hand side of a non-modifying tr///.
2428
2429 =item *
2430
2431 If C<STDERR> is tied, warnings caused by C<warn> and C<die> now
2432 correctly pass to it.
2433
2434 =item *
2435
2436 Several Unicode fixes.
2437
2438 =over 8
2439
2440 =item *
2441
2442 BOMs (byte order marks) at the beginning of Perl files
2443 (scripts, modules) should now be transparently skipped.
2444 UTF-16 and UCS-2 encoded Perl files should now be read correctly.
2445
2446 =item *
2447
2448 The character tables have been updated to Unicode 3.2.0.
2449
2450 =item *
2451
2452 Comparing with utf8 data does not magically upgrade non-utf8 data
2453 into utf8.  (This was a problem for example if you were mixing data
2454 from I/O and Unicode data: your output might have got magically encoded
2455 as UTF-8.)
2456
2457 =item *
2458
2459 Generating illegal Unicode code points such as U+FFFE, or the UTF-16
2460 surrogates, now also generates an optional warning.
2461
2462 =item *
2463
2464 C<IsAlnum>, C<IsAlpha>, and C<IsWord> now match titlecase.
2465
2466 =item *
2467
2468 Concatenation with the C<.> operator or via variable interpolation,
2469 C<eq>, C<substr>, C<reverse>, C<quotemeta>, the C<x> operator,
2470 substitution with C<s///>, single-quoted UTF8, should now work.
2471
2472 =item *
2473
2474 The C<tr///> operator now works.  Note that the C<tr///CU>
2475 functionality has been removed (but see pack('U0', ...)).
2476
2477 =item *
2478
2479 C<eval "v200"> now works.
2480
2481 =item *
2482
2483 Perl 5.6.0 parsed m/\x{ab}/ incorrectly, leading to spurious warnings.
2484 This has been corrected. [561]
2485
2486 =item *
2487
2488 Zero entries were missing from the Unicode classes such as C<IsDigit>.
2489
2490 =back
2491
2492 =item *
2493
2494 Large unsigned numbers (those above 2**31) could sometimes lose their
2495 unsignedness, causing bogus results in arithmetic operations. [561]
2496
2497 =item *
2498
2499 The Perl parser has been stress tested using both random input and
2500 Markov chain input and the few found crashes and lockups have been
2501 fixed.
2502
2503 =back
2504
2505 =head2 Platform Specific Changes and Fixes
2506
2507 =over 4
2508
2509 =item *
2510
2511 BSDI 4.*
2512
2513 Perl now works on post-4.0 BSD/OSes.
2514
2515 =item *
2516
2517 All BSDs
2518
2519 Setting C<$0> now works (as much as possible; see L<perlvar> for details).
2520
2521 =item *
2522
2523 Cygwin
2524
2525 Numerous updates; currently synchronised with Cygwin 1.3.10.
2526
2527 =item *
2528
2529 Previously DYNIX/ptx had problems in its Configure probe for non-blocking I/O.
2530
2531 =item *
2532
2533 EPOC
2534
2535 EPOC now better supported.  See README.epoc. [561]
2536
2537 =item *
2538
2539 FreeBSD 3.*
2540
2541 Perl now works on post-3.0 FreeBSDs.
2542
2543 =item *
2544
2545 HP-UX
2546
2547 README.hpux updated; C<Configure -Duse64bitall> now works;
2548 now uses HP-UX malloc instead of Perl malloc.
2549
2550 =item *
2551
2552 IRIX
2553
2554 Numerous compilation flag and hint enhancements; accidental mixing
2555 of 32-bit and 64-bit libraries (a doomed attempt) made much harder.
2556
2557 =item *
2558
2559 Linux
2560
2561 =over 8
2562
2563 =item *
2564
2565 Long doubles should now work (see INSTALL). [561]
2566
2567 =item *
2568
2569 Linux previously had problems related to sockaddrlen when using
2570 accept(), recvfrom() (in Perl: recv()), getpeername(), and
2571 getsockname().
2572
2573 =back
2574
2575 =item *
2576
2577 Mac OS Classic
2578
2579 Compilation of the standard Perl distribution in Mac OS Classic should
2580 now work if you have the Metrowerks development environment and the
2581 missing Mac-specific toolkit bits.  Contact the macperl mailing list
2582 for details.
2583
2584 =item *
2585
2586 MPE/iX
2587
2588 MPE/iX update after Perl 5.6.0.  See README.mpeix. [561]
2589
2590 =item *
2591
2592 NetBSD/threads: try installing the GNU pth (should be in the
2593 packages collection, or http://www.gnu.org/software/pth/),
2594 and Configure with -Duseithreads.
2595
2596 =item *
2597
2598 NetBSD/sparc
2599
2600 Perl now works on NetBSD/sparc.
2601
2602 =item *
2603
2604 OS/2
2605
2606 Now works with usethreads (see INSTALL). [561]
2607
2608 =item *
2609
2610 Solaris
2611
2612 64-bitness using the Sun Workshop compiler now works.
2613
2614 =item *
2615
2616 Stratus VOS
2617
2618 The native build method requires at least VOS Release 14.5.0
2619 and GNU C++/GNU Tools 2.0.1 or later.  The Perl pack function
2620 now maps overflowed values to +infinity and underflowed values
2621 to -infinity.
2622
2623 =item *
2624
2625 Tru64 (aka Digital UNIX, aka DEC OSF/1)
2626
2627 The operating system version letter now recorded in $Config{osvers}.
2628 Allow compiling with gcc (previously explicitly forbidden).  Compiling
2629 with gcc still not recommended because buggy code results, even with
2630 gcc 2.95.2.
2631
2632 =item *
2633
2634 Unicos
2635
2636 Fixed various alignment problems that lead into core dumps either
2637 during build or later; no longer dies on math errors at runtime;
2638 now using full quad integers (64 bits), previously was using
2639 only 46 bit integers for speed.
2640
2641 =item *
2642
2643 VMS
2644
2645 See L</"Socket Extension Dynamic in VMS"> and L</"IEEE-format Floating Point
2646 Default on OpenVMS Alpha"> for important changes not otherwise listed here.
2647
2648 chdir() now works better despite a CRT bug; now works with MULTIPLICITY
2649 (see INSTALL); now works with Perl's malloc.
2650
2651 The tainting of C<%ENV> elements via C<keys> or C<values> was previously
2652 unimplemented.  It now works as documented.
2653
2654 The C<waitpid> emulation has been improved.  The worst bug (now fixed)
2655 was that a pid of -1 would cause a wildcard search of all processes on
2656 the system.
2657
2658 POSIX-style signals are now emulated much better on VMS versions prior
2659 to 7.0.
2660
2661 The C<system> function and backticks operator have improved
2662 functionality and better error handling. [561]
2663
2664 File access tests now use current process privileges rather than the
2665 user's default privileges, which could sometimes result in a mismatch
2666 between reported access and actual access.  This improvement is only
2667 available on VMS v6.0 and later.
2668
2669 There is a new C<kill> implementation based on C<sys$sigprc> that allows
2670 older VMS systems (pre-7.0) to use C<kill> to send signals rather than
2671 simply force exit.  This implementation also allows later systems to
2672 call C<kill> from within a signal handler.
2673
2674 Iterative logical name translations are now limited to 10 iterations in
2675 imitation of SHOW LOGICAL and other OpenVMS facilities.
2676
2677 =item *
2678
2679 Windows
2680
2681 =over 8
2682
2683 =item *
2684
2685 Signal handling now works better than it used to.  It is now implemented
2686 using a Windows message loop, and is therefore less prone to random
2687 crashes.
2688
2689 =item *
2690
2691 fork() emulation is now more robust, but still continues to have a few
2692 esoteric bugs and caveats.  See L<perlfork> for details. [561+]
2693
2694 =item *
2695
2696 A failed (pseudo)fork now returns undef and sets errno to EAGAIN. [561]
2697
2698 =item *
2699
2700 The following modules now work on Windows:
2701
2702     ExtUtils::Embed         [561]
2703     IO::Pipe
2704     IO::Poll
2705     Net::Ping
2706
2707 =item *
2708
2709 IO::File::new_tmpfile() is no longer limited to 32767 invocations
2710 per-process.
2711
2712 =item *
2713
2714 Better chdir() return value for a non-existent directory.
2715
2716 =item *
2717
2718 Compiling perl using the 64-bit Platform SDK tools is now supported.
2719
2720 =item *
2721
2722 The Win32::SetChildShowWindow() builtin can be used to control the
2723 visibility of windows created by child processes.  See L<Win32> for
2724 details.
2725
2726 =item *
2727
2728 Non-blocking waits for child processes (or pseudo-processes) are
2729 supported via C<waitpid($pid, &POSIX::WNOHANG)>.
2730
2731 =item *
2732
2733 The behavior of system() with multiple arguments has been rationalized.
2734 Each unquoted argument will be automatically quoted to protect whitespace,
2735 and any existing whitespace in the arguments will be preserved.  This
2736 improves the portability of system(@args) by avoiding the need for
2737 Windows C<cmd> shell specific quoting in perl programs.
2738
2739 Note that this means that some scripts that may have relied on earlier
2740 buggy behavior may no longer work correctly.  For example,
2741 C<system("nmake /nologo", @args)> will now attempt to run the file
2742 C<nmake /nologo> and will fail when such a file isn't found.
2743 On the other hand, perl will now execute code such as
2744 C<system("c:/Program Files/MyApp/foo.exe", @args)> correctly.
2745
2746 =item *
2747
2748 The perl header files no longer suppress common warnings from the
2749 Microsoft Visual C++ compiler.  This means that additional warnings may
2750 now show up when compiling XS code.
2751
2752 =item *
2753
2754 Borland C++ v5.5 is now a supported compiler that can build Perl.
2755 However, the generated binaries continue to be incompatible with those
2756 generated by the other supported compilers (GCC and Visual C++). [561]
2757
2758 =item *
2759
2760 Duping socket handles with open(F, ">&MYSOCK") now works under Windows 9x.
2761 [561]
2762
2763 =item *
2764
2765 Current directory entries in %ENV are now correctly propagated to child
2766 processes. [561]
2767
2768 =item *
2769
2770 New %ENV entries now propagate to subprocesses. [561]
2771
2772 =item *
2773
2774 Win32::GetCwd() correctly returns C:\ instead of C: when at the drive root.
2775 Other bugs in chdir() and Cwd::cwd() have also been fixed. [561]
2776
2777 =item *
2778
2779 The makefiles now default to the features enabled in ActiveState ActivePerl
2780 (a popular Win32 binary distribution). [561]
2781
2782 =item *
2783
2784 HTML files will now be installed in c:\perl\html instead of
2785 c:\perl\lib\pod\html
2786
2787 =item *
2788
2789 REG_EXPAND_SZ keys are now allowed in registry settings used by perl. [561]
2790
2791 =item *
2792
2793 Can now send() from all threads, not just the first one. [561]
2794
2795 =item *
2796
2797 ExtUtils::MakeMaker now uses $ENV{LIB} to search for libraries. [561]
2798
2799 =item *
2800
2801 Less stack reserved per thread so that more threads can run
2802 concurrently. (Still 16M per thread.) [561]
2803
2804 =item *
2805
2806 C<< File::Spec->tmpdir() >> now prefers C:/temp over /tmp
2807 (works better when perl is running as service).
2808
2809 =item *
2810
2811 Better UNC path handling under ithreads. [561]
2812
2813 =item *
2814
2815 wait(), waitpid(), and backticks now return the correct exit status
2816 under Windows 9x. [561]
2817
2818 =item *
2819
2820 A socket handle leak in accept() has been fixed. [561]
2821
2822 =back
2823
2824 =back
2825
2826 =head1 New or Changed Diagnostics
2827
2828 Please see L<perldiag> for more details.
2829
2830 =over 4
2831
2832 =item *
2833
2834 Ambiguous range in the transliteration operator (like a-z-9) now
2835 gives a warning.
2836
2837 =item *
2838
2839 Two new debugging options have been added: if you have compiled your
2840 Perl with debugging, you can use the -DT [561] and -DR options to trace
2841 tokenising and to add reference counts to displaying variables,
2842 respectively.
2843
2844 =item *
2845
2846 The lexical warnings category "deprecated" is no longer a sub-category
2847 of the "syntax" category. It is now a top-level category in its own
2848 right.
2849
2850 =item *
2851
2852 Unadorned dump() will now give a warning suggesting to
2853 use explicit CORE::dump() if that's what really is meant.
2854
2855 =item *
2856
2857 The "Unrecognized escape" warning has been extended to include C<\8>,
2858 C<\9>, and C<\_>.  There is no need to escape any of the C<\w> characters.
2859
2860 =item *
2861
2862 All regular expression compilation error messages are now hopefully
2863 easier to understand both because the error message now comes before
2864 the failed regex and because the point of failure is now clearly
2865 marked by a C<E<lt>-- HERE> marker.
2866
2867 =item *
2868
2869 Various I/O (and socket) functions like binmode(), close(), and so
2870 forth now more consistently warn if they are used illogically either
2871 on a yet unopened or on an already closed filehandle (or socket).
2872
2873 =item *
2874
2875 Using lstat() on a filehandle now gives a warning.  (It's a non-sensical
2876 thing to do.)
2877
2878 =item *
2879
2880 The C<-M> and C<-m> options now warn if you didn't supply the module name.
2881
2882 =item *
2883
2884 If you in C<use> specify a required minimum version, modules matching
2885 the name and but not defining a $VERSION will cause a fatal failure.
2886
2887 =item *
2888
2889 Using negative offset for vec() in lvalue context is now a warnable offense.
2890
2891 =item *
2892
2893 Odd number of arguments to oveload::constant now elicits a warning.
2894
2895 =item *
2896
2897 Odd number of elements to in anonymous hash now elicits a warning.
2898
2899 =item *
2900
2901 The various "opened only for", "on closed", "never opened" warnings
2902 drop the C<main::> prefix for filehandles in the C<main> package,
2903 for example C<STDIN> instead of C<main::STDIN>.
2904
2905 =item *
2906
2907 Subroutine prototypes are now checked more carefully, you may
2908 get warnings for example if you have used non-prototype characters.
2909
2910 =item *
2911
2912 If an attempt to use a (non-blessed) reference as an array index
2913 is made, a warning is given.
2914
2915 =item *
2916
2917 C<push @a;> and C<unshift @a;> (with no values to push or unshift)
2918 now give a warning.  This may be a problem for generated and evaled
2919 code.
2920
2921 =item *
2922
2923 If you try to L<perlfunc/pack> a number less than 0 or larger than 255
2924 using the C<"C"> format you will get an optional warning.  Similarly
2925 for the C<"c"> format and a number less than -128 or more than 127.
2926
2927 =item *
2928
2929 pack C<P> format now demands an explicit size.
2930
2931 =item *
2932
2933 unpack C<w> now warns of unterminated compressed integers.
2934
2935 =item *
2936
2937 Warnings relating to the use of PerlIO have been added.
2938
2939 =item *
2940
2941 Certain regex modifiers such as C<(?o)> make sense only if applied to
2942 the entire regex.  You will get an optional warning if you try to do
2943 otherwise.
2944
2945 =item *
2946
2947 Variable length lookbehind has not yet been implemented, trying to
2948 use it will tell that.
2949
2950 =item *
2951
2952 Using arrays or hashes as references (e.g. C<< %foo->{bar} >>
2953 has been deprecated for a while.  Now you will get an optional warning.
2954
2955 =item *
2956
2957 Warnings relating to the use of the new restricted hashes feature
2958 have been added.
2959
2960 =item *
2961
2962 Self-ties of arrays and hashes are not supported and fatal errors
2963 will happen even at an attempt to do so.
2964
2965 =item *
2966
2967 Using C<sort> in scalar context now issues an optional warning.
2968 This didn't do anything useful, as the sort was not performed.
2969
2970 =item *
2971
2972 Using the /g modifier in split() is meaningless and will cause a warning.
2973
2974 =item *
2975
2976 Using splice() past the end of an array now causes a warning.
2977
2978 =item *
2979
2980 Malformed Unicode encodings (UTF-8 and UTF-16) cause a lot of warnings,
2981 ad doestrying to use UTF-16 surrogates (which are unimplemented).
2982
2983 =item *
2984
2985 Trying to use Unicode characters on an I/O stream without marking the
2986 stream's encoding (using open() or binmode()) will cause "Wide character"
2987 warnings.
2988
2989 =item *
2990
2991 Use of v-strings in use/require causes a (backward) portability warning.
2992
2993 =item *
2994
2995 Warnings relating to the use interpreter threads and their shared data
2996 have been added.
2997
2998 =back
2999
3000 =head1 Changed Internals
3001
3002 =over 4
3003
3004 =item *
3005
3006 PerlIO is now the default.
3007
3008 =item *
3009
3010 perlapi.pod (a companion to perlguts) now attempts to document the
3011 internal API.
3012
3013 =item *
3014
3015 You can now build a really minimal perl called microperl.
3016 Building microperl does not require even running Configure;
3017 C<make -f Makefile.micro> should be enough.  Beware: microperl makes
3018 many assumptions, some of which may be too bold; the resulting
3019 executable may crash or otherwise misbehave in wondrous ways.
3020 For careful hackers only.
3021
3022 =item *
3023
3024 Added rsignal(), whichsig(), do_join(), op_clear, op_null,
3025 ptr_table_clear(), ptr_table_free(), sv_setref_uv(), and several UTF-8
3026 interfaces to the publicised API.  For the full list of the available
3027 APIs see L<perlapi>.
3028
3029 =item *
3030
3031 Made possible to propagate customised exceptions via croak()ing.
3032
3033 =item *
3034
3035 Now xsubs can have attributes just like subs.  (Well, at least the
3036 built-in attributes.)
3037
3038 =item *
3039
3040 dTHR and djSP have been obsoleted; the former removed (because it's
3041 a no-op) and the latter replaced with dSP.
3042
3043 =item *
3044
3045 PERL_OBJECT has been completely removed.
3046
3047 =item *
3048
3049 The MAGIC constants (e.g. C<'P'>) have been macrofied
3050 (e.g. C<PERL_MAGIC_TIED>) for better source code readability
3051 and maintainability.
3052
3053 =item *
3054
3055 The regex compiler now maintains a structure that identifies nodes in
3056 the compiled bytecode with the corresponding syntactic features of the
3057 original regex expression.  The information is attached to the new
3058 C<offsets> member of the C<struct regexp>. See L<perldebguts> for more
3059 complete information.
3060
3061 =item *
3062
3063 The C code has been made much more C<gcc -Wall> clean.  Some warning
3064 messages still remain in some platforms, so if you are compiling with
3065 gcc you may see some warnings about dubious practices.  The warnings
3066 are being worked on.
3067
3068 =item *
3069
3070 F<perly.c>, F<sv.c>, and F<sv.h> have now been extensively commented.
3071
3072 =item *
3073
3074 Documentation on how to use the Perl source repository has been added
3075 to F<Porting/repository.pod>.
3076
3077 =item *
3078
3079 There are now several profiling make targets.
3080
3081 =back
3082
3083 =head1 Security Vulnerability Closed [561]
3084
3085 (This change was already made in 5.7.0 but bears repeating here.)
3086 (5.7.0 came out before 5.6.1: the development branch 5.7 released
3087 earlier than the maintenance branch 5.6)
3088
3089 A potential security vulnerability in the optional suidperl component
3090 of Perl was identified in August 2000.  suidperl is neither built nor
3091 installed by default.  As of November 2001 the only known vulnerable
3092 platform is Linux, most likely all Linux distributions.  CERT and
3093 various vendors and distributors have been alerted about the vulnerability.
3094 See http://www.cpan.org/src/5.0/sperl-2000-08-05/sperl-2000-08-05.txt
3095 for more information.
3096
3097 The problem was caused by Perl trying to report a suspected security
3098 exploit attempt using an external program, /bin/mail.  On Linux
3099 platforms the /bin/mail program had an undocumented feature which
3100 when combined with suidperl gave access to a root shell, resulting in
3101 a serious compromise instead of reporting the exploit attempt.  If you
3102 don't have /bin/mail, or if you have 'safe setuid scripts', or if
3103 suidperl is not installed, you are safe.
3104
3105 The exploit attempt reporting feature has been completely removed from
3106 Perl 5.8.0 (and the maintenance release 5.6.1, and it was removed also
3107 from all the Perl 5.7 releases), so that particular vulnerability
3108 isn't there anymore.  However, further security vulnerabilities are,
3109 unfortunately, always possible.  The suidperl functionality is most
3110 probably going to be removed in Perl 5.10.  In any case, suidperl
3111 should only be used by security experts who know exactly what they are
3112 doing and why they are using suidperl instead of some other solution
3113 such as sudo ( see http://www.courtesan.com/sudo/ ).
3114
3115 =head1 New Tests
3116
3117 Several new tests have been added, especially for the F<lib> and
3118 F<ext> subsections.  There are now about 69 000 individual tests
3119 (spread over about 700 test scripts), in the regression suite (5.6.1
3120 has about 11 700 tests, in 258 test scripts)  The exact numbers depend
3121 on the platform and Perl configuration used.  Many of the new tests
3122 are of course introduced by the new modules, but still in general Perl
3123 is now more thoroughly tested.
3124
3125 Because of the large number of tests, running the regression suite
3126 will take considerably longer time than it used to: expect the suite
3127 to take up to 4-5 times longer to run than in perl 5.6.  On a really
3128 fast machine you can hope to finish the suite in about 6-8 minutes
3129 (wallclock time).
3130
3131 The tests are now reported in a different order than in earlier Perls.
3132 (This happens because the test scripts from under t/lib have been moved
3133 to be closer to the library/extension they are testing.)
3134
3135 =head1 Known Problems
3136
3137 =head2 The Compiler Suite Is Still Very Experimental
3138
3139 The compiler suite is slowly getting better but it continues to be
3140 highly experimental.  Use in production environments is discouraged.
3141
3142 =head2 Localising Tied Arrays and Hashes Is Broken
3143
3144     local %tied_array;
3145
3146 doesn't work as one would expect: the old value is restored
3147 incorrectly.  This will be changed in a future release, but we don't
3148 know yet what the new semantics will exactly be.  In any case, the
3149 change will break existing code that relies on the current
3150 (ill-defined) semantics, so just avoid doing this in general.
3151
3152 =head2 Building Extensions Can Fail Because Of Largefiles
3153
3154 Some extensions like mod_perl are known to have issues with
3155 `largefiles', a change brought by Perl 5.6.0 in which file offsets
3156 default to 64 bits wide, where supported.  Modules may fail to compile
3157 at all, or they may compile and work incorrectly.  Currently, there
3158 is no good solution for the problem, but Configure now provides
3159 appropriate non-largefile ccflags, ldflags, libswanted, and libs
3160 in the %Config hash (e.g., $Config{ccflags_nolargefiles}) so the
3161 extensions that are having problems can try configuring themselves
3162 without the largefileness.  This is admittedly not a clean solution,
3163 and the solution may not even work at all.  One potential failure is
3164 whether one can (or, if one can, whether it's a good idea to) link
3165 together at all binaries with different ideas about file offsets;
3166 all this is platform-dependent.
3167
3168 =head2 Modifying $_ Inside for(..)
3169
3170    for (1..5) { $_++ }
3171
3172 works without complaint.  It shouldn't.  (You should be able to
3173 modify only lvalue elements inside the loops.)  You can see the
3174 correct behaviour by replacing the 1..5 with 1, 2, 3, 4, 5.
3175
3176 =head2 mod_perl 1.26 Doesn't Build With Threaded Perl
3177
3178 Use mod_perl 1.27 or higher.
3179
3180 =head2 lib/ftmp-security tests warn 'system possibly insecure'
3181
3182 Don't panic.  Read the 'make test' section of INSTALL instead.
3183
3184 =head2 libwww-perl (LWP) fails base/date #51
3185
3186 Use libwww-perl 5.65 or later.
3187
3188 =head2 PDL failing some tests
3189
3190 Use PDL 2.3.4 or later.
3191
3192 =head2 Perl_get_sv
3193
3194 You may get errors like 'Undefined symbol "Perl_get_sv"' or "can't
3195 resolve symbol 'Perl_get_sv'", or the symbol may be "Perl_sv_2pv".
3196 This probably means that you are trying to use an older shared Perl
3197 library (or extensions linked with such) with Perl 5.8.0 executable.
3198 Perl used to have such a subroutine, but that is no more the case.
3199 Check your shared library path, and any shared Perl libraries in those
3200 directories.
3201
3202 Sometimes this problem may also indicate a partial Perl 5.8.0
3203 installation, see L</"Mac OS X dyld undefined symbols"> for an
3204 example and how to deal with it.
3205
3206 =head2 Self-tying Problems
3207
3208 Self-tying of arrays and hashes is broken in rather deep and
3209 hard-to-fix ways.  As a stop-gap measure to avoid people from getting
3210 frustrated at the mysterious results (core dumps, most often), it is
3211 forbidden for now (you will get a fatal error even from an attempt).
3212
3213 A change to self-tying of globs has caused them to be recursively
3214 referenced (see: L<perlobj/"Two-Phased Garbage Collection">).  You
3215 will now need an explicit untie to destroy a self-tied glob.  This
3216 behaviour may be fixed at a later date.
3217
3218 Self-tying of scalars and IO thingies works.
3219
3220 =head2 ext/threads/t/libc
3221
3222 If this test fails, it indicates that your libc (C library) is not
3223 threadsafe.  This particular test stress tests the localtime() call to
3224 find out whether it is threadsafe.  See L<perlthrtut> for more information.
3225
3226 =head2 Failure of Thread (5.005-style) tests
3227
3228 B<Note that support for 5.005-style threading is deprecated,
3229 experimental and practically unsupported.  In 5.10, it is expected
3230 to be removed.  You should migrate your code to ithreads.>
3231
3232 The following tests are known to fail due to fundamental problems in
3233 the 5.005 threading implementation. These are not new failures--Perl
3234 5.005_0x has the same bugs, but didn't have these tests.
3235
3236  ../ext/B/t/xref.t                    255 65280    14   12  85.71%  3-14
3237  ../ext/List/Util/t/first.t           255 65280     7    4  57.14%  2 5-7
3238  ../lib/English.t                       2   512    54    2   3.70%  2-3
3239  ../lib/FileCache.t                                 5    1  20.00%  5
3240  ../lib/Filter/Simple/t/data.t                      6    3  50.00%  1-3
3241  ../lib/Filter/Simple/t/filter_only.                9    3  33.33%  1-2 5
3242  ../lib/Math/BigInt/t/bare_mbf.t                 1627    4   0.25%  8 11 1626-1627
3243  ../lib/Math/BigInt/t/bigfltpm.t                 1629    4   0.25%  10 13 1628-
3244                                                                     1629
3245  ../lib/Math/BigInt/t/sub_mbf.t                  1633    4   0.24%  8 11 1632-1633
3246  ../lib/Math/BigInt/t/with_sub.t                 1628    4   0.25%  9 12 1627-1628
3247  ../lib/Tie/File/t/31_autodefer.t     255 65280    65   32  49.23%  34-65
3248  ../lib/autouse.t                                  10    1  10.00%  4
3249  op/flip.t                                         15    1   6.67%  15
3250
3251 These failures are unlikely to get fixed as 5.005-style threads
3252 are considered fundamentally broken.  (Basically what happens is that
3253 competing threads can corrupt shared global state, one good example
3254 being regular expression engine's state.)
3255
3256 =head2 Timing problems
3257
3258 The following tests may fail intermittently because of timing
3259 problems, for example if the system is heavily loaded.
3260
3261     t/op/alarm.t
3262     ext/Time/HiRes/HiRes.t
3263     lib/Benchmark.t
3264     lib/Memoize/t/expmod_t.t
3265     lib/Memoize/t/speed.t
3266
3267 In case of failure please try running them manually, for example
3268
3269     ./perl -Ilib ext/Time/HiRes/HiRes.t
3270
3271 =head2 Tied/Magical Array/Hash Elements Do Not Autovivify
3272
3273 For normal arrays C<$foo = \$bar[1]> will assign C<undef> to
3274 C<$bar[1]> (assuming that it didn't exist before), but for
3275 tied/magical arrays and hashes such autovivification does not happen
3276 because there is currently no way to catch the reference creation.
3277 The same problem affects slicing over non-existent indices/keys of
3278 a tied/magical array/hash.
3279
3280 =head2 Unicode in package/class and subroutine names does not work
3281
3282 One can have Unicode in identifier names, but not in package/class or
3283 subroutine names.  While some limited functionality towards this does
3284 exist as of Perl 5.8.0, that is more accidental than designed; use of
3285 Unicode for the said purposes is unsupported.
3286
3287 One reason of this unfinishedness is its (currently) inherent
3288 unportability: since both package names and subroutine names may
3289 need to be mapped to file and directory names, the Unicode capability
3290 of the filesystem becomes important-- and there unfortunately aren't
3291 portable answers.
3292
3293 =head1 Platform Specific Problems
3294
3295 =head2 AIX
3296
3297 =over 4
3298
3299 =item *
3300
3301 If using the AIX native make command, instead of just "make" issue
3302 "make all".  In some setups the former has been known to spuriously
3303 also try to run "make install".  Alternatively, you may want to use
3304 GNU make.
3305
3306 =item *
3307
3308 In AIX 4.2, Perl extensions that use C++ functions that use statics
3309 may have problems in that the statics are not getting initialized.
3310 In newer AIX releases, this has been solved by linking Perl with
3311 the libC_r library, but unfortunately in AIX 4.2 the said library
3312 has an obscure bug where the various functions related to time
3313 (such as time() and gettimeofday()) return broken values, and
3314 therefore in AIX 4.2 Perl is not linked against libC_r.
3315
3316 =item *
3317
3318 vac 5.0.0.0 May Produce Buggy Code For Perl
3319
3320 The AIX C compiler vac version 5.0.0.0 may produce buggy code,
3321 resulting in a few random tests failing when run as part of "make
3322 test", but when the failing tests are run by hand, they succeed.
3323 We suggest upgrading to at least vac version 5.0.1.0, that has been
3324 known to compile Perl correctly.  "lslpp -L|grep vac.C" will tell
3325 you the vac version.  See README.aix.
3326
3327 =item *
3328
3329 If building threaded Perl, you may get compilation warning from pp_sys.c:
3330
3331   "pp_sys.c", line 4651.39: 1506-280 (W) Function argument assignment between types "unsigned char*" and "const void*" is not allowed.
3332
3333 This is harmless; it is caused by the getnetbyaddr() and getnetbyaddr_r()
3334 having slightly different types for their first argument.
3335
3336 =back
3337
3338 =head2 Alpha systems with old gccs fail several tests
3339
3340 If you see op/pack, op/pat, op/regexp, or ext/Storable tests failing
3341 in a Linux/alpha or *BSD/Alpha, it's probably time to upgrade your gcc.
3342 gccs prior to 2.95.3 are definitely not good enough, and gcc 3.1 may
3343 be even better.  (RedHat Linux/alpha with gcc 3.1 reported no problems,
3344 as did Linux 2.4.18 with gcc 2.95.4.)  (In Tru64, it is preferable to
3345 use the bundled C compiler.)
3346
3347 =head2 AmigaOS
3348
3349 Perl 5.8.0 doesn't build in AmigaOS.  It broke at some point during
3350 the ithreads work and we could not find Amiga experts to unbreak the
3351 problems.  Perl 5.6.1 still works for AmigaOS (as does the the 5.7.2
3352 development release).
3353
3354 =head2 BeOS
3355
3356 The following tests fail on 5.8.0 Perl in BeOS Personal 5.03:
3357
3358  t/op/lfs............................FAILED at test 17
3359  t/op/magic..........................FAILED at test 24
3360  ext/Fcntl/t/syslfs..................FAILED at test 17
3361  ext/File/Glob/t/basic...............FAILED at test 3
3362  ext/POSIX/t/sigaction...............FAILED at test 13
3363  ext/POSIX/t/waitpid.................FAILED at test 1
3364
3365 See L<perlbeos> (README.beos) for more details.
3366
3367 =head2 Cygwin "unable to remap"
3368
3369 For example when building the Tk extension for Cygwin,
3370 you may get an error message saying "unable to remap".
3371 This is known problem with Cygwin, and a workaround is
3372 detailed in here: http://sources.redhat.com/ml/cygwin/2001-12/msg00894.html
3373
3374 =head2 Cygwin ndbm tests fail on FAT
3375
3376 One can build but not install (or test the build of) the NDBM_File
3377 on FAT filesystems.  Installation (or build) on NTFS works fine.
3378 If one attempts the test on a FAT install (or build) the following
3379 failures are expected:
3380
3381  ../ext/NDBM_File/ndbm.t       13  3328    71   59  83.10%  1-2 4 16-71
3382  ../ext/ODBM_File/odbm.t      255 65280    ??   ??       %  ??
3383  ../lib/AnyDBM_File.t           2   512    12    2  16.67%  1 4
3384  ../lib/Memoize/t/errors.t      0   139    11    5  45.45%  7-11
3385  ../lib/Memoize/t/tie_ndbm.t   13  3328     4    4 100.00%  1-4
3386  run/fresh_perl.t                          97    1   1.03%  91
3387
3388 NDBM_File fails and ODBM_File just coredumps.
3389
3390 =head2 DJGPP Failures
3391
3392  t/op/stat............................FAILED at test 29
3393  lib/File/Find/t/find.................FAILED at test 1
3394  lib/File/Find/t/taint................FAILED at test 1
3395  lib/h2xs.............................FAILED at test 15
3396  lib/Pod/t/eol........................FAILED at test 1
3397  lib/Test/Harness/t/strap-analyze.....FAILED at test 8
3398  lib/Test/Harness/t/test-harness......FAILED at test 23
3399  lib/Test/Simple/t/exit...............FAILED at test 1
3400
3401 The above failures are known as of 5.8.0 with native builds with long
3402 filenames, but there are a few more if running under dosemu because of
3403 limitations (and maybe bugs) of dosemu:
3404
3405  t/comp/cpp...........................FAILED at test 3
3406  t/op/inccode.........................(crash)
3407
3408 and a few lib/ExtUtils tests, and several hundred Encode/t/Aliases.t
3409 failures that work fine with long filenames.  So you really might
3410 prefer native builds and long filenames.
3411
3412 =head2 FreeBSD built with ithreads coredumps reading large directories
3413
3414 This is a known bug in FreeBSD 4.5's readdir_r(), it has been fixed in
3415 FreeBSD 4.6 (see L<perlfreebsd> (README.freebsd)).
3416
3417 =head2 FreeBSD Failing locale Test 117 For ISO 8859-15 Locales
3418
3419 The ISO 8859-15 locales may fail the locale test 117 in FreeBSD.
3420 This is caused by the characters \xFF (y with diaeresis) and \xBE
3421 (Y with diaeresis) not behaving correctly when being matched
3422 case-insensitively.  Apparently this problem has been fixed in
3423 the latest FreeBSD releases.
3424 ( http://www.freebsd.org/cgi/query-pr.cgi?pr=34308 )
3425
3426 =head2 IRIX fails ext/List/Util/t/shuffle.t or Digest::MD5
3427
3428 IRIX with MIPSpro 7.3.1.2m or 7.3.1.3m compiler may fail the List::Util
3429 test ext/List/Util/t/shuffle.t by dumping core.  This seems to be
3430 a compiler error since if compiled with gcc no core dump ensues, and
3431 no failures have been seen on the said test on any other platform.
3432
3433 Similarly, building the Digest::MD5 extension has been
3434 known to fail with "*** Termination code 139 (bu21)".
3435
3436 The cure is to drop optimization level (Configure -Doptimize=-O2).
3437
3438 =head2 HP-UX lib/posix Subtest 9 Fails When LP64-Configured
3439
3440 If perl is configured with -Duse64bitall, the successful result of the
3441 subtest 10 of lib/posix may arrive before the successful result of the
3442 subtest 9, which confuses the test harness so much that it thinks the
3443 subtest 9 failed.
3444
3445 =head2 Linux with glibc 2.2.5 fails t/op/int subtest #6 with -Duse64bitint
3446
3447 This is a known bug in the glibc 2.2.5 with long long integers.
3448 ( http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=65612 )
3449
3450 =head2 Linux With Sfio Fails op/misc Test 48
3451
3452 No known fix.
3453
3454 =head2 Mac OS X
3455
3456 Please remember to set your environment variable LC_ALL to "C"
3457 (setenv LC_ALL C) before running "make test" to avoid a lot of
3458 warnings about the broken locales of Mac OS X.
3459
3460 The following tests are known to fail in Mac OS X 10.1.5 because of
3461 buggy (old) implementations of Berkeley DB included in Mac OS X:
3462
3463  Failed Test                 Stat Wstat Total Fail  Failed  List of Failed
3464  -------------------------------------------------------------------------
3465  ../ext/DB_File/t/db-btree.t    0    11    ??   ??       %  ??
3466  ../ext/DB_File/t/db-recno.t              149    3   2.01%  61 63 65
3467
3468 If you are building on a UFS partition, you will also probably see
3469 t/op/stat.t subtest #9 fail.  This is caused by Darwin's UFS not
3470 supporting inode change time.
3471
3472 Also the ext/POSIX/t/posix.t subtest #10 fails but it is skipped for
3473 now because the failure is Apple's fault, not Perl's (blocked signals
3474 are lost).
3475
3476 If you Configure with ithreads, ext/threads/t/libc.t will fail. Again,
3477 this is not Perl's fault-- the libc of Mac OS X is not threadsafe
3478 (in this particular test, the localtime() call is found to be
3479 threadunsafe.)
3480
3481 =head2 Mac OS X dyld undefined symbols
3482
3483 If after installing Perl 5.8.0 you are getting warnings about missing
3484 symbols, for example
3485
3486     dyld: perl Undefined symbols
3487     _perl_sv_2pv
3488     _perl_get_sv
3489
3490 you probably have an old pre-Perl-5.8.0 installation (or parts of one)
3491 in /Library/Perl (the undefined symbols used to exist in pre-5.8.0 Perls).
3492 It seems that for some reason "make install" doesn't always completely
3493 overwrite the files in /Library/Perl.  You can move the old Perl
3494 shared library out of the way like this:
3495
3496     cd /Library/Perl/darwin/CORE
3497     mv libperl.dylib libperlold.dylib
3498
3499 and then reissue "make install".  Note that the above of course is
3500 extremely disruptive for anything using the /usr/local/bin/perl.
3501 If that doesn't help, you may have to try removing all the .bundle
3502 files from beneath /Library/Perl, and again "make install"-ing.
3503
3504 =head2 OS/2 Test Failures
3505
3506 The following tests are known to fail on OS/2 (for clarity
3507 only the failures are shown, not the full error messages):
3508
3509  t/io/utf8............................FAILED at test 19
3510  t/op/grent...........................FAILED at test 2
3511  t/op/pwent...........................FAILED at test 1
3512  t/lib/os2_base.......................FAILED at test 13
3513  t/lib/os2_process....................FAILED at test 10
3514  t/lib/os2_process_kid................FAILED at test 10
3515  t/lib/rx_cmprt.......................FAILED at test 16
3516  ext/DB_File/t/db-btree...............FAILED at test 0
3517  ext/DB_File/t/db-hash................FAILED at test 0
3518  ext/DB_File/t/db-recno...............FAILED at test 0
3519  lib/ExtUtils/t/basic.................FAILED at test 14
3520  lib/ExtUtils/t/Constant..............FAILED at test 4
3521  lib/Memoize/t/errors.................FAILED at test 4
3522
3523 =head2 op/sprintf tests 91, 129, and 130
3524
3525 The op/sprintf tests 91, 129, and 130 are known to fail on some platforms.
3526 Examples include any platform using sfio, and Compaq/Tandem's NonStop-UX.
3527
3528 Test 91 is known to fail on QNX6 (nto), because C<sprintf '%e',0>
3529 incorrectly produces C<0.000000e+0> instead of C<0.000000e+00>.
3530
3531 For tests 129 and 130, the failing platforms do not comply with
3532 the ANSI C Standard: lines 19ff on page 134 of ANSI X3.159 1989, to
3533 be exact.  (They produce something other than "1" and "-1" when
3534 formatting 0.6 and -0.6 using the printf format "%.0f"; most often,
3535 they produce "0" and "-0".)
3536
3537 =head2 Solaris 2.5
3538
3539 In case you are still using Solaris 2.5 (aka SunOS 5.5), you may
3540 experience failures (the test core dumping) in lib/locale.t.
3541 The suggested cure is to upgrade your Solaris.
3542
3543 =head2 Solaris x86 Fails Tests With -Duse64bitint
3544
3545 The following tests are known to fail in Solaris x86 with Perl
3546 configured to use 64 bit integers:
3547
3548  ext/Data/Dumper/t/dumper.............FAILED at test 268
3549  ext/Devel/Peek/Peek..................FAILED at test 7
3550
3551 =head2 SUPER-UX (NEC SX)
3552
3553 The following tests are known to fail on SUPER-UX:
3554
3555  op/64bitint...........................FAILED tests 29-30, 32-33, 35-36
3556  op/arith..............................FAILED tests 128-130
3557  op/pack...............................FAILED tests 25-5625
3558  op/pow................................
3559  op/taint..............................# msgsnd failed
3560  ../ext/IO/lib/IO/t/io_poll............FAILED tests 3-4
3561  ../ext/IPC/SysV/ipcsysv...............FAILED tests 2, 5-6
3562  ../ext/IPC/SysV/t/msg.................FAILED tests 2, 4-6
3563  ../ext/Socket/socketpair..............FAILED tests 12
3564  ../lib/IPC/SysV.......................FAILED tests 2, 5-6
3565  ../lib/warnings.......................FAILED tests 115-116, 118-119
3566
3567 The op/pack failure ("Cannot compress negative numbers at op/pack.t line 126")
3568 is serious but as of yet unsolved.  It points at some problems with the
3569 signedness handling of the C compiler, as do the 64bitint, arith, and pow
3570 failures.  Most of the rest point at problems with SysV IPC.
3571
3572 =head2 Term::ReadKey not working on Win32
3573
3574 Use Term::ReadKey 2.20 or later.
3575
3576 =head2 UNICOS/mk
3577
3578 =over 4
3579
3580 =item *
3581
3582 During Configure, the test
3583
3584     Guessing which symbols your C compiler and preprocessor define...
3585
3586 will probably fail with error messages like
3587
3588     CC-20 cc: ERROR File = try.c, Line = 3
3589       The identifier "bad" is undefined.
3590
3591       bad switch yylook 79bad switch yylook 79bad switch yylook 79bad switch yylook 79#ifdef A29K
3592       ^
3593
3594     CC-65 cc: ERROR File = try.c, Line = 3
3595       A semicolon is expected at this point.
3596
3597 This is caused by a bug in the awk utility of UNICOS/mk.  You can ignore
3598 the error, but it does cause a slight problem: you cannot fully
3599 benefit from the h2ph utility (see L<h2ph>) that can be used to
3600 convert C headers to Perl libraries, mainly used to be able to access
3601 from Perl the constants defined using C preprocessor, cpp.  Because of
3602 the above error, parts of the converted headers will be invisible.
3603 Luckily, these days the need for h2ph is rare.
3604
3605 =item *
3606
3607 If building Perl with interpreter threads (ithreads), the
3608 getgrent(), getgrnam(), and getgrgid() functions cannot return the
3609 list of the group members due to a bug in the multithreaded support of
3610 UNICOS/mk.  What this means is that in list context the functions will
3611 return only three values, not four.
3612
3613 =back
3614
3615 =head2 UTS
3616
3617 There are a few known test failures, see L<perluts> (README.uts).
3618
3619 =head2 VOS (Stratus)
3620
3621 When Perl is built using the native build process on VOS Release
3622 14.5.0 and GNU C++/GNU Tools 2.0.1, all attempted tests either
3623 pass or result in TODO (ignored) failures.
3624
3625 =head2 VMS
3626
3627 There should be no reported test failures with a default configuration,
3628 though there are a number of tests marked TODO that point to areas
3629 needing further debugging and/or porting work.
3630
3631 =head2 Win32
3632
3633 In multi-CPU boxes, there are some problems with the I/O buffering:
3634 some output may appear twice.
3635
3636 =head2 XML::Parser not working
3637
3638 Use XML::Parser 2.31 or later.
3639
3640 =head2 z/OS (OS/390)
3641
3642 z/OS has rather many test failures but the situation is actually much
3643 better than it was in 5.6.0; it's just that so many new modules and
3644 tests have been added.
3645
3646  Failed Test                   Stat Wstat Total Fail  Failed  List of Failed
3647  ---------------------------------------------------------------------------
3648  ../ext/Data/Dumper/t/dumper.t              357    8   2.24%  311 314 325 327
3649                                                               331 333 337 339
3650  ../ext/IO/lib/IO/t/io_unix.t                 5    4  80.00%  2-5
3651  ../ext/Storable/t/downgrade.t   12  3072   169   12   7.10%  14-15 46-47 78-79
3652                                                               110-111 150 161
3653  ../lib/ExtUtils/t/Constant.t   121 30976    48   48 100.00%  1-48
3654  ../lib/ExtUtils/t/Embed.t                    9    9 100.00%  1-9
3655  op/pat.t                                   922    7   0.76%  665 776 785 832-
3656                                                               834 845
3657  op/sprintf.t                               224    3   1.34%  98 100 136
3658  op/tr.t                                     97    5   5.15%  63 71-74
3659  uni/fold.t                                 780    6   0.77%  61 169 196 661
3660                                                               710-711
3661
3662 The failures in dumper.t and downgrade.t are problems in the tests,
3663 those in io_unix and sprintf are problems in the USS (UDP sockets and
3664 printf formats).  The pat, tr, and fold failures are genuine Perl
3665 problems caused by EBCDIC (and in the pat and fold cases, combining
3666 that with Unicode).  The Constant and Embed are probably problems in
3667 the tests (since they test Perl's ability to build extensions, and
3668 that seems to be working reasonably well.)
3669
3670 =head2 Unicode Support on EBCDIC Still Spotty
3671
3672 Though mostly working, Unicode support still has problem spots on
3673 EBCDIC platforms.  One such known spot are the C<\p{}> and C<\P{}>
3674 regular expression constructs for code points less than 256: the
3675 C<pP> are testing for Unicode code points, not knowing about EBCDIC.
3676
3677 =head2 Seen In Perl 5.7 But Gone Now
3678
3679 C<Time::Piece> (previously known as C<Time::Object>) was removed
3680 because it was felt that it didn't have enough value in it to be a
3681 core module.  It is still a useful module, though, and is available
3682 from the CPAN.
3683
3684 Perl 5.8 unfortunately does not build anymore on AmigaOS; this broke
3685 accidentally at some point.  Since there are not that many Amiga
3686 developers available, we could not get this fixed and tested in time
3687 for 5.8.0.  Perl 5.6.1 still works for AmigaOS (as does the the 5.7.2
3688 development release).
3689
3690 The C<PerlIO::Scalar> and C<PerlIO::Via> (capitalised) were renamed as
3691 C<PerlIO::scalar> and C<PerlIO::via> (all lowercase) just before 5.8.0.
3692 The main rationale was to have all core PerlIO layers to have all
3693 lowercase names.  The "plugins" are named as usual, for example
3694 C<PerlIO::via::QuotedPrint>.
3695
3696 The C<threads::shared::queue> and C<threads::shared::semaphore> were
3697 renamed as C<Thread::Queue> and C<Thread::Semaphore> just before 5.8.0.
3698 The main rationale was to have thread modules to obey normal naming,
3699 C<Thread::> (the C<threads> and C<threads::shared> themselves are
3700 more pragma-like, they affect compile-time, so they stay lowercase).
3701
3702 =head1 Reporting Bugs
3703
3704 If you find what you think is a bug, you might check the articles
3705 recently posted to the comp.lang.perl.misc newsgroup and the perl
3706 bug database at http://bugs.perl.org/ .  There may also be
3707 information at http://www.perl.com/ , the Perl Home Page.
3708
3709 If you believe you have an unreported bug, please run the B<perlbug>
3710 program included with your release.  Be sure to trim your bug down
3711 to a tiny but sufficient test case.  Your bug report, along with the
3712 output of C<perl -V>, will be sent off to perlbug@perl.org to be
3713 analysed by the Perl porting team.
3714
3715 =head1 SEE ALSO
3716
3717 The F<Changes> file for exhaustive details on what changed.
3718
3719 The F<INSTALL> file for how to build Perl.
3720
3721 The F<README> file for general stuff.
3722
3723 The F<Artistic> and F<Copying> files for copyright information.
3724
3725 =head1 HISTORY
3726
3727 Written by Jarkko Hietaniemi <F<jhi@iki.fi>>.
3728
3729 =cut