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