Expand %Config variables only if explicitly so requested
[p5sagit/p5-mst-13.2.git] / pod / perldelta.pod
CommitLineData
cc0fca54 1=head1 NAME
2
53080bb1 3perldelta - what's new for perl v5.7.0
cc0fca54 4
5=head1 DESCRIPTION
6
53080bb1 7This document describes differences between the 5.6.0 release and
8the 5.7.0 release.
cc0fca54 9
43b92eec 10=head1 Security Vulnerability Closed
d4ad863d 11
12A potential security vulnerability in the optional suidperl component
ce72e97c 13of Perl has been identified. suidperl is neither built nor installed
8456ac52 14by default. As of September the 2nd, 2000, the only known vulnerable
ce72e97c 15platform is Linux, most likely all Linux distributions. CERT and
16various vendors have been alerted about the vulnerability.
d4ad863d 17
18The problem was caused by Perl trying to report a suspected security
ce72e97c 19exploit attempt using an external program, /bin/mail. On Linux
8456ac52 20platforms the /bin/mail program had an undocumented feature which
21when combined with suidperl gave access to a root shell, resulting in
22a serious compromise instead of reporting the exploit attempt. If you
23don't have /bin/mail, or if you have 'safe setuid scripts', or if
24suidperl is not installed, you are safe.
d4ad863d 25
26The exploit attempt reporting feature has been completely removed from
27the Perl 5.7.0 release, so that particular vulnerability isn't there
562628a3 28anymore. However, further security vulnerabilities are,
29unfortunately, always possible. The suidperl code is being reviewed
30and if deemed too risky to continue to be supported, it may be
31completely removed from future releases. In any case, suidperl should
32only be used by security experts who know exactly what they are doing
33and why they are using suidperl instead of some other solution such as
34sudo (see http://www.courtesan.com/sudo/).
d4ad863d 35
36=head1 Incompatible Changes
37
ce72e97c 38=over 4
39
40=item *
d4ad863d 41
ce72e97c 42Arrays now always interpolate into double-quoted strings:
43constructs like "foo@bar" now always assume C<@bar> is an array,
44whether or not the compiler has seen use of C<@bar>.
d4ad863d 45
ce72e97c 46=item *
d4ad863d 47
48The semantics of bless(REF, REF) were unclear and until someone proves
49it to make some sense, it is forbidden.
50
ce72e97c 51=item *
d4ad863d 52
c9e9bc25 53A reference to a reference now stringify as "REF(0x81485ec)" instead
54of "SCALAR(0x81485ec)" in order to be more consistent with the return
55value of ref().
56
57=item *
58
d4ad863d 59The very dusty examples in the eg/ directory have been removed.
60Suggestions for new shiny examples welcome but the main issue is that
ce72e97c 61the examples need to be documented, tested and (most importantly)
62maintained.
d4ad863d 63
ce72e97c 64=item *
d4ad863d 65
66The obsolete chat2 library that should never have been allowed
67to escape the laboratory has been decommissioned.
68
ce72e97c 69=item *
d4ad863d 70
71The unimplemented POSIX regex features [[.cc.]] and [[=c=]] are still
43b92eec 72recognised but now cause fatal errors. The previous behaviour of
d4ad863d 73ignoring them by default and warning if requested was unacceptable
74since it, in a way, falsely promised that the features could be used.
75
ce72e97c 76=item *
d4ad863d 77
14638679 78The (bogus) escape sequences \8 and \9 now give an optional warning
79("Unrecognized escape passed through"). There is no need to \-escape
80any C<\w> character.
831facbb 81
82=item *
83
d4ad863d 84lstat(FILEHANDLE) now gives a warning because the operation makes no sense.
85In future releases this may become a fatal error.
86
ce72e97c 87=item *
d4ad863d 88
ce72e97c 89The long deprecated uppercase aliases for the string comparison
d4ad863d 90operators (EQ, NE, LT, LE, GE, GT) have now been removed.
91
ce72e97c 92=item *
d4ad863d 93
94The regular expression captured submatches ($1, $2, ...) are now
ce72e97c 95more consistently unset if the match fails, instead of leaving false
d4ad863d 96data lying around in them.
97
ce72e97c 98=item *
d4ad863d 99
100The tr///C and tr///U features have been removed and will not return;
101the interface was a mistake. Sorry about that. For similar
102functionality, see pack('U0', ...) and pack('C0', ...).
103
ce72e97c 104=back
105
cc0fca54 106=head1 Core Enhancements
107
53080bb1 108=over 4
109
110=item *
111
112C<perl -d:Module=arg,arg,arg> now works (previously one couldn't pass
113in multiple arguments.)
114
115=item *
116
53080bb1 117my __PACKAGE__ now works.
118
119=item *
120
ce72e97c 121C<no Module;> now works even if there is no "sub unimport" in the Module.
53080bb1 122
123=item *
124
d4ad863d 125The numerical comparison operators return C<undef> if either operand
126is a NaN. Previously the behaviour was unspecified.
53080bb1 127
128=item *
129
43b92eec 130C<pack('U0a*', ...)> can now be used to force a string to UTF8.
53080bb1 131
132=item *
133
134prototype(\&) is now available.
135
c835e335 136=item *
137
138There is now an UNTIE method.
139
53080bb1 140=back
141
cc0fca54 142=head1 Modules and Pragmata
143
53080bb1 144=head2 New Modules
145
d4ad863d 146=over 4
147
148=item *
149
ce72e97c 150File::Temp allows one to create temporary files and directories in an
151easy, portable, and secure way.
d4ad863d 152
153=item *
154
ce72e97c 155Storable gives persistence to Perl data structures by allowing the
156storage and retrieval of Perl data to and from files in a fast and
157compact binary format.
d4ad863d 158
159=back
53080bb1 160
161=head2 Updated And Improved Modules and Pragmata
162
163=over 4
164
165=item *
166
ce72e97c 167The following independently supported modules have been updated to
168newer versions from CPAN: CGI, CPAN, DB_File, File::Spec, Getopt::Long,
169the podlators bundle, Pod::LaTeX, Pod::Parser, Term::ANSIColor, Test.
53080bb1 170
171=item *
172
ce72e97c 173Bug fixes and minor enhancements have been applied to B::Deparse,
9db5a202 174Data::Dumper, IO::Poll, IO::Socket::INET, Math::BigFloat,
a1ba9576 175Math::Complex, Math::Trig, Net::protoent, the re pragma, SelfLoader,
176Sys::SysLog, Test::Harness, Text::Wrap, UNIVERSAL, and the warnings
177pragma.
53080bb1 178
179=item *
180
ce72e97c 181The attributes::reftype() now works on tied arguments.
53080bb1 182
183=item *
184
ce72e97c 185AutoLoader can now be disabled with C<no AutoLoader;>,
53080bb1 186
187=item *
188
189The English module can now be used without the infamous performance
190hit by saying
191
192 use English '-no_performance_hit';
193
194(Assuming, of course, that one doesn't need the troublesome variables
8456ac52 195C<$`>, C<$&>, or C<$'>.) Also, introduced C<@LAST_MATCH_START> and
53080bb1 196C<@LAST_MATCH_END> English aliases for C<@-> and C<@+>.
197
198=item *
199
ce72e97c 200File::Find now has pre- and post-processing callbacks. It also
201correctly changes directories when chasing symbolic links. Callbacks
202(naughtily) exiting with "next;" instead of "return;" now work.
53080bb1 203
204=item *
205
d4ad863d 206File::Glob::glob() renamed to File::Glob::bsd_glob() to avoid
53080bb1 207prototype mismatch with CORE::glob().
208
209=item *
210
ce72e97c 211IPC::Open3 now allows the use of numeric file descriptors.
53080bb1 212
213=item *
214
ce72e97c 215use lib now works identically to @INC. Removing directories
216with 'no lib' now works.
53080bb1 217
218=item *
219
ce72e97c 220C<%INC> now localised in a Safe compartment so that use/require work.
53080bb1 221
222=item *
223
ce72e97c 224The Shell module now has an OO interface.
53080bb1 225
a1ba9576 226=item *
227
ce72e97c 228=back
53080bb1 229
ce72e97c 230=head1 Utility Changes
53080bb1 231
ce72e97c 232=over 4
53080bb1 233
234=item *
235
8456ac52 236The Emacs perl mode (emacs/cperl-mode.el) has been updated to version
2374.31.
53080bb1 238
239=item *
240
8456ac52 241Perlbug is now much more robust. It also sends the bug report to
242perl.org, not perl.com.
53080bb1 243
244=item *
245
ce72e97c 246The perlcc utility has been rewritten and its user interface (that is,
247command line) is much more like that of the UNIX C compiler, cc.
53080bb1 248
249=item *
250
ce72e97c 251The xsubpp utility for extension writers now understands POD
252documentation embedded in the *.xs files.
53080bb1 253
ce72e97c 254=back
53080bb1 255
ce72e97c 256=head1 New Documentation
53080bb1 257
ce72e97c 258=over 4
53080bb1 259
260=item *
261
ce72e97c 262perl56delta details the changes between the 5.005 release and the
2635.6.0 release.
53080bb1 264
265=item *
266
ce72e97c 267perldebtut is a Perl debugging tutorial.
53080bb1 268
269=item *
270
ce72e97c 271perlebcdic contains considerations for running Perl on EBCDIC platforms.
272Note that unfortunately EBCDIC platforms that used to supported back in
273Perl 5.005 are still unsupported by Perl 5.7.0; the plan, however, is to
274bring them back to the fold.
53080bb1 275
276=item *
277
ce72e97c 278perlnewmod tells about writing and submitting a new module.
53080bb1 279
280=item *
281
ce72e97c 282perlposix-bc explains using Perl on the POSIX-BC platform
562628a3 283(an EBCDIC mainframe platform).
53080bb1 284
285=item *
286
ce72e97c 287perlretut is a regular expression tutorial.
53080bb1 288
289=item *
290
ce72e97c 291perlrequick is a regular expressions quick-start guide.
292Yes, much quicker than perlretut.
53080bb1 293
294=item *
295
ce72e97c 296perlutil explains the command line utilities packaged with the Perl
297distribution.
53080bb1 298
299=back
300
ce72e97c 301=head1 Performance Enhancements
53080bb1 302
562628a3 303=over 4
304
305=item *
306
ce72e97c 307map() that changes the size of the list should now work faster.
53080bb1 308
d46b76b3 309=item *
310
311sort() has been changed to use mergesort internally as opposed to the
312earlier quicksort. For very small lists this may result in slightly
8456ac52 313slower sorting times, but in general the speedup should be at least
31420%. Additional bonuses are that the worst case behaviour of sort()
315is now better (in computer science terms it now runs in time O(N log N),
316as opposed to quicksort's Theta(N**2) worst-case run time behaviour),
317and that sort() is now stable (meaning that elements with identical
318keys will stay ordered as they were before the sort).
d46b76b3 319
562628a3 320=back
321
ce72e97c 322=head1 Installation and Configuration Improvements
53080bb1 323
ce72e97c 324=head2 Generic Improvements
cc0fca54 325
53080bb1 326=over 4
327
328=item *
329
0aa7271f 330INSTALL now explains how you can configure Perl to use 64-bit
ce72e97c 331integers even on non-64-bit platforms.
53080bb1 332
333=item *
334
8456ac52 335Policy.sh policy change: if you are reusing a Policy.sh file
336(see INSTALL) and you use Configure -Dprefix=/foo/bar and in the old
ce72e97c 337Policy $prefix eq $siteprefix and $prefix eq $vendorprefix, all of
338them will now be changed to the new prefix, /foo/bar. (Previously
339only $prefix changed.) If you do not like this new behaviour,
340specify prefix, siteprefix, and vendorprefix explicitly.
53080bb1 341
342=item *
343
ce72e97c 344A new optional location for Perl libraries, otherlibdirs, is available.
345It can be used for example for vendor add-ons without disturbing Perl's
346own library directories.
53080bb1 347
348=item *
349
ce72e97c 350In many platforms the vendor-supplied 'cc' is too stripped-down to
351build Perl (basically, 'cc' doesn't do ANSI C). If this seems
352to be the case and 'cc' does not seem to be the GNU C compiler
353'gcc', an automatic attempt is made to find and use 'gcc' instead.
53080bb1 354
355=item *
356
ce72e97c 357gcc needs to closely track the operating system release to avoid
358build problems. If Configure finds that gcc was built for a different
359operating system release than is running, it now gives a clearly visible
360warning that there may be trouble ahead.
53080bb1 361
362=item *
363
ce72e97c 364If binary compatibility with the 5.005 release is not wanted, Configure
365no longer suggests including the 5.005 modules in @INC.
53080bb1 366
367=item *
368
ce72e97c 369Configure C<-S> can now run non-interactively.
53080bb1 370
371=item *
372
ce72e97c 373configure.gnu now works with options with whitespace in them.
53080bb1 374
375=item *
376
ce72e97c 377installperl now outputs everything to STDERR.
53080bb1 378
379=item *
380
ce72e97c 381$Config{byteorder} is now computed dynamically (this is more robust
382with "fat binaries" where an executable image contains binaries for
383more than one binary platform.)
53080bb1 384
eedaba54 385=item *
386
387Configure no longer included the DBM libraries (dbm, gdbm, db, ndbm)
388when building the Perl binary. The only exception to this is SunOS 4.x,
389which needs them.
390
ce72e97c 391=back
53080bb1 392
ce72e97c 393=head1 Selected Bug Fixes
53080bb1 394
ce72e97c 395=over 4
53080bb1 396
397=item *
398
ce72e97c 399Several debugger fixes: exit code now reflects the script exit code,
400condition C<"0"> now treated correctly, the C<d> command now checks
401line number, the C<$.> no longer gets corrupted, all debugger output now
402goes correctly to the socket if RemotePort is set.
53080bb1 403
404=item *
405
ce72e97c 406C<*foo{FORMAT}> now works.
53080bb1 407
408=item *
409
ce72e97c 410Lexical warnings now propagating correctly between scopes.
53080bb1 411
412=item *
413
ce72e97c 414Line renumbering with eval and C<#line> now works.
53080bb1 415
416=item *
417
ce72e97c 418Fixed numerous memory leaks, especially in eval "".
53080bb1 419
420=item *
421
ce72e97c 422Modulus of unsigned numbers now works (4063328477 % 65535 used to
423return 27406, instead of 27047).
53080bb1 424
425=item *
426
ce72e97c 427Some "not a number" warnings introduced in 5.6.0 eliminated to be
428more compatible with 5.005. Infinity is now recognised as a number.
53080bb1 429
430=item *
431
ce72e97c 432our() variables will not cause "will not stay shared" warnings.
53080bb1 433
434=item *
435
ce72e97c 436pack "Z" now correctly terminates the string with "\0".
53080bb1 437
438=item *
439
ce72e97c 440Fix password routines which in some shadow password platforms
441(e.g. HP-UX) caused getpwent() to return every other entry.
53080bb1 442
443=item *
444
ce72e97c 445printf() no longer resets the numeric locale to "C".
53080bb1 446
447=item *
448
ce72e97c 449C<q(a\\b)> now parses correctly as C<'a\\b'>.
53080bb1 450
451=item *
452
ce72e97c 453Printing quads (64-bit integers) with printf/sprintf now works
562628a3 454without the q L ll prefixes (assuming you are on a quad-capable platform).
53080bb1 455
456=item *
457
ce72e97c 458Regular expressions on references and overloaded scalars now work.
53080bb1 459
460=item *
461
ce72e97c 462scalar() now forces scalar context even when used in void context.
53080bb1 463
464=item *
ce72e97c 465
466sort() arguments are now compiled in the right wantarray context
467(they were accidentally using the context of the sort() itself).
53080bb1 468
469=item *
470
ce72e97c 471Changed the POSIX character class C<[[:space:]]> to include the (very
472rare) vertical tab character. Added a new POSIX-ish character class
473C<[[:blank:]]> which stands for horizontal whitespace (currently,
474the space and the tab).
53080bb1 475
476=item *
477
ce72e97c 478$AUTOLOAD, sort(), lock(), and spawning subprocesses
479in multiple threads simultaneously are now thread-safe.
53080bb1 480
481=item *
482
ce72e97c 483Allow read-only string on left hand side of non-modifying tr///.
53080bb1 484
485=item *
486
ce72e97c 487Several Unicode fixes (but still not perfect).
53080bb1 488
ce72e97c 489=over 8
53080bb1 490
491=item *
492
ce72e97c 493BOMs (byte order marks) in the beginning of Perl files
494(scripts, modules) should now be transparently skipped.
0aa7271f 495UTF-16 (UCS-2)encoded Perl files should now be read correctly.
53080bb1 496
497=item *
498
bc723577 499The character tables have been updated to Unicode 3.0.1.
53080bb1 500
ce72e97c 501=item *
53080bb1 502
ce72e97c 503chr() for values greater than 127 now create utf8 when under use
504utf8.
53080bb1 505
ce72e97c 506=item *
53080bb1 507
ce72e97c 508Comparing with utf8 data does not magically upgrade non-utf8 data into
509utf8.
53080bb1 510
511=item *
512
ce72e97c 513C<IsAlnum>, C<IsAlpha>, and C<IsWord> now match titlecase.
53080bb1 514
515=item *
516
ce72e97c 517Concatenation with the C<.> operator or via variable interpolation,
518C<eq>, C<substr>, C<reverse>, C<quotemeta>, the C<x> operator,
519substitution with C<s///>, single-quoted UTF8, should now work--in
520theory.
53080bb1 521
522=item *
523
ce72e97c 524The C<tr///> operator now works I<slightly> better but is still rather
525broken. Note that the C<tr///CU> functionality has been removed (but
526see pack('U0', ...)).
53080bb1 527
528=item *
529
33b45480 530vec() now tries to work with characters <= 255 when possible, but it leaves
531higher character values in place. In that case, if vec() was used to modify
532the string, it is no longer considered to be utf8-encoded.
bc723577 533
534=item *
535
ce72e97c 536Zero entries were missing from the Unicode classes like C<IsDigit>.
53080bb1 537
538=back
539
ce72e97c 540=item *
53080bb1 541
ce72e97c 542UNIVERSAL::isa no longer caches methods incorrectly. (This broke
543the Tk extension with 5.6.0.)
53080bb1 544
ce72e97c 545=back
53080bb1 546
ce72e97c 547=head2 Platform Specific Changes and Fixes
53080bb1 548
549=over 4
550
551=item *
552
ce72e97c 553BSDI 4.*
53080bb1 554
ce72e97c 555Perl now works on post-4.0 BSD/OSes.
53080bb1 556
ce72e97c 557=item *
53080bb1 558
ce72e97c 559All BSDs
53080bb1 560
ce72e97c 561Setting C<$0> now works (as much as possible; see perlvar for details).
53080bb1 562
ce72e97c 563=item *
53080bb1 564
ce72e97c 565Cygwin
53080bb1 566
ce72e97c 567Numerous updates; currently synchronised with Cygwin 1.1.4.
53080bb1 568
569=item *
570
ce72e97c 571EPOC
53080bb1 572
ce72e97c 573EPOC update after Perl 5.6.0. See README.epoc.
53080bb1 574
ce72e97c 575=item *
53080bb1 576
ce72e97c 577FreeBSD 3.*
53080bb1 578
ce72e97c 579Perl now works on post-3.0 FreeBSDs.
53080bb1 580
581=item *
582
ce72e97c 583HP-UX
53080bb1 584
ce72e97c 585README.hpux updated; C<Configure -Duse64bitall> now almost works.
53080bb1 586
ce72e97c 587=item *
53080bb1 588
ce72e97c 589IRIX
53080bb1 590
ce72e97c 591Numerous compilation flag and hint enhancements; accidental mixing
592of 32-bit and 64-bit libraries (a doomed attempt) made much harder.
53080bb1 593
594=item *
595
ce72e97c 596Linux
53080bb1 597
ce72e97c 598Long doubles should now work (see INSTALL).
53080bb1 599
600=item *
601
ce72e97c 602MacOS Classic
603
53080bb1 604Compilation of the standard Perl distribution in MacOS Classic should
ce72e97c 605now work if you have the Metrowerks development environment and
606the missing Mac-specific toolkit bits. Contact the macperl mailing
53080bb1 607list for details.
608
ce72e97c 609=item *
53080bb1 610
ce72e97c 611MPE/iX
53080bb1 612
ce72e97c 613MPE/iX update after Perl 5.6.0. See README.mpeix.
53080bb1 614
ce72e97c 615=item *
53080bb1 616
ce72e97c 617NetBSD/sparc
53080bb1 618
ce72e97c 619Perl now works on NetBSD/sparc.
53080bb1 620
621=item *
622
ce72e97c 623OS/2
53080bb1 624
ce72e97c 625Now works with usethreads (see INSTALL).
53080bb1 626
627=item *
628
ce72e97c 629Solaris
53080bb1 630
ce72e97c 63164-bitness using the Sun Workshop compiler now works.
53080bb1 632
633=item *
634
ce72e97c 635Tru64 (aka Digital UNIX, aka DEC OSF/1)
636
637The operating system version letter now recorded in $Config{osvers}.
53080bb1 638Allow compiling with gcc (previously explicitly forbidden). Compiling
639with gcc still not recommended because buggy code results, even with
640gcc 2.95.2.
641
642=item *
643
ce72e97c 644Unicos
53080bb1 645
646Fixed various alignment problems that lead into core dumps either
ce72e97c 647during build or later; no longer dies on math errors at runtime;
648now using full quad integers (64 bits), previously was using
b84d4f81 649only 46 bit integers for speed.
53080bb1 650
53080bb1 651=item *
652
ce72e97c 653VMS
53080bb1 654
ce72e97c 655chdir() now works better despite a CRT bug; now works with MULTIPLICITY
656(see INSTALL); now works with Perl's malloc.
53080bb1 657
658=item *
659
ce72e97c 660Windows
53080bb1 661
ce72e97c 662=over 8
53080bb1 663
664=item *
665
d4ad863d 666accept() no longer leaks memory.
53080bb1 667
668=item *
669
670Better chdir() return value for a non-existent directory.
671
672=item *
673
674New %ENV entries now propagate to subprocesses.
675
676=item *
677
678$ENV{LIB} now used to search for libs under Visual C.
679
680=item *
681
682A failed (pseudo)fork now returns undef and sets errno to EAGAIN.
683
684=item *
685
686Allow REG_EXPAND_SZ keys in the registry.
687
688=item *
689
690Can now send() from all threads, not just the first one.
691
692=item *
693
694Fake signal handling reenabled, bugs and all.
695
696=item *
697
698Less stack reserved per thread so that more threads can run
0aa7271f 699concurrently. (Still 16M per thread.)
53080bb1 700
701=item *
702
703C<File::Spec->tmpdir()> now prefers C:/temp over /tmp
0aa7271f 704(works better when perl is running as service).
53080bb1 705
706=item *
707
708Better UNC path handling under ithreads.
709
710=item *
711
712wait() and waitpid() now work much better.
713
714=item *
715
716winsock handle leak fixed.
717
718=back
719
cc0fca54 720=head1 New or Changed Diagnostics
721
53080bb1 722All regular expression compilation error messages are now hopefully
723easier to understand both because the error message now comes before
724the failed regex and because the point of failure is now clearly
725marked.
726
727The various "opened only for", "on closed", "never opened" warnings
728drop the C<main::> prefix for filehandles in the C<main> package,
562628a3 729for example C<STDIN> instead of <main::STDIN>.
53080bb1 730
d4ad863d 731The "Unrecognized escape" warning has been extended to include C<\8>,
732C<\9>, and C<\_>. There is no need to escape any of the C<\w> characters.
53080bb1 733
53080bb1 734=head1 Changed Internals
735
ce72e97c 736=over 4
737
738=item *
53080bb1 739
d4ad863d 740perlapi.pod (a companion to perlguts) now attempts to document the
741internal API.
53080bb1 742
ce72e97c 743=item *
53080bb1 744
ce72e97c 745You can now build a really minimal perl called microperl.
d4ad863d 746Building microperl does not require even running Configure;
747C<make -f Makefile.micro> should be enough. Beware: microperl makes
748many assumptions, some of which may be too bold; the resulting
0aa7271f 749executable may crash or otherwise misbehave in wondrous ways.
750For careful hackers only.
53080bb1 751
ce72e97c 752=item *
53080bb1 753
43b92eec 754Added rsignal(), whichsig(), do_join() to the publicised API.
53080bb1 755
ce72e97c 756=item *
53080bb1 757
43b92eec 758Made possible to propagate customised exceptions via croak()ing.
53080bb1 759
ce72e97c 760=item *
53080bb1 761
762Added is_utf8_char(), is_utf8_string(), bytes_to_utf8(), and utf8_to_bytes().
763
ce72e97c 764=item *
53080bb1 765
766Now xsubs can have attributes just like subs.
767
ce72e97c 768=back
769
cc0fca54 770=head1 Known Problems
771
53080bb1 772=head2 Unicode Support Still Far From Perfect
773
774We're working on it. Stay tuned.
775
776=head2 EBCDIC Still A Lost Platform
777
778The plan is to bring them back.
779
780=head2 Building Extensions Can Fail Because Of Largefiles
781
782Certain extensions like mod_perl and BSD::Resource are known to have
ce72e97c 783issues with `largefiles', a change brought by Perl 5.6.0 in which file
4b2ec495 784offsets default to 64 bits wide, where supported. Modules may fail to
ce72e97c 785compile at all or compile and work incorrectly. Currently there is no
4b2ec495 786good solution for the problem, but Configure now provides appropriate
787non-largefile ccflags, ldflags, libswanted, and libs in the %Config
788hash (e.g., $Config{ccflags_nolargefiles}) so the extensions that are
789having problems can try configuring themselves without the
790largefileness. This is admittedly not a clean solution, and the
791solution may not even work at all. One potential failure is whether
792one can (or, if one can, whether it's a good idea) link together at
793all binaries with different ideas about file offsets, all this is
794platform-dependent.
53080bb1 795
9dc46381 796=head2 ftmp-security tests warn 'system possibly insecure'
797
798Don't panic. Read INSTALL 'make test' section instead.
799
446288b8 800=head2 Test lib/posix Subtest 9 Fails In LP64-Configured HP-UX
801
802If perl is configured with -Duse64bitall, the successful result of the
803subtest 10 of lib/posix may arrive before the successful result of the
804subtest 9, which confuses the test harness so much that it thinks the
805subtest 9 failed.
806
9dc46381 807=head2 Long Doubles Still Don't Work In Solaris
808
809The experimental long double support is still very much so in Solaris.
2ff7ee21 810(Other platforms like Linux and Tru64 are beginning to solidify in
811this area.)
d184b07b 812
1047c2b3 813=head2 Linux With Sfio Fails op/misc Test 48
814
815No known fix.
816
d184b07b 817=head2 Storable tests fail in some platforms
818
2ff7ee21 819If any Storable tests fail the use of Storable is not advisable.
820
d184b07b 821=over 4
822
823=item *
824
825Many Storable tests fail on AIX configured with 64 bit integers.
826
827So far unidentified problems break Storable in AIX if Perl is
828configured to use 64 bit integers. AIX in 32-bit mode works and
829other 64-bit platforms work with Storable.
830
831=item *
832
833DOS DJGPP may hang when testing Storable.
834
835=item *
836
837st-06compat fails in UNICOS and UNICOS/mk.
24e657a8 838
839This means that you cannot read old (pre-Storable-0.7) Storable images
840made in other platforms.
841
2ff7ee21 842=item *
843
844st-store.t and st-retrieve may fail with Compaq C 6.2 on OpenVMS Alpha 7.2.
845
33a87e58 846=head2 Threads Are Still Experimental
847
848Multithreading is still an experimental feature. Some platforms
849emit the following message for lib/thr5005
850
851 #
852 # This is a KNOWN FAILURE, and one of the reasons why threading
853 # is still an experimental feature. It is here to stop people
854 # from deploying threads in production. ;-)
855 #
856
0aa7271f 857and another known thread-related warning is
33a87e58 858
859 pragma/overload......Unbalanced saves: 3 more saves than restores
860 panic: magic_mutexfree during global destruction.
861 ok
862 lib/selfloader.......Unbalanced saves: 3 more saves than restores
863 panic: magic_mutexfree during global destruction.
864 ok
865 lib/st-dclone........Unbalanced saves: 3 more saves than restores
866 panic: magic_mutexfree during global destruction.
867 ok
868
869=head2 The Compiler Suite Is Still Experimental
870
0aa7271f 871The compiler suite is slowly getting better but is nowhere near
872working order yet. The backend part that has seen perhaps the most
873progress is the bytecode compiler.
33a87e58 874
d184b07b 875=back
876
cc0fca54 877=head1 Reporting Bugs
878
d4ad863d 879If you find what you think is a bug, you might check the articles
880recently posted to the comp.lang.perl.misc newsgroup and the perl
881bug database at http://bugs.perl.org. There may also be
882information at http://www.perl.com/perl/, the Perl Home Page.
cc0fca54 883
884If you believe you have an unreported bug, please run the B<perlbug>
885program included with your release. Be sure to trim your bug down
886to a tiny but sufficient test case. Your bug report, along with the
d4ad863d 887output of C<perl -V>, will be sent off to perlbug@perl.org to be
cc0fca54 888analysed by the Perl porting team.
889
890=head1 SEE ALSO
891
892The F<Changes> file for exhaustive details on what changed.
893
894The F<INSTALL> file for how to build Perl.
895
896The F<README> file for general stuff.
897
898The F<Artistic> and F<Copying> files for copyright information.
899
900=head1 HISTORY
901
53080bb1 902Written by Jarkko Hietaniemi <F<jhi@iki.fi>>, with many contributions
903from The Perl Porters and Perl Users submitting feedback and patches.
cc0fca54 904
d4ad863d 905Send omissions or corrections to <F<perlbug@perl.org>>.
cc0fca54 906
907=cut