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