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