eee8ceb35ae1736b8a6d14dabe4ca7d000217055
[p5sagit/p5-mst-13.2.git] / pod / perldelta.pod
1 =head1 NAME
2
3 perldelta - what's new for perl5.004
4
5 =head1 DESCRIPTION
6
7 This document describes differences between the 5.003 release (as
8 documented in I<Programming Perl>, second edition--the Camel Book) and
9 this one.
10
11 =head1 Supported Environments
12
13 Perl5.004 builds out of the box on Unix, Plan9, LynxOS, VMS, OS/2,
14 QNX, and AmigaOS.
15
16 =head1 Core Changes
17
18 Most importantly, many bugs were fixed.  See the F<Changes>
19 file in the distribution for details.
20
21 =head2 Compilation option: Binary compatibility with 5.003
22
23 There is a new Configure question that asks if you want to maintain
24 binary compatibility with Perl 5.003.  If you choose binary
25 compatibility, you do not have to recompile your extensions, but you
26 might have symbol conflicts if you embed Perl in another application,
27 just as in the 5.003 release.  By default, binary compatibility
28 is preserved at the expense of symbol table pollution.
29
30 =head2 $PERL5OPT environment variable
31
32 You may now put Perl options in the $PERL5OPT environment variable.
33 Unless Perl is running with taint checks, it will interpret this
34 variable as if its contents had appeared on a "#!perl" line at the
35 beginning of your script, except that hyphens are optional.  PERL5OPT
36 may only be used to set the following switches: B<-[DIMUdmw]>.
37
38 =head2 Limitations on B<-M>, and C<-m>, and B<-T> options
39
40 The C<-M> and C<-m> options are no longer allowed on the C<#!> line of
41 a script.  If a script needs a module, it should invoke it with the
42 C<use> pragma.
43
44 The B<-T> option is also forbidden on the C<#!> line of a script,
45 unless it was present on the Perl command line.  Due to the way C<#!>
46 works, this usually means that B<-T> must be in the first argument.
47 Thus:
48
49     #!/usr/bin/perl -T -w
50
51 will probably work for an executable script invoked as C<scriptname>,
52 while:
53
54     #!/usr/bin/perl -w -T
55
56 will probably fail under the same conditions.  (Non-Unix systems will
57 probably not follow this rule.)  But C<perl scriptname> is guaranteed
58 to fail, since then there is no chance of B<-T> being found on the
59 command line before it is found on the C<#!> line.
60
61 =head2 More precise warnings
62
63 If you removed the B<-w> option from your Perl 5.003 scripts because it
64 made Perl too verbose, we recommend that you try putting it back when
65 you upgrade to Perl 5.004.  Each new perl version tends to remove some
66 undesirable warnings, while adding new warnings that may catch bugs in
67 your scripts.
68
69 =head2 Deprecated: Inherited C<AUTOLOAD> for non-methods
70
71 Before Perl 5.004, C<AUTOLOAD> functions were looked up as methods
72 (using the C<@ISA> hierarchy), even when the function to be autoloaded
73 was called as a plain function (e.g. C<Foo::bar()>), not a method
74 (e.g. C<Foo->bar()> or C<$obj->bar()>).
75
76 Perl 5.005 will use method lookup only for methods' C<AUTOLOAD>s.
77 However, there is a significant base of existing code that may be using
78 the old behavior.  So, as an interim step, Perl 5.004 issues an optional
79 warning when a non-method uses an inherited C<AUTOLOAD>.
80
81 The simple rule is:  Inheritance will not work when autoloading
82 non-methods.  The simple fix for old code is:  In any module that used to
83 depend on inheriting C<AUTOLOAD> for non-methods from a base class named
84 C<BaseClass>, execute C<*AUTOLOAD = \&BaseClass::AUTOLOAD> during startup.
85
86 =head2 Subroutine arguments created only when they're modified
87
88 In Perl 5.004, nonexistent array and hash elements used as subroutine
89 parameters are brought into existence only if they are actually
90 assigned to (via C<@_>).
91
92 Earlier versions of Perl vary in their handling of such arguments.
93 Perl versions 5.002 and 5.003 always brought them into existence.
94 Perl versions 5.000, 5.001, and 5.002 brought them into existence only
95 if they were not the first argument (which was almost certainly a
96 bug).  Earlier versions of Perl never brought them into existence.
97
98 For example, given this code:
99
100      undef @a; undef %a;
101      sub show { print $_[0] };
102      sub change { $_[0]++ };
103      show($a[2]);
104      change($a{b});
105
106 After this code executes in Perl 5.004, $a{b} exists but $a[2] does
107 not.  In Perl 5.002 and 5.003, both $a{b} and $a[2] would have existed
108 (but $a[2]'s value would have been undefined).
109
110 =head2 Group vector changeable with C<$)>
111
112 The C<$)> special variable has always (well, in Perl 5, at least)
113 reflected not only the current effective group, but also the group list
114 as returned by the C<getgroups()> C function (if there is one).
115 However, until this release, there has not been a way to call the
116 C<setgroups()> C function from Perl.
117
118 In Perl 5.004, assigning to C<$)> is exactly symmetrical with examining
119 it: The first number in its string value is used as the effective gid;
120 if there are any numbers after the first one, they are passed to the
121 C<setgroups()> C function (if there is one).
122
123 =head2 Fixed parsing of $$<digit>, &$<digit>, etc.
124
125 Perl versions before 5.004 misinterpreted any type marker followed by
126 "$" and a digit.  For example, "$$0" was incorrectly taken to mean
127 "${$}0" instead of "${$0}".  This bug is (mostly) fixed in Perl 5.004.
128
129 However, the developers of Perl 5.004 could not fix this bug completely,
130 because at least two widely-used modules depend on the old meaning of
131 "$$0" in a string.  So Perl 5.004 still interprets "$$<digit>" in the
132 old (broken) way inside strings; but it generates this message as a
133 warning.  And in Perl 5.005, this special treatment will cease.
134
135 =head2 No resetting of $. on implicit close
136
137 The documentation for Perl 5.0 has always stated that C<$.> is I<not>
138 reset when an already-open file handle is reopened with no intervening
139 call to C<close>.  Due to a bug, perl versions 5.000 through 5.003
140 I<did> reset C<$.> under that circumstance; Perl 5.004 does not.
141
142 =head2 C<wantarray> may return undef
143
144 The C<wantarray> operator returns true if a subroutine is expected to
145 return a list, and false otherwise.  In Perl 5.004, C<wantarray> can
146 also return the undefined value if a subroutine's return value will
147 not be used at all, which allows subroutines to avoid a time-consuming
148 calculation of a return value if it isn't going to be used.
149
150 =head2 Changes to tainting checks
151
152 A bug in previous versions may have failed to detect some insecure
153 conditions when taint checks are turned on.  (Taint checks are used
154 in setuid or setgid scripts, or when explicitly turned on with the
155 C<-T> invocation option.)  Although it's unlikely, this may cause a
156 previously-working script to now fail -- which should be construed
157 as a blessing, since that indicates a potentially-serious security
158 hole was just plugged.
159
160 =head2 New Opcode module and revised Safe module
161
162 A new Opcode module supports the creation, manipulation and
163 application of opcode masks.  The revised Safe module has a new API
164 and is implemented using the new Opcode module.  Please read the new
165 Opcode and Safe documentation.
166
167 =head2 Embedding improvements
168
169 In older versions of Perl it was not possible to create more than one
170 Perl interpreter instance inside a single process without leaking like a
171 sieve and/or crashing.  The bugs that caused this behavior have all been
172 fixed.  However, you still must take care when embedding Perl in a C
173 program.  See the updated perlembed manpage for tips on how to manage
174 your interpreters.
175
176 =head2 Internal change: FileHandle class based on IO::* classes
177
178 File handles are now stored internally as type IO::Handle.  The
179 FileHandle module is still supported for backwards compatibility, but
180 it is now merely a front end to the IO::* modules -- specifically,
181 IO::Handle, IO::Seekable, and IO::File.  We suggest, but do not
182 require, that you use the IO::* modules in new code.
183
184 In harmony with this change, C<*GLOB{FILEHANDLE}> is now a
185 backward-compatible synonym for C<*STDOUT{IO}>.
186
187 =head2 Internal change: PerlIO abstraction interface
188
189 It is now possible to build Perl with AT&T's sfio IO package
190 instead of stdio.  See L<perlapio> for more details, and
191 the F<INSTALL> file for how to use it.
192
193 =head2 New and changed builtin variables
194
195 =over
196
197 =item $^E
198
199 Extended error message on some platforms.  (Also known as
200 $EXTENDED_OS_ERROR if you C<use English>).
201
202 =item $^H
203
204 The current set of syntax checks enabled by C<use strict>.  See the
205 documentation of C<strict> for more details.  Not actually new, but
206 newly documented.
207 Because it is intended for internal use by Perl core components,
208 there is no C<use English> long name for this variable.
209
210 =item $^M
211
212 By default, running out of memory it is not trappable.  However, if
213 compiled for this, Perl may use the contents of C<$^M> as an emergency
214 pool after die()ing with this message.  Suppose that your Perl were
215 compiled with -DEMERGENCY_SBRK and used Perl's malloc.  Then
216
217     $^M = 'a' x (1<<16);
218
219 would allocate a 64K buffer for use when in emergency.
220 See the F<INSTALL> file for information on how to enable this option.
221 As a disincentive to casual use of this advanced feature,
222 there is no C<use English> long name for this variable.
223
224 =back
225
226 =head2 New and changed builtin functions
227
228 =over
229
230 =item delete on slices
231
232 This now works.  (e.g. C<delete @ENV{'PATH', 'MANPATH'}>)
233
234 =item flock
235
236 is now supported on more platforms, prefers fcntl to lockf when
237 emulating, and always flushes before (un)locking.
238
239 =item printf and sprintf
240
241 now support "%i" as a synonym for "%d", and the "h" modifier.
242 So "%hi" means "short integer in decimal", and "%ho" means
243 "unsigned short integer as octal".
244
245 =item keys as an lvalue
246
247 As an lvalue, C<keys> allows you to increase the number of hash buckets
248 allocated for the given hash.  This can gain you a measure of efficiency if
249 you know the hash is going to get big.  (This is similar to pre-extending
250 an array by assigning a larger number to $#array.)  If you say
251
252     keys %hash = 200;
253
254 then C<%hash> will have at least 200 buckets allocated for it.  These
255 buckets will be retained even if you do C<%hash = ()>; use C<undef
256 %hash> if you want to free the storage while C<%hash> is still in scope.
257 You can't shrink the number of buckets allocated for the hash using
258 C<keys> in this way (but you needn't worry about doing this by accident,
259 as trying has no effect).
260
261 =item my() in Control Structures
262
263 You can now use my() (with or without the parentheses) in the control
264 expressions of control structures such as:
265
266     while (defined(my $line = <>)) {
267         $line = lc $line;
268     } continue {
269         print $line;
270     }
271
272     if ((my $answer = <STDIN>) =~ /^y(es)?$/i) {
273         user_agrees();
274     } elsif ($answer =~ /^n(o)?$/i) {
275         user_disagrees();
276     } else {
277         chomp $answer;
278         die "`$answer' is neither `yes' nor `no'";
279     }
280
281 Also, you can declare a foreach loop control variable as lexical by
282 preceding it with the word "my".  For example, in:
283
284     foreach my $i (1, 2, 3) {
285         some_function();
286     }
287
288 $i is a lexical variable, and the scope of $i extends to the end of
289 the loop, but not beyond it.
290
291 Note that you still cannot use my() on global punctuation variables
292 such as $_ and the like.
293
294 =item pack() and unpack()
295
296 A new format 'w' represents a BER compressed integer (as defined in
297 ASN.1).  Its format is a sequence of one or more bytes, each of which
298 provides seven bits of the total value, with the most significant
299 first.  Bit eight of each byte is set, except for the last byte, in
300 which bit eight is clear.
301
302 Previous to Perl 5.004, both pack() and unpack() would ignore any
303 unknown type characters in the template string. Now a fatal error will
304 be generated.
305
306 =item sysseek() and systell()
307
308 These are new.  The sysseek() operator is a variant of seek() that works
309 on the system file pointer.  It is the only reliable way to seek before
310 using sysread() or syswrite().  Its companion operator systell() reports
311 the current position of the system file pointer.
312
313 =item use VERSION
314
315 If the first argument to C<use> is a number, it is treated as a version
316 number instead of a module name.  If the version of the Perl interpreter
317 is less than VERSION, then an error message is printed and Perl exits
318 immediately.  Because C<use> occurs at compile time, this check happens
319 immediately during the compilation process, unlike C<require VERSION>,
320 which waits until runtime for the check.  This is often useful if you
321 need to check the current Perl version before C<use>ing library modules
322 which have changed in incompatible ways from older versions of Perl.
323 (We try not to do this more than we have to.)
324
325 =item use Module VERSION LIST
326
327 If the VERSION argument is present between Module and LIST, then the
328 C<use> will call the VERSION method in class Module with the given
329 version as an argument.  The default VERSION method, inherited from
330 the UNIVERSAL class, croaks if the given version is larger than the
331 value of the variable $Module::VERSION.  (Note that there is not a
332 comma after VERSION!)
333
334 This version-checking mechanism is similar to the one currently used
335 in the Exporter module, but it is faster and can be used with modules
336 that don't use the Exporter.  It is the recommended method for new
337 code.
338
339 =item prototype(FUNCTION)
340
341 Returns the prototype of a function as a string (or C<undef> if the
342 function has no prototype).  FUNCTION is a reference to or the name of the
343 function whose prototype you want to retrieve.
344 (Not actually new; just never documented before.)
345
346 =item srand
347
348 The default seed for C<srand>, which used to be C<time>, has been changed.
349 Now it's a heady mix of difficult-to-predict system-dependent values,
350 which should be sufficient for most everyday purposes.
351
352 Previous to version 5.004, calling C<rand> without first calling C<srand>
353 would yield the same sequence of random numbers on most or all machines.
354 Now, when perl sees that you're calling C<rand> and haven't yet called
355 C<srand>, it calls C<srand> with the default seed. You should still call
356 C<srand> manually if your code might ever be run on a pre-5.004 system,
357 of course, or if you want a seed other than the default.
358
359 =item $_ as Default
360
361 Functions documented in the Camel to default to $_ now in
362 fact do, and all those that do are so documented in L<perlfunc>.
363
364 =item C<m//g> does not reset search position on failure
365
366 The C<m//g> match iteration construct used to reset its target string's
367 search position (which is visible through the C<pos> operator) when a
368 match failed; as a result, the next C<m//g> match would start at the
369 beginning of the string).  With Perl 5.004, the search position must be
370 reset explicitly, as with C<pos $str = 0;>, or by modifying the target
371 string.  This change in Perl makes it possible to chain matches together
372 in conjunction with the C<\G> zero-width assertion.  See L<perlop> and
373 L<perlre>.
374
375 Here is an illustration of what it takes to get the old behavior:
376
377     for ( qw(this and that are not what you think you got) ) {
378         while ( /(\w*t\w*)/g ) { print "t word is: $1\n" }
379         pos = 0;  # REQUIRED FOR 5.004
380         while ( /(\w*a\w*)/g ) { print "a word is: $1\n" }
381         print "\n";
382     }
383
384 =item C<m//x> ignores whitespace before ?*+{}
385
386 The C<m//x> construct has always been intended to ignore all unescaped
387 whitespace.  However, before Perl 5.004, whitespace had the effect of
388 escaping repeat modifiers like "*" or "?"; for example, C</a *b/x> was
389 (mis)interpreted as C</a\*b/x>.  This bug has been fixed in 5.004.
390
391 =item nested C<sub{}> closures work now
392
393 Prior to the 5.004 release, nested anonymous functions didn't work
394 right.  They do now.
395
396 =item formats work right on changing lexicals
397
398 Just like anonymous functions that contain lexical variables
399 that change (like a lexical index variable for a C<foreach> loop),
400 formats now work properly.  For example, this silently failed
401 before, and is fine now:
402
403     my $i;
404     foreach $i ( 1 .. 10 ) {
405         format =
406         my i is @#
407         $i
408     .
409         write;
410     }
411
412 =back
413
414 =head2 New builtin methods
415
416 The C<UNIVERSAL> package automatically contains the following methods that
417 are inherited by all other classes:
418
419 =over
420
421 =item isa(CLASS)
422
423 C<isa> returns I<true> if its object is blessed into a subclass of C<CLASS>
424
425 C<isa> is also exportable and can be called as a sub with two arguments. This
426 allows the ability to check what a reference points to. Example:
427
428     use UNIVERSAL qw(isa);
429
430     if(isa($ref, 'ARRAY')) {
431        ...
432     }
433
434 =item can(METHOD)
435
436 C<can> checks to see if its object has a method called C<METHOD>,
437 if it does then a reference to the sub is returned; if it does not then
438 I<undef> is returned.
439
440 =item VERSION( [NEED] )
441
442 C<VERSION> returns the version number of the class (package).  If the
443 NEED argument is given then it will check that the current version (as
444 defined by the $VERSION variable in the given package) not less than
445 NEED; it will die if this is not the case.  This method is normally
446 called as a class method.  This method is called automatically by the
447 C<VERSION> form of C<use>.
448
449     use A 1.2 qw(some imported subs);
450     # implies:
451     A->VERSION(1.2);
452
453 =back
454
455 B<NOTE:> C<can> directly uses Perl's internal code for method lookup, and
456 C<isa> uses a very similar method and caching strategy. This may cause
457 strange effects if the Perl code dynamically changes @ISA in any package.
458
459 You may add other methods to the UNIVERSAL class via Perl or XS code.
460 You do not need to C<use UNIVERSAL> in order to make these methods
461 available to your program.  This is necessary only if you wish to
462 have C<isa> available as a plain subroutine in the current package.
463
464 =head2 TIEHANDLE now supported
465
466 See L<perltie> for other kinds of tie()s.
467
468 =over
469
470 =item TIEHANDLE classname, LIST
471
472 This is the constructor for the class.  That means it is expected to
473 return an object of some sort. The reference can be used to
474 hold some internal information.
475
476     sub TIEHANDLE {
477         print "<shout>\n";
478         my $i;
479         return bless \$i, shift;
480     }
481
482 =item PRINT this, LIST
483
484 This method will be triggered every time the tied handle is printed to.
485 Beyond its self reference it also expects the list that was passed to
486 the print function.
487
488     sub PRINT {
489         $r = shift;
490         $$r++;
491         return print join( $, => map {uc} @_), $\;
492     }
493
494 =item READ this LIST
495
496 This method will be called when the handle is read from via the C<read>
497 or C<sysread> functions.
498
499     sub READ {
500         $r = shift;
501         my($buf,$len,$offset) = @_;
502         print "READ called, \$buf=$buf, \$len=$len, \$offset=$offset";
503     }
504
505 =item READLINE this
506
507 This method will be called when the handle is read from. The method
508 should return undef when there is no more data.
509
510     sub READLINE {
511         $r = shift;
512         return "PRINT called $$r times\n"
513     }
514
515 =item GETC this
516
517 This method will be called when the C<getc> function is called.
518
519     sub GETC { print "Don't GETC, Get Perl"; return "a"; }
520
521 =item DESTROY this
522
523 As with the other types of ties, this method will be called when the
524 tied handle is about to be destroyed. This is useful for debugging and
525 possibly for cleaning up.
526
527     sub DESTROY {
528         print "</shout>\n";
529     }
530
531 =back
532
533 =head2 Malloc enhancements
534
535 Four new compilation flags are recognized by malloc.c.  (They have no
536 effect if perl is compiled with system malloc().)
537
538 =over
539
540 =item -DDEBUGGING_MSTATS
541
542 If perl is compiled with C<DEBUGGING_MSTATS> defined, you can print
543 memory statistics at runtime by running Perl thusly:
544
545   env PERL_DEBUG_MSTATS=2 perl your_script_here
546
547 The value of 2 means to print statistics after compilation and on
548 exit; with a value of 1, the statistics ares printed only on exit.
549 (If you want the statistics at an arbitrary time, you'll need to
550 install the optional module Devel::Peek.)
551
552 =item -DEMERGENCY_SBRK
553
554 If this macro is defined, running out of memory need not be a fatal
555 error: a memory pool can allocated by assigning to the special
556 variable C<$^M>.  See L<"$^M">.
557
558 =item -DPACK_MALLOC
559
560 Perl memory allocation is by bucket with sizes close to powers of two.
561 Because of these malloc overhead may be big, especially for data of
562 size exactly a power of two.  If C<PACK_MALLOC> is defined, perl uses
563 a slightly different algorithm for small allocations (up to 64 bytes
564 long), which makes it possible to have overhead down to 1 byte for
565 allocations which are powers of two (and appear quite often).
566
567 Expected memory savings (with 8-byte alignment in C<alignbytes>) is
568 about 20% for typical Perl usage.  Expected slowdown due to additional
569 malloc overhead is in fractions of a percent (hard to measure, because
570 of the effect of saved memory on speed).
571
572 =item -DTWO_POT_OPTIMIZE
573
574 Similarly to C<PACK_MALLOC>, this macro improves allocations of data
575 with size close to a power of two; but this works for big allocations
576 (starting with 16K by default).  Such allocations are typical for big
577 hashes and special-purpose scripts, especially image processing.
578
579 On recent systems, the fact that perl requires 2M from system for 1M
580 allocation will not affect speed of execution, since the tail of such
581 a chunk is not going to be touched (and thus will not require real
582 memory).  However, it may result in a premature out-of-memory error.
583 So if you will be manipulating very large blocks with sizes close to
584 powers of two, it would be wise to define this macro.
585
586 Expected saving of memory is 0-100% (100% in applications which
587 require most memory in such 2**n chunks); expected slowdown is
588 negligible.
589
590 =back
591
592 =head2 Miscellaneous efficiency enhancements
593
594 Functions that have an empty prototype and that do nothing but return
595 a fixed value are now inlined (e.g. C<sub PI () { 3.14159 }>).
596
597 Each unique hash key is only allocated once, no matter how many hashes
598 have an entry with that key.  So even if you have 100 copies of the
599 same hash, the hash keys never have to be reallocated.
600
601 =head1 Pragmata
602
603 Six new pragmatic modules exist:
604
605 =over
606
607 =item use autouse MODULE => qw(sub1 sub2 sub3)
608
609 Defers C<require MODULE> until someone calls one of the specified
610 subroutines (which must be exported by MODULE).  This pragma should be
611 used with caution, and only when necessary.
612
613 =item use blib
614
615 =item use blib 'dir'
616
617 Looks for MakeMaker-like I<'blib'> directory structure starting in
618 I<dir> (or current directory) and working back up to five levels of
619 parent directories.
620
621 Intended for use on command line with B<-M> option as a way of testing
622 arbitrary scripts against an uninstalled version of a package.
623
624 =item use constant NAME => VALUE
625
626 Provides a convenient interface for creating compile-time constants,
627 See L<perlsub/"Constant Functions">.
628
629 =item use locale
630
631 Tells the compiler to enable (or disable) the use of POSIX locales for
632 builtin operations.
633
634 When C<use locale> is in effect, the current LC_CTYPE locale is used
635 for regular expressions and case mapping; LC_COLLATE for string
636 ordering; and LC_NUMERIC for numeric formating in printf and sprintf
637 (but B<not> in print).  LC_NUMERIC is always used in write, since
638 lexical scoping of formats is problematic at best.
639
640 Each C<use locale> or C<no locale> affects statements to the end of
641 the enclosing BLOCK or, if not inside a BLOCK, to the end of the
642 current file.  Locales can be switched and queried with
643 POSIX::setlocale().
644
645 See L<perllocale> for more information.
646
647 =item use ops
648
649 Disable unsafe opcodes, or any named opcodes, when compiling Perl code.
650
651 =item use vmsish
652
653 Enable VMS-specific language features.  Currently, there are three
654 VMS-specific features available: 'status', which makes C<$?> and
655 C<system> return genuine VMS status values instead of emulating POSIX;
656 'exit', which makes C<exit> take a genuine VMS status value instead of
657 assuming that C<exit 1> is an error; and 'time', which makes all times
658 relative to the local time zone, in the VMS tradition.
659
660 =back
661
662 =head1 Modules
663
664 =head2 Required Updates
665
666 Though Perl 5.004 is compatible with almost all modules that work
667 with Perl 5.003, there are a few exceptions:
668
669     Module   Required Version for Perl 5.004
670     ------   -------------------------------
671     Filter   Filter-1.12
672     LWP      libwww-perl-5.08
673     Tk       Tk400.202 (-w makes noise)
674
675 Also, the majordomo mailing list program, version 1.94.1, doesn't work
676 with Perl 5.004 (nor with perl 4), because it executes an invalid
677 regular expression.  This bug is fixed in majordomo version 1.94.2.
678
679 =head2 Installation directories
680
681 The I<installperl> script now places the Perl source files for
682 extensions in the architecture-specific library directory, which is
683 where the shared libraries for extensions have always been.  This
684 change is intended to allow administrators to keep the Perl 5.004
685 library directory unchanged from a previous version, without running
686 the risk of binary incompatibility between extensions' Perl source and
687 shared libraries.
688
689 =head2 Module information summary
690
691 Brand new modules, arranged by topic rather than strictly
692 alphabetically:
693
694     CGI.pm               Web server interface ("Common Gateway Interface")
695     CGI/Apache.pm        Support for Apache's Perl module
696     CGI/Carp.pm          Log server errors with helpful context
697     CGI/Fast.pm          Support for FastCGI (persistent server process)
698     CGI/Push.pm          Support for server push
699     CGI/Switch.pm        Simple interface for multiple server types
700
701     CPAN                 Interface to Comprehensive Perl Archive Network
702     CPAN::FirstTime      Utility for creating CPAN configuration file
703     CPAN::Nox            Runs CPAN while avoiding compiled extensions
704
705     IO.pm                Top-level interface to IO::* classes
706     IO/File.pm           IO::File extension Perl module
707     IO/Handle.pm         IO::Handle extension Perl module
708     IO/Pipe.pm           IO::Pipe extension Perl module
709     IO/Seekable.pm       IO::Seekable extension Perl module
710     IO/Select.pm         IO::Select extension Perl module
711     IO/Socket.pm         IO::Socket extension Perl module
712
713     Opcode.pm            Disable named opcodes when compiling Perl code
714
715     ExtUtils/Embed.pm    Utilities for embedding Perl in C programs
716     ExtUtils/testlib.pm  Fixes up @INC to use just-built extension
717
718     FindBin.pm           Find path of currently executing program
719
720     Class/Struct.pm      Declare struct-like datatypes as Perl classes
721     File/stat.pm         By-name interface to Perl's built-in stat
722     Net/hostent.pm       By-name interface to Perl's built-in gethost*
723     Net/netent.pm        By-name interface to Perl's built-in getnet*
724     Net/protoent.pm      By-name interface to Perl's built-in getproto*
725     Net/servent.pm       By-name interface to Perl's built-in getserv*
726     Time/gmtime.pm       By-name interface to Perl's built-in gmtime
727     Time/localtime.pm    By-name interface to Perl's built-in localtime
728     Time/tm.pm           Internal object for Time::{gm,local}time
729     User/grent.pm        By-name interface to Perl's built-in getgr*
730     User/pwent.pm        By-name interface to Perl's built-in getpw*
731
732     Tie/RefHash.pm       Base class for tied hashes with references as keys
733
734     UNIVERSAL.pm         Base class for *ALL* classes
735
736 =head2 Fcntl
737
738 New constants in the existing Fcntl modules are now supported,
739 provided that your operating system happens to support them:
740
741     F_GETOWN F_SETOWN
742     O_ASYNC O_DEFER O_DSYNC O_FSYNC O_SYNC
743     O_EXLOCK O_SHLOCK
744
745 These constants are intended for use with the Perl operators sysopen()
746 and fcntl() and the basic database modules like SDBM_File.  For the
747 exact meaning of these and other Fcntl constants please refer to your
748 operating system's documentation for fcntl() and open().
749
750 In addition, the Fcntl module now provides these constants for use
751 with the Perl operator flock():
752
753         LOCK_SH LOCK_EX LOCK_NB LOCK_UN
754
755 These constants are defined in all environments (because where there is
756 no flock() system call, Perl emulates it).  However, for historical
757 reasons, these constants are not exported unless they are explicitly
758 requested with the ":flock" tag (e.g. C<use Fcntl ':flock'>).
759
760 =head2 IO
761
762 The IO module provides a simple mechanism to load all of the IO modules at one
763 go.  Currently this includes:
764
765      IO::Handle
766      IO::Seekable
767      IO::File
768      IO::Pipe
769      IO::Socket
770
771 For more information on any of these modules, please see its
772 respective documentation.
773
774 =head2 Math::Complex
775
776 The Math::Complex module has been totally rewritten, and now supports
777 more operations.  These are overloaded:
778
779      + - * / ** <=> neg ~ abs sqrt exp log sin cos atan2 "" (stringify)
780
781 And these functions are now exported:
782
783     pi i Re Im arg
784     log10 logn ln cbrt root
785     tan
786     csc sec cot
787     asin acos atan
788     acsc asec acot
789     sinh cosh tanh
790     csch sech coth
791     asinh acosh atanh
792     acsch asech acoth
793     cplx cplxe
794
795 =head2 Math::Trig
796
797 This new module provides a simpler interface to parts of Math::Complex for
798 those who need trigonometric functions only for real numbers.
799
800 =head2 DB_File
801
802 There have been quite a few changes made to DB_File. Here are a few of
803 the highlights:
804
805 =over
806
807 =item *
808
809 Fixed a handful of bugs.
810
811 =item *
812
813 By public demand, added support for the standard hash function exists().
814
815 =item *
816
817 Made it compatible with Berkeley DB 1.86.
818
819 =item *
820
821 Made negative subscripts work with RECNO interface.
822
823 =item *
824
825 Changed the default flags from O_RDWR to O_CREAT|O_RDWR and the default
826 mode from 0640 to 0666.
827
828 =item *
829
830 Made DB_File automatically import the open() constants (O_RDWR,
831 O_CREAT etc.) from Fcntl, if available.
832
833 =item *
834
835 Updated documentation.
836
837 =back
838
839 Refer to the HISTORY section in DB_File.pm for a complete list of
840 changes. Everything after DB_File 1.01 has been added since 5.003.
841
842 =head2 Net::Ping
843
844 Major rewrite - support added for both udp echo and real icmp pings.
845
846 =head2 Object-oriented overrides for builtin operators
847
848 Many of the Perl builtins returning lists now have
849 object-oriented overrides.  These are:
850
851     File::stat
852     Net::hostent
853     Net::netent
854     Net::protoent
855     Net::servent
856     Time::gmtime
857     Time::localtime
858     User::grent
859     User::pwent
860
861 For example, you can now say
862
863     use File::stat;
864     use User::pwent;
865     $his = (stat($filename)->st_uid == pwent($whoever)->pw_uid);
866
867 =head1 Utility Changes
868
869 =head2 xsubpp
870
871 =over
872
873 =item C<void> XSUBs now default to returning nothing
874
875 Due to a documentation/implementation bug in previous versions of
876 Perl, XSUBs with a return type of C<void> have actually been
877 returning one value.  Usually that value was the GV for the XSUB,
878 but sometimes it was some already freed or reused value, which would
879 sometimes lead to program failure.
880
881 In Perl 5.004, if an XSUB is declared as returning C<void>, it
882 actually returns no value, i.e. an empty list (though there is a
883 backward-compatibility exception; see below).  If your XSUB really
884 does return an SV, you should give it a return type of C<SV *>.
885
886 For backward compatibility, I<xsubpp> tries to guess whether a
887 C<void> XSUB is really C<void> or if it wants to return an C<SV *>.
888 It does so by examining the text of the XSUB: if I<xsubpp> finds
889 what looks like an assignment to C<ST(0)>, it assumes that the
890 XSUB's return type is really C<SV *>.
891
892 =back
893
894 =head1 C Language API Changes
895
896 =over
897
898 =item C<gv_fetchmethod> and C<perl_call_sv>
899
900 The C<gv_fetchmethod> function finds a method for an object, just like
901 in Perl 5.003.  The GV it returns may be a method cache entry.
902 However, in Perl 5.004, method cache entries are not visible to users;
903 therefore, they can no longer be passed directly to C<perl_call_sv>.
904 Instead, you should use the C<GvCV> macro on the GV to extract its CV,
905 and pass the CV to C<perl_call_sv>.
906
907 The most likely symptom of passing the result of C<gv_fetchmethod> to
908 C<perl_call_sv> is Perl's producing an "Undefined subroutine called"
909 error on the I<second> call to a given method (since there is no cache
910 on the first call).
911
912 =item C<perl_eval_pv>
913
914 A new function handy for eval'ing strings of Perl code inside C code. 
915 This function returns the value from the eval statement, which can
916 be used instead of fetching globals from the symbol table.  See
917 L<perlguts>, L<perlembed> and L<perlcall> for details and examples.
918
919 =item Extended API for manipulating hashes
920
921 Internal handling of hash keys has changed.  The old hashtable API is
922 still fully supported, and will likely remain so.  The additions to the
923 API allow passing keys as C<SV*>s, so that C<tied> hashes can be given
924 real scalars as keys rather than plain strings (nontied hashes still
925 can only use strings as keys).  New extensions must use the new hash
926 access functions and macros if they wish to use C<SV*> keys.  These
927 additions also make it feasible to manipulate C<HE*>s (hash entries),
928 which can be more efficient.  See L<perlguts> for details.
929
930 =back
931
932 =head1 Documentation Changes
933
934 Many of the base and library pods were updated.  These
935 new pods are included in section 1:
936
937 =over
938
939 =item L<perldelta>
940
941 This document.
942
943 =item L<perllocale>
944
945 Locale support (internationalization and localization).
946
947 =item L<perltoot>
948
949 Tutorial on Perl OO programming.
950
951 =item L<perlapio>
952
953 Perl internal IO abstraction interface.
954
955 =item L<perldebug>
956
957 Although not new, this has been massively updated.
958
959 =item L<perlsec>
960
961 Although not new, this has been massively updated.
962
963 =back
964
965 =head1 New Diagnostics
966
967 Several new conditions will trigger warnings that were
968 silent before.  Some only affect certain platforms.
969 The following new warnings and errors outline these.
970 These messages are classified as follows (listed in
971 increasing order of desperation):
972
973    (W) A warning (optional).
974    (D) A deprecation (optional).
975    (S) A severe warning (mandatory).
976    (F) A fatal error (trappable).
977    (P) An internal error you should never see (trappable).
978    (X) A very fatal error (nontrappable).
979    (A) An alien error message (not generated by Perl).
980
981 =over
982
983 =item "my" variable %s masks earlier declaration in same scope
984
985 (S) A lexical variable has been redeclared in the same scope, effectively
986 eliminating all access to the previous instance.  This is almost always
987 a typographical error.  Note that the earlier variable will still exist
988 until the end of the scope or until all closure referents to it are
989 destroyed.
990
991 =item %s argument is not a HASH element or slice
992
993 (F) The argument to delete() must be either a hash element, such as
994
995     $foo{$bar}
996     $ref->[12]->{"susie"}
997
998 or a hash slice, such as
999
1000     @foo{$bar, $baz, $xyzzy}
1001     @{$ref->[12]}{"susie", "queue"}
1002
1003 =item Allocation too large: %lx
1004
1005 (X) You can't allocate more than 64K on an MS-DOS machine.
1006
1007 =item Allocation too large
1008
1009 (F) You can't allocate more than 2^31+"small amount" bytes.
1010
1011 =item Applying %s to %s will act on scalar(%s)
1012
1013 (W) The pattern match (//), substitution (s///), and translation (tr///)
1014 operators work on scalar values.  If you apply one of them to an array
1015 or a hash, it will convert the array or hash to a scalar value -- the
1016 length of an array, or the population info of a hash -- and then work on
1017 that scalar value.  This is probably not what you meant to do.  See
1018 L<perlfunc/grep> and L<perlfunc/map> for alternatives.
1019
1020 =item Attempt to free nonexistent shared string
1021
1022 (P) Perl maintains a reference counted internal table of strings to
1023 optimize the storage and access of hash keys and other strings.  This
1024 indicates someone tried to decrement the reference count of a string
1025 that can no longer be found in the table.
1026
1027 =item Attempt to use reference as lvalue in substr
1028
1029 (W) You supplied a reference as the first argument to substr() used
1030 as an lvalue, which is pretty strange.  Perhaps you forgot to
1031 dereference it first.  See L<perlfunc/substr>.
1032
1033 =item Can't use bareword ("%s") as %s ref while "strict refs" in use
1034
1035 (F) Only hard references are allowed by "strict refs".  Symbolic references
1036 are disallowed.  See L<perlref>.
1037
1038 =item Cannot resolve method `%s' overloading `%s' in package `%s'
1039
1040 (P) Internal error trying to resolve overloading specified by a method
1041 name (as opposed to a subroutine reference).
1042
1043 =item Constant subroutine %s redefined
1044
1045 (S) You redefined a subroutine which had previously been eligible for
1046 inlining.  See L<perlsub/"Constant Functions"> for commentary and
1047 workarounds.
1048
1049 =item Constant subroutine %s undefined
1050
1051 (S) You undefined a subroutine which had previously been eligible for
1052 inlining.  See L<perlsub/"Constant Functions"> for commentary and
1053 workarounds.
1054
1055 =item Copy method did not return a reference
1056
1057 (F) The method which overloads "=" is buggy. See L<overload/Copy Constructor>.
1058
1059 =item Died
1060
1061 (F) You passed die() an empty string (the equivalent of C<die "">) or
1062 you called it with no args and both C<$@> and C<$_> were empty.
1063
1064 =item Exiting pseudo-block via %s
1065
1066 (W) You are exiting a rather special block construct (like a sort block or
1067 subroutine) by unconventional means, such as a goto, or a loop control
1068 statement.  See L<perlfunc/sort>.
1069
1070 =item Illegal character %s (carriage return)
1071
1072 (F) A carriage return character was found in the input.  This is an
1073 error, and not a warning, because carriage return characters can break
1074 multi-line strings, including here documents (e.g., C<print E<lt>E<lt>EOF;>).
1075
1076 =item Illegal switch in PERL5OPT: %s
1077
1078 (X) The PERL5OPT environment variable may only be used to set the
1079 following switches: B<-[DIMUdmw]>.
1080
1081 =item Integer overflow in hex number
1082
1083 (S) The literal hex number you have specified is too big for your
1084 architecture. On a 32-bit architecture the largest hex literal is
1085 0xFFFFFFFF.
1086
1087 =item Integer overflow in octal number
1088
1089 (S) The literal octal number you have specified is too big for your
1090 architecture. On a 32-bit architecture the largest octal literal is
1091 037777777777.
1092
1093 =item internal error: glob failed
1094
1095 (P) Something went wrong with the external program(s) used for C<glob>
1096 and C<E<lt>*.cE<gt>>.  This may mean that your csh (C shell) is
1097 broken.  If so, you should change all of the csh-related variables in
1098 config.sh:  If you have tcsh, make the variables refer to it as if it
1099 were csh (e.g. C<full_csh='/usr/bin/tcsh'>); otherwise, make them all
1100 empty (except that C<d_csh> should be C<'undef'>) so that Perl will
1101 think csh is missing.  In either case, after editing config.sh, run
1102 C<./Configure -S> and rebuild Perl.
1103
1104 =item Invalid type in pack: '%s'
1105  
1106 (F) The given character is not a valid pack type.  See L<perlfunc/pack>.
1107  
1108 =item Invalid type in unpack: '%s'
1109  
1110 (F) The given character is not a valid unpack type.  See L<perlfunc/unpack>.
1111
1112 =item Name "%s::%s" used only once: possible typo
1113
1114 (W) Typographical errors often show up as unique variable names.
1115 If you had a good reason for having a unique name, then just mention
1116 it again somehow to suppress the message (the C<use vars> pragma is
1117 provided for just this purpose).
1118
1119 =item Null picture in formline
1120
1121 (F) The first argument to formline must be a valid format picture
1122 specification.  It was found to be empty, which probably means you
1123 supplied it an uninitialized value.  See L<perlform>.
1124
1125 =item Offset outside string
1126
1127 (F) You tried to do a read/write/send/recv operation with an offset
1128 pointing outside the buffer.  This is difficult to imagine.
1129 The sole exception to this is that C<sysread()>ing past the buffer
1130 will extend the buffer and zero pad the new area.
1131
1132 =item Out of memory!
1133
1134 (X|F) The malloc() function returned 0, indicating there was insufficient
1135 remaining memory (or virtual memory) to satisfy the request.
1136
1137 The request was judged to be small, so the possibility to trap it
1138 depends on the way Perl was compiled.  By default it is not trappable.
1139 However, if compiled for this, Perl may use the contents of C<$^M> as
1140 an emergency pool after die()ing with this message.  In this case the
1141 error is trappable I<once>.
1142
1143 =item Out of memory during request for %s
1144
1145 (F) The malloc() function returned 0, indicating there was insufficient
1146 remaining memory (or virtual memory) to satisfy the request. However,
1147 the request was judged large enough (compile-time default is 64K), so
1148 a possibility to shut down by trapping this error is granted.
1149
1150 =item Possible attempt to put comments in qw() list
1151
1152 (W) qw() lists contain items separated by whitespace; as with literal
1153 strings, comment characters are not ignored, but are instead treated
1154 as literal data.  (You may have used different delimiters than the
1155 exclamation marks parentheses shown here; braces are also frequently
1156 used.)
1157
1158 You probably wrote something like this:
1159
1160     @list = qw(
1161         a # a comment
1162         b # another comment
1163     );
1164
1165 when you should have written this:
1166
1167     @list = qw(
1168         a
1169         b
1170     );
1171
1172 If you really want comments, build your list the
1173 old-fashioned way, with quotes and commas:
1174
1175     @list = (
1176         'a',    # a comment
1177         'b',    # another comment
1178     );
1179
1180 =item Possible attempt to separate words with commas
1181
1182 (W) qw() lists contain items separated by whitespace; therefore commas
1183 aren't needed to separate the items. (You may have used different
1184 delimiters than the parentheses shown here; braces are also frequently
1185 used.)
1186
1187 You probably wrote something like this:
1188
1189     qw! a, b, c !;
1190
1191 which puts literal commas into some of the list items.  Write it without
1192 commas if you don't want them to appear in your data:
1193
1194     qw! a b c !;
1195
1196 =item Scalar value @%s{%s} better written as $%s{%s}
1197
1198 (W) You've used a hash slice (indicated by @) to select a single element of
1199 a hash.  Generally it's better to ask for a scalar value (indicated by $).
1200 The difference is that C<$foo{&bar}> always behaves like a scalar, both when
1201 assigning to it and when evaluating its argument, while C<@foo{&bar}> behaves
1202 like a list when you assign to it, and provides a list context to its
1203 subscript, which can do weird things if you're expecting only one subscript.
1204
1205 =item Stub found while resolving method `%s' overloading `%s' in package `%s'
1206
1207 (P) Overloading resolution over @ISA tree may be broken by importing stubs.
1208 Stubs should never be implicitely created, but explicit calls to C<can>
1209 may break this.
1210
1211 =item Too late for "B<-T>" option
1212
1213 (X) The #! line (or local equivalent) in a Perl script contains the
1214 B<-T> option, but Perl was not invoked with B<-T> in its argument
1215 list.  This is an error because, by the time Perl discovers a B<-T> in
1216 a script, it's too late to properly taint everything from the
1217 environment.  So Perl gives up.
1218
1219 =item untie attempted while %d inner references still exist
1220
1221 (W) A copy of the object returned from C<tie> (or C<tied>) was still
1222 valid when C<untie> was called.
1223
1224 =item Unrecognized character %s
1225
1226 (F) The Perl parser has no idea what to do with the specified character
1227 in your Perl script (or eval).  Perhaps you tried to run a compressed
1228 script, a binary program, or a directory as a Perl program.
1229
1230 =item Unsupported function fork
1231
1232 (F) Your version of executable does not support forking.
1233
1234 Note that under some systems, like OS/2, there may be different flavors of
1235 Perl executables, some of which may support fork, some not. Try changing
1236 the name you call Perl by to C<perl_>, C<perl__>, and so on.
1237
1238 =item Use of "$$<digit>" to mean "${$}<digit>" is deprecated
1239
1240 (D) Perl versions before 5.004 misinterpreted any type marker followed
1241 by "$" and a digit.  For example, "$$0" was incorrectly taken to mean
1242 "${$}0" instead of "${$0}".  This bug is (mostly) fixed in Perl 5.004.
1243
1244 However, the developers of Perl 5.004 could not fix this bug completely,
1245 because at least two widely-used modules depend on the old meaning of
1246 "$$0" in a string.  So Perl 5.004 still interprets "$$<digit>" in the
1247 old (broken) way inside strings; but it generates this message as a
1248 warning.  And in Perl 5.005, this special treatment will cease.
1249
1250 =item Value of %s can be "0"; test with defined()
1251
1252 (W) In a conditional expression, you used <HANDLE>, <*> (glob), C<each()>,
1253 or C<readdir()> as a boolean value.  Each of these constructs can return a
1254 value of "0"; that would make the conditional expression false, which is
1255 probably not what you intended.  When using these constructs in conditional
1256 expressions, test their values with the C<defined> operator.
1257
1258 =item Variable "%s" may be unavailable
1259
1260 (W) An inner (nested) I<anonymous> subroutine is inside a I<named>
1261 subroutine, and outside that is another subroutine; and the anonymous
1262 (innermost) subroutine is referencing a lexical variable defined in
1263 the outermost subroutine.  For example:
1264
1265    sub outermost { my $a; sub middle { sub { $a } } }
1266
1267 If the anonymous subroutine is called or referenced (directly or
1268 indirectly) from the outermost subroutine, it will share the variable
1269 as you would expect.  But if the anonymous subroutine is called or
1270 referenced when the outermost subroutine is not active, it will see
1271 the value of the shared variable as it was before and during the
1272 *first* call to the outermost subroutine, which is probably not what
1273 you want.
1274
1275 In these circumstances, it is usually best to make the middle
1276 subroutine anonymous, using the C<sub {}> syntax.  Perl has specific
1277 support for shared variables in nested anonymous subroutines; a named
1278 subroutine in between interferes with this feature.
1279
1280 =item Variable "%s" will not stay shared
1281
1282 (W) An inner (nested) I<named> subroutine is referencing a lexical
1283 variable defined in an outer subroutine.
1284
1285 When the inner subroutine is called, it will probably see the value of
1286 the outer subroutine's variable as it was before and during the
1287 *first* call to the outer subroutine; in this case, after the first
1288 call to the outer subroutine is complete, the inner and outer
1289 subroutines will no longer share a common value for the variable.  In
1290 other words, the variable will no longer be shared.
1291
1292 Furthermore, if the outer subroutine is anonymous and references a
1293 lexical variable outside itself, then the outer and inner subroutines
1294 will I<never> share the given variable.
1295
1296 This problem can usually be solved by making the inner subroutine
1297 anonymous, using the C<sub {}> syntax.  When inner anonymous subs that
1298 reference variables in outer subroutines are called or referenced,
1299 they are automatically rebound to the current values of such
1300 variables.
1301
1302 =item Warning: something's wrong
1303
1304 (W) You passed warn() an empty string (the equivalent of C<warn "">) or
1305 you called it with no args and C<$_> was empty.
1306
1307 =item Ill-formed logical name |%s| in prime_env_iter
1308
1309 (W) A warning peculiar to VMS.  A logical name was encountered when preparing
1310 to iterate over %ENV which violates the syntactic rules governing logical
1311 names.  Since it cannot be translated normally, it is skipped, and will not
1312 appear in %ENV.  This may be a benign occurrence, as some software packages
1313 might directly modify logical name tables and introduce nonstandard names,
1314 or it may indicate that a logical name table has been corrupted.
1315
1316 =item Got an error from DosAllocMem
1317
1318 (P) An error peculiar to OS/2.  Most probably you're using an obsolete
1319 version of Perl, and this should not happen anyway.
1320
1321 =item Malformed PERLLIB_PREFIX
1322
1323 (F) An error peculiar to OS/2.  PERLLIB_PREFIX should be of the form
1324
1325     prefix1;prefix2
1326
1327 or
1328
1329     prefix1 prefix2
1330
1331 with nonempty prefix1 and prefix2.  If C<prefix1> is indeed a prefix
1332 of a builtin library search path, prefix2 is substituted.  The error
1333 may appear if components are not found, or are too long.  See
1334 "PERLLIB_PREFIX" in F<README.os2>.
1335
1336 =item PERL_SH_DIR too long
1337
1338 (F) An error peculiar to OS/2. PERL_SH_DIR is the directory to find the
1339 C<sh>-shell in.  See "PERL_SH_DIR" in F<README.os2>.
1340
1341 =item Process terminated by SIG%s
1342
1343 (W) This is a standard message issued by OS/2 applications, while *nix
1344 applications die in silence.  It is considered a feature of the OS/2
1345 port.  One can easily disable this by appropriate sighandlers, see
1346 L<perlipc/"Signals">.  See also "Process terminated by SIGTERM/SIGINT"
1347 in F<README.os2>.
1348
1349 =back
1350
1351 =head1 BUGS
1352
1353 If you find what you think is a bug, you might check the headers of
1354 recently posted articles in the comp.lang.perl.misc newsgroup.
1355 There may also be information at http://www.perl.com/perl/, the Perl
1356 Home Page.
1357
1358 If you believe you have an unreported bug, please run the B<perlbug>
1359 program included with your release.  Make sure you trim your bug down
1360 to a tiny but sufficient test case.  Your bug report, along with the
1361 output of C<perl -V>, will be sent off to <F<perlbug@perl.com>> to be
1362 analysed by the Perl porting team.
1363
1364 =head1 SEE ALSO
1365
1366 The F<Changes> file for exhaustive details on what changed.
1367
1368 The F<INSTALL> file for how to build Perl.  This file has been
1369 significantly updated for 5.004, so even veteran users should
1370 look through it.
1371
1372 The F<README> file for general stuff.
1373
1374 The F<Copying> file for copyright information.
1375
1376 =head1 HISTORY
1377
1378 Constructed by Tom Christiansen, grabbing material with permission
1379 from innumerable contributors, with kibitzing by more than a few Perl
1380 porters.
1381
1382 Last update: Sat Mar  8 19:51:26 EST 1997